Questions tagged [teamcity-7.1]

Version 7.1 of Teamcity, a Java-based build management and continuous integration server from JetBrains.

Version 7.1 of Teamcity, a Java-based build management and continuous integration server from JetBrains.

Release date: 7 August 2012

More info about the product: https://www.jetbrains.com/teamcity/

74 questions
4
votes
1 answer

How can I disable the Qualifier 'this.' is redundant rule in TeamCity Code Inspections?

I use Resharper's StyleCop integration when I am writing code to give me consistently styled code. I am using the full standard rule set. This leads to Resharper regularly reminding me about SA1101: Prefix local call with "this.": The call to XXX…
AlSki
  • 6,868
  • 1
  • 26
  • 39
4
votes
1 answer

How to make a TeamCity build wait until all of its artifact dependencies are rebuilt?

I have a TeamCity project with a few types of build configurations: Application packages, containing various application components and built from various subtrees in version control Role packages, combining the application packages together in…
Tara McGrew
  • 1,987
  • 19
  • 28
4
votes
0 answers

TeamCity not getting some new files pushed into Git

Recently I've added a few JS files to my web project: WebProject.csproj I have a CI definition in TeamCity set to use MSBuild to build the solution with the following command-line…
David Sulpy
  • 2,277
  • 2
  • 19
  • 22
4
votes
2 answers

Queue rather than run a TeamCity build while another build is running

Our busy enterprise server has 550 active build configurations running on 30 agents. We need a way to prevent some builds from running while other builds are running. I already understand artefact dependencies and this does not solve our problem as…
grenade
  • 31,451
  • 23
  • 97
  • 126
3
votes
2 answers

Unable to download TeamCity windows tray notifier when TeamCity running over HTTPS with IE8

My TeamCity Server uses SSL (the address is https://server.sufix). When trying to download the TeamCity windows tray notifier using IE8, I receive an error: Unable to download TrayNotifierInstaller.msi from... Unable to open this Internet site.…
Dennis Nerush
  • 5,473
  • 5
  • 25
  • 33
3
votes
2 answers

TeamCity Rest API

How to get the changes of a teamcity build? I got the following URL wich list all the build changes and provides a URL using which we can view the changes http://teamcityserver/httpAuth/app/rest/changes?buildType=id:bt2 However the given URL…
pinaki
  • 251
  • 1
  • 3
  • 5
3
votes
2 answers

Unit Test Adapter threw exception with no stack trace in TeamCity 7.1.5

We have an ASP.NET MVC 4.5 project. For months it has been compiling and all unit tests passing locally on our development machines and on the TeamCity 7.1.5 machine. Monday we updated to newer versions of some of our dependencies (specifically, to…
Nick Williams
  • 2,864
  • 5
  • 29
  • 43
3
votes
1 answer

TeamCity -- is it possible to associate a timeout value with a specific build step?

I have a build configuration consisting of several steps, and I would like to see one specific step fail if it runs longer than a certain time threshold (say, 10 seconds). I don't want to introduce timeout to the entire build (i.e. all steps) which…
dpodbori
  • 289
  • 2
  • 7
3
votes
0 answers

TeamCity property to get clone directory?

We use TeamCity with mercurial and leave the "Clone Repository To" field empty so the path is auto-generated. I have a configuration template where I would like to add a build step that needs to access the .hg directory. I know that TeamCity clones…
NKnusperer
  • 974
  • 1
  • 11
  • 31
3
votes
1 answer

Is it possible to configure TeamCity to run personal builds on certain agents?

We have a particular build configuration which is required to run a lot of personal builds without long delays. Is it possible to dedicate particular agents to just running personal builds? For example, if we have 5 agents is it possible to have all…
infojolt
  • 5,244
  • 3
  • 40
  • 82
2
votes
1 answer

Teamcity Max OS X Agent - Incompatible runner: Command Line

I am running TeamCity 7.1.3 (yeah, I know it's an oldie). I have a Mac OS X Yosemite build agent. I started the agent in the recommended way, sh bin/agent.sh start. My build configuration contains one command line build step, but it can't run,…
Doron Yaacoby
  • 9,412
  • 8
  • 48
  • 59
2
votes
2 answers

How to build .vdproj msi using TeamCity?

I am trying to get continuous integration setup using TeamCity to automatically build and release our application and Windows services. The solution currently consists of a web application and 2 services (amongst a host of other projects, but all…
2
votes
1 answer

Need logging of TeamCity Build Triggers

We use TeamCity 7.1 for continuous integration, and we produce build logs and artifacts for each build. We created a special build trigger of our own. It runs several times a day on several different configurations. But every now and then it…
the_cat_lady
  • 852
  • 1
  • 9
  • 16
2
votes
2 answers

Is it possible to prevent a build chain from being interrupted in TeamCity?

I have the following set-up in TeamCity 7.1.3: Project A Build & Deploy A Test A (Quick) Test A (Slow) Test A (Very Slow) Project B Build & Deploy B Test B (Quick) Test B (Slow) All of the tests for A depend on 'Build & Deploy A' and all of the…
infojolt
  • 5,244
  • 3
  • 40
  • 82
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…