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

TeamCity Build Artifacts - Prevent overwriting of identically named files

In the 'General Settings' of my build configuration, I specify three different .html files in the 'Artifact Paths' text field, all with the same name. Each .html file is located in a separate directory, for example: However, this presents an issue.…
x3nr0s
  • 1,946
  • 4
  • 26
  • 46
0
votes
1 answer

Authomatic merging on Teamcity

Have a problem. The task is: checkout first_branch, merge into him changes from second_branch, commit and push these changes. Teamcity VCS root checkouts only first_branch without any information about other branches in the repo. That's why it…
ArgorAvest
  • 151
  • 1
  • 1
  • 11
0
votes
2 answers

TeamCity artifact includes every single file

After using TeamCity, my build process is Visual Studio (sln) -> NuGet Pack. Everything builds fine and the artifact is created. But the artifact has every single file, include the .vbproj, .vb files, the classes folder which only holds .vb files. …
zSKIz
  • 21
  • 1
  • 4
0
votes
2 answers

How do you configure the location of TeamCity server cache and temp directories?

This blog post indicates that it's possible to re-configure the locations of the $data/system/caches and $server/temp directories in order to optimise a TeamCity installation. Admittedly the post is a bit outdated; but I've done plenty of searching…
SteveChapman
  • 3,051
  • 1
  • 22
  • 37
0
votes
1 answer

How copy artifact from teamcity to remote location or folder

How to copy the build artifacts from Teamcity to another server? I tried this command "test/*.msi => \host\test\" in the artifact path, but it didn't work.
Balatharan
  • 125
  • 13
0
votes
0 answers

Make snapshot dependecies build on the same branch

I have a build configuration which I explicitly tell on which branch to be build (my-side-branch for example). Problem is that all of its snapshot dependencies uses the the default branch (master). How can I make them build on the same checkout…
Shmulik Klein
  • 3,754
  • 19
  • 34
0
votes
1 answer

How to trigger a build within a build chain after x days?

I am currently using Teamcity to deploy a web application to Azure Cloud Services. We typically deploy using powershell scripts to the Staging Slot and thereafter do a manual swap (Staging to Production) on the Azure Portal. After the swap, we…
Ahmad
  • 22,657
  • 9
  • 52
  • 84
0
votes
1 answer

TeamCity Cloud Agent Tagging

I've recently setup a Team City Cloud Agent on AWS EC2 for testing purposes. Everything is working great and the TeamCity server sees the new build server being spun up and pushes queues to them. However, I am having an issue when it comes to…
Nare
  • 43
  • 2
  • 7
0
votes
0 answers

Schedule the previous successfully build in team-city

For some build process cases. I need to schedule the previous successfully build in team-city. I need to trigger this automatically during Monday. For Some Cost Cutting plan I will delete instance at weekend and re-build during Monday morning. I…
Sha
  • 73
  • 2
  • 7
0
votes
1 answer

TeamCity Snapshot Dependencies against specific commit

I have several Team City build configurations which can be simplified to the following: A Test step which is automatically triggered by various commits and runs tests. A Build step which should be manually triggered against a known, specific test…
duncanhall
  • 11,035
  • 5
  • 54
  • 86
0
votes
2 answers

Use TeamCity 9 REST API to turn on Versioned Settings

I like to turn on Versioned Settings for my TeamCity projects, so that it commits its configuration in XML to the source control. However now I am seeking to do some automation around project creation leveraging the REST API. However, I can't figure…
Keith Pinson
  • 7,835
  • 7
  • 61
  • 104
0
votes
1 answer

GitVersion is not caching version number

I am close to getting GiVersion to work on TeamCity. But GitVersion puts 5 minutes on my build time because it not caching the version number. [WriteVersionInfoToBuildLog] INFO [07/14/16 13:55:32:72] Cache file…
Martin Andersen
  • 2,460
  • 2
  • 38
  • 66
0
votes
1 answer

How to change ant output severity to error

We use ant build step in team city build configuration. How can I change default log format that is present in Build Log. I am looking for solution to change some log lines to be reported as errors and not as default warning.
Kamil
  • 506
  • 4
  • 9
  • 21
0
votes
1 answer

TeamCity + GitHub (Build Config per branch)

TeamCity Setup: Project(CenterProj) Build Configuration (Master Branch) Build Configuration (Dev Branch) VCS(GitHub) Setup (Repo: CenterProj): Master Branch Dev Branch Site Setup: dev.centerproj(relates to dev branch) qa.centerproj(relates to…
SudoGaron
  • 339
  • 6
  • 22
0
votes
0 answers

How to use powershell to copy the files and adding them to the project which would be packed using octopack

I would want to do SQL automation operations using cmd or powershell but don't have any idea that how to do that I am using Octopack which is installed for web project Consider I have two project -- MyWebProject -- DbScript …