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
1 answer

Find a test in TeamCity

I have a huge project with a lot of different tests in different suites. And I would like to find a test by name (ClassNameTest.testMethod) to see its history. I don't know the suite where this test is. How do I search by test name? Just searching…
alamar
  • 18,729
  • 4
  • 64
  • 97
3
votes
0 answers

In teamcity MSbuild.exe incremental clean causing issues

So I have 2 projects that are copies of each other in Teamcity. One is QA and the other is stage. The only difference between the 2 is that they pull from 2 different branches in the repo and they use 2 different pubxml's. The pubxml's are…
3
votes
1 answer

Decrement GitVersion SemVer

My current GitVersion in 3.2.1, but it was done by mistake a while ago. How can I decrement version to 2.2.1? I'm using TeamCity if it's important.
kagarlickij
  • 7,327
  • 10
  • 36
  • 71
3
votes
1 answer

Why does enabling JetBrains dotCover cause NUnit test to fail?

I wrote some code that looks like the following, to unit-test the implementation of a C# finalizer method. In TeamCity version 2017.1.3, I use a build step with the NUnit runner type to run this test using NUnit.ConsoleRunner.3.7.0. The test fails…
hwaien
  • 493
  • 1
  • 3
  • 14
3
votes
2 answers

Can Visual Studio access TeamCity symbol server if basic auth is rquired?

I have TeamCity symbol server plugin working and can pull symbols & source from VS2017 as expected as long as I allow guest login in TeamCity and guest has appropriate rights. However, the required rights are quite permissive (allows downloading…
3
votes
1 answer

TeamCity + CAKE: Displaying VSTest output in project summary

I am aware that there is already a similar question here, but I think my problem is sufficiently different to warrant creating a new post. I use CAKE 0.21.1.0. As a build step on TeamCity, I am executing build.ps1, which in turn invokes build.cake.…
M.Y. Babt
  • 2,733
  • 7
  • 27
  • 49
3
votes
1 answer

Dynamically set Maven Surefire JVM classpath

I'm trying to add the JVM classpath argument when running our Maven unit tests by adding the following maven arguments, with "dir" replaced by my desired clasaspath. MAVEN_OPTS = -cp "dir" This correctly then get's added to the Java arguments Yet…
Johng
  • 101
  • 1
  • 1
  • 5
3
votes
0 answers

Teamcity Rest API: Get only builds with artifacts available

I'm building an inhouse tool to download builds from TeamCity, however the JSON I retrieve from TeamCity is returning builds that dont have artifacts. Is there a parameter or filter I can add to the WebRequest string to filter out the builds without…
Pretzel
  • 33
  • 5
3
votes
0 answers

Teamcity Nuget Feed is not showing latest package version

I tried to find the solution of my problem on google, many blogs and tried many suggestion but nothing is working. My problem is like this: TeamCity Solution Build is creating artifact and publishing it but the package version is not showing in…
Imran
  • 359
  • 3
  • 19
3
votes
0 answers

Teamcity plugin incompatible runner

I have a problem with my teamcity plugin, I created a new build runner and I tried to execute this buildstep, but I got an error: No enabled compatible agents for this build configuration. Please register a build agent or tweak build configuration…
3
votes
0 answers

Teamcity Signtool via Msbuild Runner throws error on timestamp

Signtool is able to sign all passed assemblies just fine, but when it tries to timestamp them it fails with error code 255. This also results in an error in the event viewer: Faulting application name: signtool.exe, version: 10.0.10586.212, time…
tphuoc
  • 113
  • 1
  • 10
3
votes
1 answer

TeamCity BuildRunner Plugin

I am trying to create a new buildstep into TeamCity and since you need the create a buildrunner to do so I am currently trying to create one myself. I have created a new Mavenproject…
3
votes
0 answers

Howto: gitlab pipeline external buildserver stage order

I'm trying to change the pipeline stage order in gitlab for external buildserver Is there any option to configure a external buildserver, in my case Teamcity, configured as "Commit status publisher" build feature, to run before the default gitlab ci…
Martin S.
  • 31
  • 2
3
votes
0 answers

What are the exact steps to integrate sonarqube with bitbucket?

What I've done so far: 1) I am using TeamCity as the CI. 2) Already have a SonarQube server up and running. 3) Already have a Bitbucket account. 4) I put the sonar-bitbucket-plugin-1.2.0.jar file in the /extensions/plugins folder. Restarted the…
Narcis Neacsu
  • 1,013
  • 2
  • 12
  • 19
3
votes
2 answers

Cake - Is it possible to output my steps separately to TeamCity's statistics?

I am using Cake to build a solution on a TeamCity build server. Currently, my build statistics are not at the point where I'd like them to be - for example, I can obtain total runtime for my tests in the Tests tab in TeamCity, and I can see the…
José Maia
  • 310
  • 5
  • 21