Questions tagged [teamcity-9.0]

TeamCity from JetBrains is a continuous integration tool and a distributed Java-based build management system that can be highly beneficial to teams using an agile development approach.

TeamCity is a Java-based build management and continuous integration server from JetBrains. Comparable products are Bamboo, Jenkins (which is historicall related to Hudson) and Cruise Control.

Useful Links

320 questions
1
vote
1 answer

TeamCity Build agent not connecting to TeamCity Server

I have a TeamCity Server(9.0.3 (build 32334)) on Amazon EC2 Windows Instance. And i have another EC2 instance(Windows) for my Build Agents. I Installed a Build Agent on this new Instance on Port 9090 and it shows perfectly on the teamCity UI,…
Rolwin Crasta
  • 4,219
  • 3
  • 35
  • 45
1
vote
1 answer

How to build .exe from TeamCity Server

I've been trying to build an .exe file directly from my Mercurial Repositories using Team City CI. I want to have a downloadable .exe generated by TeamCity on each build. Is this possible, and what tool would you recommend for this purpose? I'm…
K_2
  • 21
  • 1
  • 6
1
vote
1 answer

Append to existing TeamCity parameter

Is it possible to append some value to existing TeamCity configuration parameter from custom build script using service message? I tried these options: Step 1 (Command Line - Custom script - external): echo "##teamcity[setParameter name='par'…
Martin
  • 708
  • 2
  • 10
  • 20
1
vote
1 answer

Edit assigned compatible configurations for agents in teamcity rest api

Is it possible to edit assigned compatible configurations for agents in teamcity rest api? (I am using 9.0.2).
MTZ4
  • 2,274
  • 2
  • 25
  • 41
1
vote
1 answer

TeamCity LDAP Synchronization does not create new users

I've configured LDAP for TeamCity. First sync trail fail. According to the teamcity-ldap.log all users were found but no created: [2015-01-30 08:04:53,077] INFO - jetbrains.buildServer.LDAP - User ... (remote ID:…
Dani
  • 971
  • 12
  • 31
1
vote
2 answers

Why does my gulp/teamcity build fail with "Assertion failed: 0, file src\uv-common.c, line 103"?

My TeamCity build is randomly failing with the following message: [16:25:45][Step 1/2] [16:25:45] Build complete! [16:25:45][Step 1/2] [16:25:45] Finished 'build' after 3.32 min [16:25:45][Step 1/2] [16:25:45] Starting 'test'... [16:25:48][Step 1/2]…
Josh Kodroff
  • 27,301
  • 27
  • 95
  • 148
1
vote
1 answer

Can't get the branch from which build is done in Team City

I am using TeamCity as my CI server.I am currently generating apk's for two different branches. Now I need to upload these apk's to hockey-app for two different teams.But I cannot understand whether build is coming from the default branch or release…
Nevin Raj Victor
  • 2,924
  • 3
  • 23
  • 37
1
vote
1 answer

TeamCity Agent error: Failed to publish artifacts: Authentication required

I am using TeamCity 9.0.1. The TC server was just migrated from another machine, and now none of my build agents can publish artifacts. They show the following error in the build log: [11:40:20][Publishing artifacts] Publishing using…
OfficerJoe
  • 45
  • 1
  • 9
1
vote
1 answer

Is it possible to stop a failing TeamCity build from a build configuration?

We have a TeamCity build configuration which does a deploy and then runs integration tests. Deploy system Run test suite A Run test suite B Run test suite C If test suite A fails, B and C should still be run (likewise C should run if B fails). To…
infojolt
  • 5,244
  • 3
  • 40
  • 82
0
votes
1 answer

How to change the branch being built in TeamCity

How do I change the branch being built in TeamCity. It seems like the master is the only branch I can use:
0
votes
1 answer

Teamcity execute on 1 of 2 conditions being true

I am in the process of migrating the code base to Java 11 from Java 8. So I already had a build step for Java 8, and now I introduced one for Java 11. I want Java 8 to be used for the master and release branch, and use Java 11 for every other…
0
votes
0 answers

Trigger TeamCity build with build parameters in HTTP URI

I have the following build config for TeamCity (in XML): mybuild
Katie
  • 918
  • 1
  • 5
  • 18
0
votes
1 answer

Notify user who run the build (if its broke) Teamcity

I have a TeamCity Enterprise 2019.2 (build 71499). Is it possible to notify user who run the build if it was broken via email? Cant find such option in Notification rules: Builds with my changes only does not work for me, because the author of the…
krabcore
  • 885
  • 2
  • 8
  • 22
0
votes
1 answer

In TeamCity is there a way to get a dropdown menu prompt when building to choose a build dependency?

I would like to get a drop-down menu or prompt when I run a build with a build dependency, to choose an older build to use in that dependency. Is there a way to achieve that?
0
votes
1 answer

How to show messages with reason for skipped tests in teamcity?

I run ui-automated tests (java+maven+junit4) on TeamCity. And there are some tests which are ignored for some reasons. So I'm trying to pass these reasons to teamcity results. How it looks on teamcity Tests are ignored via using Assume.assumeFalse -…