Hi,
I am using Bamboo's 'Artifact Downloader' plugin to share artifacts from a parent plan to a child plan. I have configured the child plan to run even if the parent plan failed. I notice that when the child plan is running, the 'Artifact Downloader' is downloading the artifacts from the last successful build of the parent plan. How do I make it download the artifact from the latest build (instead of the last successful build) of the parent plan?
Hi @headerfile
This happens by design. In most cases, it won't make sense to get an artifact from a failed build. Depending on the failure the artifact won't even be published.
I do think the simpler way is to make sure your prior build plan succeeds before trying to run the plan that will consume the artifact. You could change your trigger by setting the option Only run Build if other Plans are currently passing and providing the correct plan key.
If you still want to try downloading the artifact from the latest build even if it is failed you may try it programmatically. For that you would need:
BUILD_NUMBER=`curl -u user:password -X GET 'http://localhost:8085/bamboo/rest/api/latest/result/PROP-PLEN-latest' | awk -v FS="(resultNumber)" '{print $2}' | tr -d '<>/'`
I hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.