You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.