We have many plans running on windows virtual machine agents and are facing some space issues - while we managed to solve this problem for the unix agent by sharing the build_dir for all the agents ( using symlinks), I can't figure out a way to make this work for windows agents.
So far, I tried the following :
- specifying the UNC path into the bamboo build config
- mapping the NAS location to a letter (b:\build-dir) and updating the bamboo build config, but the repo fail to check out.
Any thoughts?
You can use a mapped network drive if you switch to using the Professional edition of the Tanuki service wrapper with bamboo (requires license for each service).
See http://wrapper.tanukisoftware.com/doc/english/qna-win-shares.html
This way you can setup the service wrapper running bamboo Tomcat or agent to map the network drive when the service starts adn unmap when the server is stopped.
We are using this sucecsfully with Bamboo 3.2 and multiple Bamboo agents shring same drive across different VMs.
Hope This Helps, Good Luck!
UNC paths are not supported by cmd.exe which Bamboo uses to run external process. You can use mapped network drives but there are some caveats too:
Do you run agents as Windows service? By default, network drive mappings are not available to windows services:
http://serverfault.com/questions/4623/windows-can-i-map-a-network-drive-for-a-service-account
http://stackoverflow.com/questions/182750/how-to-map-a-network-drive-to-be-used-by-a-service
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What error is shown when the checkout fails?
BTW: make sure you turn off concurrent builds when you share build directories like this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.