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

How to substitute environment variable in TeamCity docker compose build?

I am trying Teamcity on-premise solution using docker-compose. I have a project which needs a docker compose runner type. Here is the docker compose override yaml file: version: '3' services: nextjs: build: context: ./frontend …
Maverick
  • 2,738
  • 24
  • 91
  • 157
2
votes
0 answers

Powershell script running over ssh to windows via teamcity

I am getting the following error in my TeamCity pipeline log An error has occurred which PowerShell cannot handle. A remote session might have ended. + CategoryInfo : OpenError: (172.31.26.4:String) [], PSRemotingDataStructureException +…
2
votes
1 answer

List remote refs failed: com.jcraft.jsch.JSchException: Algorithm negotiation fail

After GitHub "has disabled support for weak encryption" [ https://githubengineering.com/crypto-deprecation-notice/ ] in [ https://github.com/Microsoft/Git-Credential-Manager-for-Windows ] my TeamCity lost connection with Git: "List remote refs…
rmsys
  • 931
  • 13
  • 18
2
votes
0 answers

TeamCity 8.0.4 - wait for triggered build to finish and then download it

I found a way to trigger adding package build to queue using url. I also know how to download latest package with url, but I have a problem. I need to download latest package after TC will finish processing build that I triggered before. Is there…
sirKaskadir
  • 83
  • 2
  • 9
2
votes
1 answer

OpenQA.Selenium.WebDriverException: The HTTP request to the remote WebDriver server for URL timed out

I'm using TeamCity (v8.0.5) to run tests that use Selenium WebDriver (v 2.47). To this time everything worked perfectly on ChromeDriver (v 2.16), but serveral days ago it simply stopped working, the error is as follows: [19:34:04][chrome] Starting…
MNiebylski
  • 41
  • 1
  • 4
2
votes
1 answer

How can I use team city rest api to show only one build per branch for all branches in project?

I have multiple branches that are being tested under a single project and I'm currently using following command to show build statuses: "/guestAuth/app/rest/builds?locator=project:,running:any,branch:branched:any,count:20 Can limit…
skutzi
  • 77
  • 6
2
votes
1 answer

TeamCity AutoIncrementer Plugin Modify Build Number

I'm using the TeamCity AutoIncrementer Plugin: https://confluence.jetbrains.com/display/TW/Autoincrementer I'm attempting to modify the config file at: [TeamCity Data Directory]/config/autoincrementer.properties Within the config file it says: #…
Alan Liang
  • 358
  • 2
  • 15
2
votes
1 answer

How to modify TeamCity buildagent.properties file for EC2 agent?

I'm using TeamCity 8.x's EC2 plugin and Agent Push capability to create ubuntu build agents running in AWS EC2. These are created and destroyed on demand. Is there a way to get custom content into the resulting build-agent's buildagent.properties…
Peter Mounce
  • 4,105
  • 3
  • 34
  • 65
2
votes
2 answers

TeamCity Build Triggers to exclude some directories

I have a rule in Build Triggers to not trigger a build if a commit happens on a directory: Here is the directory structure of our code web => Web Application code. Should trigger Build1 api => Backend Code. Should trigger Build2 When a…
Rahul
  • 903
  • 8
  • 16
2
votes
1 answer

What's the correct place to put a properties file for a TeamCity plugin so that it could be easy editable?

I am writing a TeamCity plugin and I'm trying to figure out what the best place to put a .properties file would be. I was under the impression that the data/config dir would be on the CLASSPATH, but this doesn't seem to be the case. Could somebody…
carlspring
  • 31,231
  • 29
  • 115
  • 197
2
votes
2 answers

Embed URL clickable links in TeamCity build log

I'm trying to embed clickable links in my TeamCity logs. My custom log message displayed with logging message with the ##teamacity template (documentation): log("##teamcity[buildProblem description='message to log to TC']"); Now, i want part of…
Johnny
  • 14,397
  • 15
  • 77
  • 118
2
votes
1 answer

TeamCity failing to generate DotCover reports from custom build script

What do I need to do to get TeamCity to properly generate coverage reports against my project? I've got a custom powershell build script running DotCover against my code. The build script has a coverage method like so Function…
Chase Florell
  • 46,378
  • 57
  • 186
  • 376
2
votes
1 answer

TeamCity with MSBuild - Getting the Build folder name?

The following MSBuild script works, but I have to hard code the work folder (GetAssemblyIdentity line) that TeamCity uses. How do I get "C:\TeamCity\buildAgent\work\cb8ffbe14de0bdf3" dynamically?
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
2
votes
0 answers

Can TeamCity Update TFS work item with build number?

I've got TeamCity set up with continuous integration so that when I check in, a TeamCity build triggers. We use TFS for source control & work management. As part of our internal process, all check ins are associated with a TFS work item. What I'd…
2
votes
2 answers

Nuget Package Restore Fails Inside Teamcity - (TeamCity 8)

I have set Up a project in teamcity 8 that requires nuget package restore, and I have also added two build steps, one for the Nuget installer and for MsBuild. Since we need to connect via a proxy, I have also set this in the Nuget.config file under…
lacoder
  • 1,253
  • 1
  • 11
  • 22