I have two build agents running for teamcity. One build agent runs on a server with a d drive on it and one runs on a server that does not have a D drive. I want the buildAgent on the server with the d drive to do an svn checkout to a specified file location on the d drive and the second build agent that runs on a server that does not have a d drive in it to do it to a specified file location on the c drive of that server. Is this doable?
Is there a way to Change the checkout directory in teamcity based on which buildAgent is running the build?
1.5k Views Asked by jgerstle At
1
There are 1 best solutions below
Related Questions in TEAMCITY
- Installing Teamcity build agent as a user: failed to install the service. selected account does not have enough rights
- How to define WIX agent requirement in TeamCity?
- Linking TeamCity 8.0.5 to MySQL
- TeamCity create arbitrary directory structure on agent
- Running Windows Forms Application with TeamCity
- Backup strategy for build tool hosted on Azure VM
- Xcode 6 archive process does not fire pre/post/build phase script for auto build increment
- How to fetch the Value of Teamcity Configuration in java?
- Team City pending changes for specific build configuration is not as per default branch
- How to build Xamarin.Mac application from command line or build script
- How does one create a branch in TeamCity for multiple VCS configurations?
- TeamCity - Create Project From URL
- Is there deployment trigger for teamcity?
- MSBuild12 on a machine with only VS2015
- Have teamcity checkout on build agent machine
Related Questions in TEAMCITY-7.0
- TeamCity schedule trigger with additional VCS rules
- Trigger TeamCity build with build parameters in HTTP URI
- How do I pass this common property to MSBuild using TeamCity?
- Unable to download TeamCity windows tray notifier when TeamCity running over HTTPS with IE8
- TeamCity v7 - Receive notification if SVN Externals path is invalid
- Junit HTML report generated from Teamcity does not show System.out statements
- How to run Team City AssemblyInfo patcher after specific build step
- Msbuild not able to create Smart Device CAB Project
- How to Enable Teamcity Performance Monitor
- Teamcity overview, not showing build history
- TeamCity agent error "failed to perform checkout on agent"
- Using git commands in a TeamCity Build Step
- Creating Build Configuration via REST in Teamcity
- Teamcity not deploy app_data folder
- Team City 7.0 - How do you configure builds dependent on a shared compiled library?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I solved this issue by creating a
CHECKOUT_DIRenvironment variable on both machines. I then use those environment variables in team city by saying to put the checked out files in the%env.CHECKOUT_DIR%\app\trunkdirectory