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

Is it possible to tag TeamCity builds using service messages (or some other programatic way)?

Is it possible to tag TeamCity builds using service messages or some other programmatic way from a build step maybe...? How can this be done?
carlspring
  • 31,231
  • 29
  • 115
  • 197
0
votes
1 answer

How to List all test names in teamcity using REST API

I am trying to get List of tests as defined here.https://confluence.jetbrains.com/display/TCD8/REST+API#RESTAPI-Tests But I can't get the list of test names from myteamcity/app/rest/testOccurrences?locator=buildType:(id:1140)] Is there another…
0
votes
1 answer

TeamCity error: Executable file to start couldn't be found on path svn

What would be the solution to that problem? Where can I find that svn.exe?
Neno
  • 727
  • 3
  • 17
  • 34
0
votes
1 answer

NUnit Tests not running in TeamCity, can't figure out why

Here's my situation: I'm trying to run NUnit tests on my .NET unit tests through TeamCity. I have a build step created for running the tests, with the following parameters: Runner Type: NUnit Step name: Run Unit Tests Execute Step: If all previous…
STN
  • 585
  • 2
  • 6
  • 15
0
votes
2 answers

variable "name of package" in teamcity

I use template in my project. In template at "Version Control Settings" i have set path to repository svn+ssh://path/to/repository/trunk/Linux/packages/ and add VCS rule: +|-:VCSPath => %env.TEAMCITY_BUILDCONF_NAME%/%env.TEAMCITY_BUILDCONF_NAME%-1.0…
Maxim
  • 85
  • 1
  • 7
0
votes
1 answer

How to programmatically retrieve some build files in TeamCity?

I'm currently doing a plugin for TeamCity 8.1.4 to support our tool. The latter generates some JSON and HTML/CSS/JS files I would like to include in TeamCity UI through respectively a graph and some kind of frame I guess. Our tool is supposed to…
LMeyer
  • 2,570
  • 1
  • 24
  • 35
0
votes
1 answer

How to clone a repo in teamcity using CommandLine Build step

I have a project set up in teamcity that needs to clone a repository prior to building the project. For this, I have added a commandLine build step, and included the hg command to clone the repo in the custom script field inside teamcity, i.e hg…
lacoder
  • 1,253
  • 1
  • 11
  • 22
0
votes
1 answer

Teamcity - Reporting Code Coverage via Service Message

We have a custom test runner for our UI Smoke Tests and I want to report code coverage to TeamCity to enable metrics monitoring and failing of build, etc. I'm trying the use service messages to achieve this as follows: ##teamcity[buildStatisticValue…
Dave
  • 1,068
  • 12
  • 26
0
votes
2 answers

Disable Labels in Team City

My TeamCity(8.0) instance was previously configured to apply labels upon successful builds under version 8.0.x. I've since upgraded to 8.1.2 and removed the build feature for labeling. TeamCity is still labeling my source code upon successful…
Jeremy Smith
  • 1,349
  • 8
  • 15
0
votes
1 answer

Teamcity Deployer plugin broken after server failure

After a server failure, the plugin stopped working. I tried (to no avail) removing the folder from .unpacked directory and the .zip file, stopping TC, starting TC, upload plugin again, restart TC. After that, when I attempt to add any of the plugin…
wwelles
  • 49
  • 3
0
votes
2 answers

Teamcity and xcode: Cannot use Xcode for workspace

I'm getting an error when i'm try to use workspace in Temacity. "Cannot use Xcode 3 for workspace. Please either specify a path to the project or change Xcode version." How do i change Xcode version or specify a path to the project if its already in…
PashaN
  • 444
  • 1
  • 4
  • 16
0
votes
1 answer

Teamcity Configuration Settings

I need to know the teamcity settings which prevents the re-trigger/trigger of outdated builds/jobs if the new builds are successful. I am facing a issue where teamcity jobs can be re triggered even if the next builds are successful.And If the…
Angel1403
  • 145
  • 1
  • 4
  • 13
0
votes
1 answer

Capturing TeamCity MSTEST results,FxCOP results using REST API

I have integrated TeamCity with other tools like FxCOP,MSTEST,Jasmine now I want the Test results from MSTEST to be accessible using TeamCity inbuilt REST Apis. Can anyone please post the REST api which can give me the complete TEST results as XML…
sajesh Nambiar
  • 689
  • 2
  • 10
  • 25
0
votes
2 answers

Visualize Jasmine tests in TeamCity

I'm using Chutzpah console to run all tests in teamcity. Command line options: /junit jasmine_report.html /teamcity /failOnError This produces JUnit report in xml format. How can i visualize this as TeamCity tab (as Specflow, etc.). It will be…
dr11
  • 5,166
  • 11
  • 35
  • 77
0
votes
1 answer

TeamCity manual job dependency on functional test build status

Our TeamCity project has components for triggered build and unit tests on commits, nightly functional tests, and manual deployment. Currently, the deployment job can be run even when the functional tests have failed. To prevent this, I'd like to…
Brad Schoening
  • 1,281
  • 6
  • 22