Questions tagged [teamcity]

TeamCity from JetBrains is a continuous integration tool and a distributed Java-based build management system that can be highly beneficial to teams using an agile development approach.

TeamCity is a Java-based build management and continuous integration server from JetBrains. Comparable products are Bamboo, Jenkins (which is historically related to Hudson) and CruiseControl.

It was first released on October 2, 2006. TeamCity is commercial software and licensed under a proprietary license. A Freemium license for up to 20 build configurations and 3 free Build Agent licenses is available.


**Tagging recommendation:**
It is recommended to use the tag together with the version specific tag, f.e. , .
**Resources:**
6095 questions
4
votes
0 answers

How to build docker images on AWS EC2 Windows Server instance?

We use Team City to build C# applications on a Windows server in AWS EC2. Now there is a requirement to build Docker containers using the same system. The build steps have been tested locally and are able to produce a docker image. Docker is not…
4
votes
2 answers

Release Branch and Continuous Delivery

Requirements We have got 2 environments. -- Test and Prod We want to do Continuous Deployment. We are using Git Flow. With git-flow we are supposed to deploy the release (or master) branch in production. ( two different pipelines,one for…
4
votes
3 answers

TeamCity: dont see Branch Tab in some projects

What the difference in configs ? Project with Branches Tab: Project without Branches Tab:
Anton Arsentyev
  • 371
  • 1
  • 7
  • 14
4
votes
1 answer

Set aspnetcore_environment within build configuration

I have simple asp.net core project. I want to deploy it via TeamCity to IIS. The problem is that I can't setup ASPNETCORE_ENVIRONMENT when publishing the project. My goal is to use default behaviour to load appsettings…
user1820686
  • 2,008
  • 5
  • 25
  • 44
4
votes
1 answer

CS0411: The type arguments for method X cannot be inferred from the usage when building with TeamCity

This is a long shoot but I have run out of own ideas. Recently my TeamCity builds have started to throw this error upon me: File.cs(Row, Col): error CS0411: The type arguments for method …
Ola Herrdahl
  • 4,216
  • 3
  • 29
  • 23
4
votes
1 answer

Is incremental building possible in combination with Continuous Integration?

We use TeamCity with subversion and MSBuild and we have a problem with the continuous build that is triggered by Subversion commits. The continuous build is set-up to do incremental builds (the nightly build is full and clean). The problem occurs if…
Halt
  • 2,924
  • 4
  • 22
  • 26
4
votes
3 answers

"Incorrect Format" reference error while building Web Deployment project in TeamCity

I began setting up a TeamCity server a couple days ago for use in automated testing and CI. We mainly do VB.net web apps and up until now, it had been checking out things and building just fine. A problem came up when I tried to add actual…
RedBrogdon
  • 5,113
  • 2
  • 24
  • 31
4
votes
3 answers

Teamcity VCS error while fetching from git repo

I am getting this error when doing a test connection against my git repository from TeamCity Enterprise 9.1.3 . Can anybody explain this error more closely? Test connection failed in List remote refs failed: …
Share_Improve
  • 417
  • 5
  • 15
4
votes
1 answer

How to display version number and auto increment it in ASP.Net MVC - 5 Application

I am working on ASP.Net MVC web application. So, I make changes in localhost and then run it and test it. Post which I check in my code. From the main server TEAMCITY builds the project and changes goes live. I am a beginner so I don't know how all…
Unbreakable
  • 7,776
  • 24
  • 90
  • 171
4
votes
3 answers

MicrosoftWebDriver fails when constructing while running under TeamCity agent's windows service

Using: * Windows 10 Pro * MicrosoftWebDriver Release 14393 I'm having troubles with running my UI tests suite with Edge (while Chrome, Firefox and IE11 - all work). The problem does not occur while running in standard, windows - development…
Łukasz Podolak
  • 958
  • 3
  • 12
  • 24
4
votes
3 answers

SQL Exception when starting TeamCity

I am having the followng error while starting TeamCity: INFO - jetbrains.buildServer.STARTUP - Using database connection URL from the database properties file. The URL is: jdbc:hsqldb:file:$TEAMCITY_SYSTEM_PATH/buildserver INFO - …
Jonatan Dragon
  • 4,675
  • 3
  • 30
  • 38
4
votes
1 answer

How to report nose tests as skipped in teamcity?

We have nose tests that run on a teamcity build agent. Some tests are slow and are therefore not run on each pull request. The problem is that they are not being reported as skipped. They simply don't show up in the teamcity report. Slow tests are…
morotspaj
  • 1,400
  • 11
  • 26
4
votes
1 answer

TeamCity - Create new text file only gets content of parameter name

Using TeamCity Enterprise 10.0.2 (build 42234) I create a build step that looks like this: Runner type: Create Text File Step name: Adding password configuration Execute step: If all previous steps finished successfully File content:…
Ogglas
  • 62,132
  • 37
  • 328
  • 418
4
votes
4 answers

TeamCity agent error “failed to perform checkout on agent. exit code: 128”

This link do not help me. VCS parameters: Fetch URL: http://***.com:7990/scm/clear/pro.git Default branch: refs/heads/master Branch specification:+:refs/heads/* Authentication method: Password Connection test complete successfully I see…
sae
  • 51
  • 1
  • 4
4
votes
1 answer

TeamCity NuGet package build for different .NET Frameworks

I've been doing updates to .NET Framework targeted versions of projects updating to latest .NET (4.6.2). Some of these projects are NuGet packages, built in TeamCity 9.0.2. I've use the steps in this guide to create multiple build configurations for…