Questions tagged [teamcity-8.0]

TeamCity v8.0 is a Java based build management and continuous integration system from JetBrains.

TeamCity is a Java-based build management and continuous integration server from JetBrains.

New Features in version 8.0:

  • A much faster (up to 5 times) build history cleanup, allowing to drastically reduce server maintenance time;
  • Meta-Runner allowing to reuse build steps by representing them as a native TeamCity runner;
  • Improved build problems reporting: detection of new problems, ability to assign an investigation or mute a build problem;
  • The native IntelliJ IDEA compiler is now bundled with TeamCity 8, which means that for IntelliJ IDEA projects you get much faster incremental compilation and support for Scala, Groovy, Clojure, Kotlin, Android, GWT and many other technologies supported by IntelliJ IDEA;
  • Branches building based on Mercurial bookmarks and Git tags;
  • Detect and show changes made in Mercurial sub-repositories;

The product home page: http://www.jetbrains.com/teamcity/

236 questions
3
votes
1 answer

TeamCity build failure because of child process exits with nonzero exit code

I have a TeamCity (8.1) build project which runs fine most of the time. A part of my MSBuild script is, that the built executable should be code-signed, and there the build fails sometimes.
DanielB
  • 19,910
  • 2
  • 44
  • 50
3
votes
1 answer

GIT VCS not updating sources after Teamcity upgrade

I have recently upgraded to Teamcity 9 from 8. Ever since the upgrade, all of my GIT VCS are not updating sources. Build log show below but the checkout directory is empty. [04:33:49]Using vcs information from agent file:…
3
votes
1 answer

What does a grayed-out build in TeamCity mean?

Some of our builds in TeamCity are grayed out, like they were disabled. It often not obvious why. When I examine the details about the build, I find nothing noteworthy. What exactly does this color signify? Also: if, like in the picture above,…
Klas Mellbourn
  • 42,571
  • 24
  • 140
  • 158
3
votes
0 answers

Moq Unit test working on windows but not on Mono build server

I have unit test for a ServiceStack based service that passes on my windows workstation, however the TeamCity server which is on ubuntu/mono doesn't pass - other tests do run however, just one in particular. This fails [Test] public void…
MikeW
  • 4,749
  • 9
  • 42
  • 83
3
votes
1 answer

MSBuildTools12.0_x86_Path unmet requirement in TeamCity on Linux/Mono agent

I have a c# web service built in VS2013 which I have deployed on mono and working fine. I have just setup an indentical linux box as an agent of my TeamCity installation - the problem is that I have an unmet requirement "MSBuildTools12.0_x86_Path".…
MikeW
  • 4,749
  • 9
  • 42
  • 83
3
votes
0 answers

teamcity - deploy artifacts to nexus without mvn deploy

I can't find anywhere if TeamCity is able to deploy build artifacts to nexus, when job has finished (like Jenkins does), and not by running "mvn deploy". Is there a way to achieve this? Maybe as a build feature.
spauny
  • 4,976
  • 9
  • 44
  • 61
3
votes
2 answers

How to implement a delete folders step in TeamCity

In TeamCity 8.1 I've just pulled down my source code and the first thing I want to do is delete a bunch of subfolders from what I've just retrieved. I can't use exclusions in the 'Checkout Rules' so I guess I need a separate step to run immediately…
Lee Englestone
  • 4,545
  • 13
  • 51
  • 85
3
votes
2 answers

TeamCity fails to run iOS appium tests when auto-launched

Description We are using appium in our cucumber suite within TeamCity 8 on an Apple MacMini running Mavericks. The problem is that appium seems to fail to interact with the iOS Simulator when it is ran from TeamCity at login (via Automator). The…
Levi
  • 839
  • 2
  • 7
  • 21
3
votes
2 answers

TeamCity REST API to get list currently broken projects

Using TeamCity 8.0.4 (build 27616) I use a call to my TeamCity server to get a list of broken builds: http://teamcity.exactbid.net/guestAuth/app/rest/builds/?locator=status:failure,sinceBuild:(status:success) If I a project is in the failure state,…
slolife
  • 19,520
  • 20
  • 78
  • 121
3
votes
2 answers

Include git branch name and latest commit SHA in TeamCity successfull email template

I have to include branch name and latest git commit SHA in TeamCity successful email template. I've added these lines to the standard build_successful.ftl email template file: <#global body> ... Commit: ${build.buildNumber} Branch:…
pocheptsov
  • 1,936
  • 20
  • 24
3
votes
1 answer

Cannot produce coverage in TeamCity using NUnit and PartCover

I'm using TeamCity version 8.0.4. I've got a build step that uses the NUnit runner and PartCover as the coverage tool. I've followed the steps outlined here (http://www.jeremyskinner.co.uk/2010/07/23/using-teamcity-with-partcover-4/). That is, I've…
TheMagnificent11
  • 1,424
  • 4
  • 19
  • 40
3
votes
3 answers

TeamCity: E-mail Notification to user which committed changes, that causes a build in the build chain to fail

I have a TeamCity project which includes 2 configurations: -BuildConfig1: Triggered by SVN changes -BuildConfig2: Triggeres by successful build of BuildConfig1 I need to send out notifications if BuildConfig2 fails. But only to users which has…
3
votes
3 answers

TeamCity 8 support for SVN 1.8?

I'm using TeamCity 8.0.3 (build 27540), the latest as of this post. It only supports up to SVN 1.7 but my SVN server is at 1.8. Is there anything I can do to make TeamCity support SVN 1.8? I'd prefer not to have to downgrade my SVN server.
Keith
  • 20,636
  • 11
  • 84
  • 125
3
votes
2 answers

TeamCity - MSBuild runner exits with not zero code

I've had TeamCity running for a long time, with no problems. I then upgraded to TeamCity 8, and now all my .Net projects fail when launching the Test build step. The only error message I see is this: MSBuild runner exits with not zero code The test…
MartinHN
  • 19,542
  • 19
  • 89
  • 131
3
votes
2 answers

How can I get the email address of the user who triggered a build in TeamCity?

TeamCity has a list of Build Parameters, and it also knows the user that triggered a build; but I can't find that user name in the list of Build Parameters. I would like to be able to send an email to the user that started a specific build without…
Russ
  • 12,312
  • 20
  • 59
  • 78