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

TeamCity backup via REST API authentication failing

I have a PowerShell script which calls TeamCity's REST API to make a backup. This script worked was working on v7.1 but when I upgraded to 8.0.5 the script stopped working. Script: $ErrorActionPreference = 'Stop' function Execute-HTTPPostCommand() …
Aaron0
  • 389
  • 4
  • 14
2
votes
1 answer

Teamcity, passing the user who triggered the build to powershell script

I would like to pass my powershell build step script the user who is currently logged in teamcity and triggered the build to run. I have tried to approach it in a different way where a user checks in a file which would contain the users user name…
Abuelo
  • 39
  • 8
2
votes
1 answer

How to get PassedTestCount and FailedTestCount in TeamCity?

I'm making a request to guestAuth/app/rest/builds/id:2777/statistics as defined here, http://confluence.jetbrains.com/display/TW/REST+API+Plugin#RESTAPIPlugin-OtherBuildRequests. If I understand the documentation correctly it is supposed to list the…
Tomas Jansson
  • 22,767
  • 13
  • 83
  • 137
2
votes
2 answers

Pre-Authenticate Powershell WebClient requests to Team City 8.0 REST API

I'm trying to run Powershell scripts in my Team City build steps. The scripts use WebClient to connect to Team City's REST API; currently, I have to login to Team City and hardcode a username and password as arguments in my Powershell build…
ShaneC
  • 2,237
  • 2
  • 32
  • 53
1
vote
0 answers

TeamCity - Configure SSH exit code failure conditions

I have a build step in a TeamCity build, which is exit by "SSH exit-code 2". But I don't need to fail my build step. Even if I get this error, the build step wouldn't stop: I found an option to avoid this kind of error but that is applicable only…
1
vote
1 answer

TeamCity Build Erroring Out while doing Git Push

I have teamcity build steps which is based on command line. My objective is, I want to upload code into gitlab using the git commands from team city build steps Below are my commands : git config --global user.name "username" git config --global…
TikuArya
  • 11
  • 1
1
vote
0 answers

Teamcity separate test result viewer

Is there a way to show different reports inside TeamCity build page for different types of tests? We have the only one Gradle build for all checks (and we don't want to have separate builds for every check type). But we want to show separate test…
1
vote
1 answer

Teamcity git push error - could not read username while using maven release perform

I'm new to Teamcity, I've configured the release build for one of the maven projects on teamcity (8.1.5) with vcs root set to GIT. for VCS root I've configured git repo url and using password authentication during checkout. It checks out Git repo…
Govind Kalyankar
  • 574
  • 1
  • 4
  • 17
1
vote
1 answer

How do I get TeamCity to create the .git directory when building solution?

The problem is, when I try to run the build, it errors saying " could not find .git directory". So I checked TeamCity's work directory on my agent for my project, and there is no .git directory! Why doesn't TeamCity create the .git directory? Is…
KMittal
  • 602
  • 1
  • 7
  • 21
1
vote
1 answer

Unable to use bonobo with teamcity

I set up a bonobo server for storing our central git repos. This server is only available via http, not ssh. In teamcity I added my VCS Root : Type: Git Fetch URL : https://myserver/myrepo.git Default branch : master Auth method : password Username…
remi bourgarel
  • 9,231
  • 4
  • 40
  • 73
1
vote
2 answers

TeamCity API setting configuration parameters

I have configuration parametr current_build_date (User Defined Parameter) I want just to set this parameter to current date by API TeamCity. On docs I have seen…
Sergey Luchko
  • 2,996
  • 3
  • 31
  • 51
1
vote
1 answer

No Code Inspection tab in TeamCity builds (FindBugs)

Recently we tried to include code analyzing tool in our Java builds - FindBugs. But for some reason, after teamcity build finished and FB xml files parsed there is no Code Inspection tab on build page. There is no errors in logs and i can't find…
1
vote
1 answer

TeamCity doesn't seem to pick up build service messages

I am trying to import code coverage statistics from Clover into TeamCity so that I can set build failures if the level falls too low. I am trying to get TeamCity to read in statistics from the .bat build script, but I'm not having any luck. I've…
Kash.
  • 242
  • 1
  • 3
  • 15
1
vote
1 answer

Team City error mscorlib.dll duplicate reference building Xamarin Android application

I am getting below error when building in Team City an Android empty new application using Xamarin: [Csc] c:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\MonoAndroid\v1.0\mscorlib.dll error CS1703: An assembly with the same…
1
vote
1 answer

Adding Checkbox to Teamcity configuration parameter specification

We know how to add select dropdown to TeamCity parameter configuration, for example: Is it possible to add Checkbox for TC parameter configuration? If it possible, what is the correct way to do this?
Johnny
  • 14,397
  • 15
  • 77
  • 118