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.
Hello,
I have a bamboo plan that generates builds with two labels, version and country. Each label can have different values.
For example, I have this two builds:
One contains "version=1_8_1" and "country=us"
Another one contains "version=1_8_1" and "country=fr"
I need to find the build number of the one matching version 1_8_1 and country fr, but I can't figure out how to match by both values
"${url}/rest/api/latest/result/${PROJECT}-${PLAN}.json?expand=results&start-index=0&label=version=1_8_1&label=country=fr" | jq -r .results.result[].buildNumber
24
23
"${url}/rest/api/latest/result/${PROJECT}-${PLAN}.json?expand=results&start-index=0&label=version=1_8_1,country=fr" | jq -r .results.result[].buildNumber
24
23
"${url}/rest/api/latest/result/${PROJECT}-${PLAN}.json?expand=results&start-index=0&label=version=1_8_1&country=fr" | jq -r .results.result[].buildNumber
24
23
If I only try to match the country label it works as expected.
"${url}/rest/api/latest/result/${PROJECT}-${PLAN}.json?expand=results&start-index=0&label=country=fr" | jq -r .results.result[].buildNumber
23
What am I doing wrong? How should the request be formed?
Cheers.
I did a test changing the labels so they have only the value but it doesn't work either.
"${url}/rest/api/latest/result/${PROJECT}-${PLAN}.json?expand=results&start-index=0&label=1_8_1&label=fr" | jq -r .results.result[].buildNumber
24
23
"${url}/rest/api/latest/result/${PROJECT}-${PLAN}.json?expand=results&start-index=0&label=version=1_8_1,fr" | jq -r .results.result[].buildNumber
24
23
"${url}/rest/api/latest/result/${PROJECT}-${PLAN}.json?expand=results&start-index=0&label=version=1_8_1&fr" | jq -r .results.result[].buildNumber
24
23
It does say labels should be a comma-separated list ... but that doesn't work either.
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.