teamcity-7.1

Team City CI with Xcode workspace - Scheme “My Scheme” is not configured for running

僤鯓⒐⒋嵵緔 提交于 2021-02-18 20:52:31
问题 I have a workspace with few projects that must be built as static libraries and I have schemes with tests for them. I want to configure TeamCity to build and test each of those libraries, but it does not work with following error: ... /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace code/MyApplication/My Framework.xcworkspace -scheme One Of Tests TEST_AFTER_BUILD=YES clean build -configuration Debug -sdk iphonesimulator6.1 in directory: /Users/Me/TeamCity/buildAgent

Team City CI with Xcode workspace - Scheme “My Scheme” is not configured for running

旧时模样 提交于 2021-02-18 20:49:47
问题 I have a workspace with few projects that must be built as static libraries and I have schemes with tests for them. I want to configure TeamCity to build and test each of those libraries, but it does not work with following error: ... /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace code/MyApplication/My Framework.xcworkspace -scheme One Of Tests TEST_AFTER_BUILD=YES clean build -configuration Debug -sdk iphonesimulator6.1 in directory: /Users/Me/TeamCity/buildAgent

TeamCity plugin UrlTrigger keeps firing

六月ゝ 毕业季﹏ 提交于 2019-12-24 13:37:24
问题 I have setup the trigger to listen to the last pinned build artifacts: <TEAMCITY URL>/repository/downloadAll/bt79/.lastPinned However, the trigger keeps firing every 30 seconds which is the default Polling interval. Am I missing something here? The url always gives me the same file. UPDATE: After upgrading to TeamCity 7.1 the problem still exists. 回答1: The answer to this question came from TeamCity support: The reason of the described behaviour is the way TeamCity controller returns data

How to build .vdproj msi using TeamCity?

隐身守侯 提交于 2019-12-24 00:28:27
问题 I am trying to get continuous integration setup using TeamCity to automatically build and release our application and Windows services. The solution currently consists of a web application and 2 services (amongst a host of other projects, but all that gets deployed is the app and services) - the services are packaged into .msi installers using Visual Studio 2010 setup projects ( .vdproj ). The web application isn't an issue because I can just use MsBuild.exe to publish. However, MsBuild.exe

TeamCity Rest API

不打扰是莪最后的温柔 提交于 2019-12-21 06:08:15
问题 How to get the changes of a teamcity build? I got the following URL wich list all the build changes and provides a URL using which we can view the changes http://teamcityserver/httpAuth/app/rest/changes?buildType=id:bt2 However the given URL "/httpAuth/app/rest/changes/id:433" takes the id which is modification id. How do we get the modification ID? Can we pass the internal build ID or number to get the chnages of a specific build? 回答1: Perhaphs what you need is this: "https://teamcity.blabla

TeamCity Rest API

荒凉一梦 提交于 2019-12-21 06:07:20
问题 How to get the changes of a teamcity build? I got the following URL wich list all the build changes and provides a URL using which we can view the changes http://teamcityserver/httpAuth/app/rest/changes?buildType=id:bt2 However the given URL "/httpAuth/app/rest/changes/id:433" takes the id which is modification id. How do we get the modification ID? Can we pass the internal build ID or number to get the chnages of a specific build? 回答1: Perhaphs what you need is this: "https://teamcity.blabla

Is it possible to prevent a build chain from being interrupted in TeamCity?

≯℡__Kan透↙ 提交于 2019-12-20 03:40:12
问题 I have the following set-up in TeamCity 7.1.3: Project A Build & Deploy A Test A (Quick) Test A (Slow) Test A (Very Slow) Project B Build & Deploy B Test B (Quick) Test B (Slow) All of the tests for A depend on 'Build & Deploy A' and all of the tests for B depend on 'Build & Deploy B'. The dependencies are all snapshot dependencies with the following settings: Do not run new build if there is a suitable one Only use successful builds from suitable ones Run build on the same agent All of the

Teamcity NuGet Repository corruption

坚强是说给别人听的谎言 提交于 2019-12-10 13:52:33
问题 So, my google-fu is weak... I could not find another instance of my errors. I've been having problems with my teamcity nuget repository since a day. NuGet downloads from the repo fail with unexpected EOF's or corrupt package warnings. As far as I can tell this is not a hardware failure, the vm, and vm-host do not report disk errors. To add insult to injury the teamcity logfile 'teamcity-javaLogging-2013-07-17.log' grows unbounded (+3GB in the time to type this, where 10 MB a day is normal)

MSBUILD : error MSB1008: Only one project can be specified in teamcity

陌路散爱 提交于 2019-12-06 21:09:13
问题 I am trying to run msbuild with teamcity. I have a batch file and I pass into it parameters and the build works. When I try to run through teamcity I get error below [13:24:46][MSBuild output] Start MSBuild... [13:24:46][MSBuild output] 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe' '"@C:\TeamCity\buildAgent\work\999585556854a516\Build\Default.msbuild.teamcity.msbuild.tcargs" C:\TeamCity\buildAgent\work\999585556854a516\Build\Default.msbuild.teamcity' [13:24:46][MSBuild output]

TeamCity: Prevent 2 builds from running simultaneously

这一生的挚爱 提交于 2019-12-06 19:28:01
问题 I don't want Build Config A and Build Config B to run at the same time. This is because they share the same resource which cannot be accessed simultaneously. However each build config is run by a separate agent so it is possible for them to run simultaneously. Instead I would like one build config, when triggered, to wait for the other to finish if it is running. For example if Build Config B begins to run but Build Config A is already running, then B would wait until A finishes and then B