teamcity-8.0

TeamCity: email notifications to non registered users

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-23 20:43:00
问题 Is it possible setup TeamCity e-mail notifications to VCS users which doesn't registered in TeamCity? VCS user name is a first part of e-mail: vasily.pupkin -> vasily.pupkin@company.com Jenkins has settings for this case: 'Default user e-mail suffix'. May be TC has similar settings? What I do not want to do: force all users to create account create all accounts manually as admin setup LDAP synchronization now (I need quick, temporary solution) 回答1: If possible, you could create a TeamCity

Nuget and Teamcity Agent not allowed to run this configuration

筅森魡賤 提交于 2019-12-23 07:55:41
问题 I came across an interesting issue. I want to build nuget packages with Teamcity. I did set up the configuration which is really straight forward (Good job JetBrains!) However I am not able to run it on one of our build agents. The agent does pass the agent requirements for the configuration, but next to it's name the following is shown: not allowed to run this configuration My question: Why? On the agent configuration parameters page I have Nuget as possible configurations: teamcity.tool

Can you use the team city rest api to fetch plan branch names?

落花浮王杯 提交于 2019-12-22 08:07:06
问题 I'm trying to build a command line app to fetch artifacts from teamcity. This is fine if I know the branch I want to get but I want to show a list of all the available branches first. This is what I have to fetch the latest build when I know the branch http://<TC>/guestAuth/app/rest/builds/buildType:<BUILD-TYPE>,branch:<BRANCH> But if I take the ,branch:<BRANCH> off it only shows one build which is the latest on the default branch I think. What I can't find is a URL to get the branches on a

Is it possible to specify when a Build Feature is to be run?

淺唱寂寞╮ 提交于 2019-12-22 03:24:08
问题 TeamCity 8.1.4 (build 30168) I notice that Build Features are always run as first part of first step in the Build Steps, but is it possible to make a Build Feature run e.g. as first part of step2? Or as last part of Step1? Any help is appreciated! (If it is of interest, this is my concrete problem; I have a meta runner that creates a specific build number, I use this as a first step in the build steps. I want to use the build feature "AssemblyInfo patcher", but this runs before the meta

Import/Export TeamCity build configuration from one server to another

二次信任 提交于 2019-12-20 11:04:20
问题 What's the best way to move a single TeamCity build configuration from one server to another? I have a local instance of TeamCity that I test builds on. Then when the build is sufficiently mature, I manually create it (eyeball-copy) on our main TeamCity server. Is there an Export & Import feature that will do this for me? 回答1: Unfortunately there is no such thing. TeamCity 8 made the situation a little bit better though by introducing a Build Id format (project name + build config name, can

Select Git branch for TeamCity Build

岁酱吖の 提交于 2019-12-17 17:25:11
问题 I'm wondering how to select the branch to build against using Team City 8.1. My VCS root (Git) is set to Default: "master" and Branch specifications are +:refs/heads/develop +:refs/heads/feature/* +:refs/heads/hotfix/* +:refs/heads/master +:refs/heads/release/* I have a CI build set up that automatically builds anything that is checked in, which is working exactly how I want. What I'd like to do is create a scheduled QA build/deployment against the "develop" branch. I see that if I click the

TeamCity fails to run iOS appium tests when auto-launched

此生再无相见时 提交于 2019-12-12 15:24:54
问题 Description We are using appium in our cucumber suite within TeamCity 8 on an Apple MacMini running Mavericks. The problem is that appium seems to fail to interact with the iOS Simulator when it is ran from TeamCity at login (via Automator). The only combination that I have found to work is to run the following from the Terminal in an interactive session: sh /Applications/buildagent/bin/agent.sh start What does not work? running agent.sh start from an ssh session creating a shell script with

TeamCity build dependencies and choosing the correct branch

 ̄綄美尐妖づ 提交于 2019-12-12 10:39:39
问题 I have a single project with three build configurations: Integration Deploy Dev Deploy Release Build configs 2 and 3 are dependent on 1 via a snapshot. There are 3 VCS roots: Git - All (used with build config 1) Git - Develop (used with build config 2) Git - Master (used with build config 3) The default branch and branch specs are as follows: Git - All default branch: develop branch spec: +:refs/heads/(develop) +:refs/heads/(master) +:refs/heads/(feature/ ) +:refs/heads/(hotfix/ ) +:refs

TeamCity Support For GlobalAssemblyInfo.cs

我与影子孤独终老i 提交于 2019-12-11 03:13:35
问题 According to the documents TeamCity v8.1.x supports a GlobalAssemblyInfo.cs file now with the Assembly version patching feature however even though I have such a file in my solution and each of my projects have a link to this file the version information is not being replaced. Is there are certain location where TeamCity is looking for this file or does it just scan the entire solution tree? 回答1: This feature only got added in TeamCity 8.1.3. In the AssemblyInfo Patcher settings there will be

How to deploy to AWS Elastic Beanstalk on successful Teamcity build

家住魔仙堡 提交于 2019-12-10 18:34:59
问题 I want to deploy a java application(Liferay) to Beanstalk from Teamcity when a build succeeds. I can't find anything online, please suggest. Thankyou 回答1: Here is an example for PHP, but you can use it with any other platform (via CLI): http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_PHP_eb.sdlc.html UPD: Here is an even better way: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-reference-eb.html. Just command line tool. You can run it in TeamCity build step