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
3
votes
2 answers

Testing and Continuous Integration architecture approach using nUnit and FitNesse

I'm looking for opinions and thoughts surrounding testing and Continuous Integration using nUnit and/or FitNesse. We develop applications, both windows and web with .net and are using TeamCity for continuous integration I'm wondering what is the…
Gilbert Liddell
  • 1,203
  • 4
  • 14
  • 21
3
votes
1 answer

How to trigger TeamCity build from Command Line using REST API?

I am trying to trigger TeamCity build from command line. Firstly, I tried: curl http://:@/httpAuth/action.html?add2Queue= But in latest versions of TeamCity this approach is removed…
3
votes
1 answer

Why does Teamcity send a keyboard interrupt to kill my build?

I have a build running in TeamCity, with only one build step: launching a BAT file. TeamCity sometimes kills my build with a (double) keyboard interrupt, and I have no idea why. The output at the end of the build is like this: Running build…
3
votes
2 answers

python nose test reporting in teamcity

I have a script call run_test.py, here's the content:- if __name__ == '__main__': nose.main(argv=sys.argv) Running all my tests is as simple as doing this: run_test.py unittests/test_*.py I'm trying to now incorperate the output reporting for…
lionel319
  • 1,180
  • 2
  • 17
  • 31
3
votes
2 answers

How to configure Teamcitys SonarQube Runner to analyze C# files

I am trying to setup SonarQube for a C# project, using Teamcity. The problem is that no C# files gets analyzed. Can you please double check my configuration and let me know if I might have missed anything ? I am all out of ideas on why it does not…
Marcel De Villiers
  • 1,682
  • 4
  • 15
  • 17
3
votes
1 answer

Teamcity - How to set credentials for package source

I am using TeamCity to build my .net application. One of the build step connects to a Nuget package repository and try to restore nuget packages. During this step, I am seeing returned an unexpected status code '401 Unauthorized error while system…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
3
votes
1 answer

How can I automatically upgrade databases with RedGate, TeamCity and SVN

We are looking to move from manual scripts to the RedGate database source control to manage our databases. We want to make changes to stored procs/lookups etc and then just check them into to the SVN trunk which will fire a new TeamCity build. I've…
Michael Blake
  • 2,068
  • 2
  • 18
  • 31
3
votes
1 answer

TeamCity commit status publisher with BitBucket two factor auth

How do I send the status of a TeamCity build to a BitBucket Cloud pull request when two factor auth is enabled? I've created a BitBucket app password and added the credentials to a "Commit status publisher" build feature: This results…
infojolt
  • 5,244
  • 3
  • 40
  • 82
3
votes
2 answers

Teamcity artifacts to SVN

We pinned builds that get deployd to production. Is there an easy, automated way to upload the artifacts of pinned builds to a svn repository?
Mathias F
  • 15,906
  • 22
  • 89
  • 159
3
votes
1 answer

error MSB4216: Could not run the "GenerateResource" task because MSBuild could not create or connect to a task

Please note that I am able to build this project in Visual Studio Professional 2017: https://github.com/briannoyes/WPFMVVM-StarterCode But when I try to run the build in Team City 2019.1 it gave me this error: C:\Program…
user8128167
  • 6,929
  • 6
  • 66
  • 79
3
votes
2 answers

How can I integrate git and svn for TeamCity?

Currently: TeamCity is setup to build from SVN. TeamCity is setup to build from GIT. Git bare repo on the TC server (not on agent) I'm manually (from my repo, which has the svn ref) rebasing (git spull - standard alias) and checking in to the…
kkwak
  • 41
  • 5
3
votes
0 answers

Error running maven surefire test plugin Java 11

I am running some tests for Spring Boot app in Team City using the maven surefire plugin version 2.22.1. Spring Boot version is 2.1.2. I have specified in the configuration to use a forked Java 11 jvm as follows:
sachman
  • 393
  • 1
  • 10
  • 21
3
votes
1 answer

Visual Studio Enterprise Code Coverage report in TeamCity

Does anyone have any experience importing Visual Studio Enterprise 2017 code coverage results (either *.coverage or *.coveragexml) into TeamCity? We're testing a C++ project, so we cannot use TeamCitys built in coverage report tools. The help page…
Adam Bennett
  • 92
  • 1
  • 5
3
votes
1 answer

Jest Test On TeamCity

I have a react application that uses Jest and jest-teamcity-reporter as a testResultsProcessor my npm test scripts is as follow : the problem is when i run my build in team city which contains test coverage, the test is running but i cannot see…
Amazoom
  • 631
  • 1
  • 6
  • 9
3
votes
0 answers

Run test with Testcafe + Teamcity + Browserstack

Does anyone be able to successfully set up the testing by using all these 3 tools? I can run testcafe test alone at the server and it takes 20 sec to run. When I run that test with TeamCity, it takes 12Min. When I add browserstack, somehow…