Questions tagged [teamcity]

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 historically related to Hudson) and CruiseControl.

It was first released on October 2, 2006. TeamCity is commercial software and licensed under a proprietary license. A Freemium license for up to 20 build configurations and 3 free Build Agent licenses is available.


**Tagging recommendation:**
It is recommended to use the tag together with the version specific tag, f.e. , .
**Resources:**
6095 questions
4
votes
1 answer

Using Maven property inside TeamCity Build Step

I would like to use a property, which I defined inside my pom.xml. Now I would like to refer to this property value inside my TeamCity Build Step. At the moment I'm only able to refer the other way around to use a TeamCity property inside Maven. In…
FaltFe
  • 195
  • 11
4
votes
0 answers

SharePoint Provider Hosted app deployment

I am new to sharepoint so please bear with me! I have completed a provider hosted application that we will be hosting on premise! One of our requirements is that all apps are ran through TeamCity for build and Octopus for deployment and we use GIT…
4
votes
1 answer

TeamCity Project Template

Is there a way to have a whole project including all build configurations in a template? We have a setup where we deploy several applications using TeamCity and the only difference in each deployment is the VCS root. The build process is the same…
rabs
  • 1,807
  • 3
  • 18
  • 29
4
votes
1 answer

TeamCity multiple step build using different agents

We've just expanded our TeamCity footprint so that we now have multiple agents running on separate servers (they all used to be on the same server). The issue we are running into is during a build that has multiple steps, where the last step depends…
dotdev
  • 543
  • 7
  • 19
4
votes
1 answer

How to display build error messages in TeamCity when using cake build scripts

Having a CI pipeline that is using Teamcity and Octopus deploy and build scripts written with Cake I want to be able to display the error messages that generated by the build script. Now the message displayed is: Exit code 1 (new) In order to be…
4
votes
1 answer

Force update TeamCity NuGet feed

When we push a new version of a NuGet package to our NuGet feed the package will appear in the file system on the NuGet server. The NuGet feed API and in visual studio, however only update roughly every hour so we may have to wait up to an hour for…
Adamon
  • 484
  • 9
  • 21
4
votes
2 answers

Access denied on TeamCity VCS update

I have some trouble getting the VCS of teamcity work. I'm using perforce and the TC-Server should be configured correct, but when running the project I'm getting the error: [Updating sources: server side checkout...] Error while applying patch:…
freakinpenguin
  • 831
  • 14
  • 24
4
votes
1 answer

Slow "File Content Replacer" in TeamCity

We're using TeamCity's build feature File Content Replacer to replace the build version number in multiple AssemblyVersion.cs files, following TeamCity's documentation on Changing only the last version part / build number of the AssemblyVersion…
jonespen
  • 96
  • 9
4
votes
4 answers

Importing nunit results into teamcity with cake

I am using Cake as a build script and TeamCity for CI. I am having Cake run unit tests with NUnit and then TeamCity is pulling in those results with a 'xml report processor'. As you can see its importing the file, but the 'Test' tab is missing so I…
Andrew Davis
  • 460
  • 3
  • 17
4
votes
1 answer

FAKE (F# Make) dotCover coverage in TeamCity

I have a FAKE build script that contains a DotCover coverage step using using the DotCoverNUnit3 extension: let filters = "" !! (buildDir @@ "/*.UnitTests.dll") |> DotCoverNUnit3 (fun p -> { p with Output = artifactsDir @@…
Dan Ellis
  • 5,537
  • 8
  • 47
  • 73
4
votes
0 answers

How to access system property set from teamcity build job in java code

How to refer system property set in TeamCity job in java code? For example I have a system property coming from team city build parameter named abc. I want to access it in .java file by doing System.getProperty("abc")
4
votes
3 answers

setup trigger for file change in teamcity

I can setup teamcity trigger to run tests whenever there in VCS checkin/ change. Then I setup command line build steps to access files on system . e.g. `custom script' cd ~/Desktop ls But is there way to trigger test run if there is change in file…
user2661518
  • 2,677
  • 9
  • 42
  • 79
4
votes
1 answer

Liquibase executes changeset several times in single Maven build

I am observing some strange Liquibase behavior when I run simple Maven project on TeamCity build agent. Maven project structure: changelogs/ databaseChangeLog.xml pom.xml Run command: mvn liquibase:update databaseChangeLogs.xml contains next line:…
ybondar
  • 399
  • 2
  • 18
4
votes
2 answers

How to set up TeamCity to use own HTTP authenticated NuGet service?

a problem is that TeamCity is unable to authorize into NuGet service which runs on same TeamCity instance. Below you can find how the Build configuration looks now: I also added Build Feature for NuGet Credentials: With this configuration I…
Piotrycjan
  • 219
  • 2
  • 14
4
votes
3 answers

Nuget Package Source 404 not found

I'm using a NuGet server 3.4.3 through TeamCity with the following URL http://ngserv/guestAuth/app/nuget/v1/FeedService.svc/ Trying to access the pakcage source with Visual Studio 2015 Update 2 and getting this error: [NGServ package source] The V2…
Matthew Layton
  • 39,871
  • 52
  • 185
  • 313