Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Capability to define custom Build Working Directories in bamboo

Supun De Silva August 10, 2014

Currently in bamboo each stage runs in a seperate working directory.

for example if we set

buildWorkingDirectory = /home/supund/abc

inside the buildWorkingDirectory, it creates seperate directory for each stage as follows

<buildWorkingDirectory>/"<PROJECT_KEY>_<PLAN_KEY>_<STAGE_KEY>"

This is a bit tricky if we want two stages to run in the same directory.

We are having a pre-built system that builds and deploys all the components that we need, in single commands.

The issue being that this is already included in to git so when the code gets checked out, the script lies in the source directory. After building the components we use the same tool to deploy the test binaries to a test environment where we run seperate test suits.

The issue is that since the script is in the Checkout stage directory, we cannot have a seperate stage to spawn the test deploy since test deploy stage has a different build-working-dir.

If we can override the limitation of having seperate build-working-dir for each stage it becomes much easier. This is one of our concerns of 'build-working-dir' not being able to configure.

Is there a workaround for this ??

1 answer

0 votes
Gretchen
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 10, 2014

Yes, copy the contents of the other folder into your cwd using a script command. You're not going to check it in so it won't matter in the long run and you'll have your stuff where you need it.

For example cp ${bamboo.build.working.directory}..\(name of other directory)\*.* ${bamboo.build.working.directory} usually gets the trick done for me.

We have several builds with repositories checked out from other places (runtime libraries etc.) Since the build working dir is a SVN workspace (in our case) you can't check out two repos to a single workspace (svn limitation) we have to do it this way.

It does cause a clean build but that's small price.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events