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

TeamCity build dependencies and choosing the correct branch

I have a single project with three build configurations: Integration Deploy Dev Deploy Release Build configs 2 and 3 are dependent on 1 via a snapshot. There are 3 VCS roots: Git - All (used with build config 1) Git - Develop (used with build…
Tim Peel
  • 2,274
  • 5
  • 27
  • 43
6
votes
2 answers

Why is UnitTestOutcome set to Unknown when running tests on TeamCity?

I am checking TestContext.CurrentTestOutcome in my TestCleanup method in order to perform an action if the test did not pass (in this case, the tests are using Selenium to exercise a website and I am saving a screenshot if the test does not…
Richard Ev
  • 52,939
  • 59
  • 191
  • 278
5
votes
1 answer

Teamcity build fails because of EF code migrations

My TeamCity build fails because I have a project that has 2 EF Code Migration configurations in it. From the build log: [12:39:58]Checking for changes [12:39:58]Collecting changes in 1 VCS root (1s) [12:40:00]Clearing temporary directory:…
5
votes
1 answer

TypeError: null is not an object (evaluating 'document.body.querySelector('.alert > .bar.passed').innerText')

For some reason I'm getting intermittent failure to run (or at least report the running of) my jasmine tests. the error lies in run-jasmine.js and the error manifests itself as `TypeError: null is not an object (evaluating…
no1spirite
  • 608
  • 12
  • 23
5
votes
2 answers

TeamCity VCS Trigger when multiple VCS Roots attached to Build Configuration

I have a Build Configuration within TeamCity (TeamCity Professional 8.1.5 (build 30240)) with two VCS Roots attached. The VCS roots point to seperate repositories. This Build Configuration has a VCS Trigger configured to trigger the project on each…
Rich Clark
  • 166
  • 1
  • 6
5
votes
1 answer

TeamCity Octopus Deploy Create Release cannot read API key

I am using TeamCity for automated testing and now I want to automate my deployments with the Octopus plugin. As of now I can create releases from the octopus server using my TeamCity packages manually but I want to automate it with my builds and…
5
votes
4 answers

Connect TeamCity to Visual Studio Online

I'm trying to migrate from on-premises TFS to Visual Studio Online. We have quite elaborate TeamCity build process that we don't want to migrate away from, so having TeamCity working with VSO would be ideal. I've created alternative user…
trailmax
  • 34,305
  • 22
  • 140
  • 234
5
votes
1 answer

How to use parameters in a TeamCity meta-runner generated from a subproject?

I've set up top-level project A in TeamCity. Project A has one build configuration called A1. Project B is a subproject of A. Project B has one build configuration called B1. In this build configuration, I defined two parameters: env.param1 =…
boots
  • 51
  • 4
5
votes
3 answers

Teamcity SSH private key login failed: invalid privatekey

I set SSH login which connect from Windows Agent to Linux but TeamCity gives following error. [New build problem] com.jcraft.jsch.JSchException: invalid privatekey: [B@5543cd The keypair which generated by SSH Secure Shell has no problem to…
Youngjae
  • 24,352
  • 18
  • 113
  • 198
5
votes
2 answers

Teamcity: Failed to perform checkout on agent: Unable to run git at path C:\Program Files (x86)\Git\bin\sh.exe

When I run my build it fails with the error: Failed to perform checkout on agent: Unable to run git at path C:\Program Files (x86)\Git\bin\sh.exe The path is correct, I can run the file and Teamcity is using my login account. Is there somewhere I…
BanksySan
  • 27,362
  • 33
  • 117
  • 216
4
votes
1 answer

Script to disable build steps in TeamCity or start run at a specific step

I want to disable several build steps in a TeamCity configuration. For example: I have a deploy configuration called DeploySoftware. It has 10 build steps (Run >DB scripts, Run environment scripts, Deploy Web Service, Deploy Windows Service,…
4
votes
1 answer

Can you use the team city rest api to fetch plan branch names?

I'm trying to build a command line app to fetch artifacts from teamcity. This is fine if I know the branch I want to get but I want to show a list of all the available branches first. This is what I have to fetch the latest build when I know the…
KeepCalmAndCarryOn
  • 8,817
  • 2
  • 32
  • 47
4
votes
2 answers

TeamCity: search over configuration parameters

Is it possible to perform a search over all the configuration parameters in a server? The reason I'm asking is because I have a path that points to a specific C# solution, and I need to update it, but I don't want to have to look in every build…
Maria Ines Parnisari
  • 16,584
  • 9
  • 85
  • 130
4
votes
1 answer

How can I download artifacts from teamcity 8.1.2 using C# code

Using C# code I would like to download artifacts (zip file) from teamcity. Based on the TC documentation (https://confluence.jetbrains.com/display/TCD8/Accessing+Server+by+HTTP and ) I wrote this code string artifactSource =…
kendzi
  • 311
  • 2
  • 6
  • 22
4
votes
1 answer

TeamCity: email notifications to non registered users

Is it possible setup TeamCity e-mail notifications to VCS users which doesn't registered in TeamCity? VCS user name is a first part of e-mail: vasily.pupkin -> vasily.pupkin@company.com Jenkins has settings for this case: 'Default user e-mail…
Sergey Azarkevich
  • 2,641
  • 2
  • 22
  • 38
1 2
3
15 16