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'm trying to download a build's log using python client.
right now i can do something like that:
p = bamboo.get_plan(project_key, expand='branches')
branch_key = p['key']
build_details = bamboo.build_latest_result(key, include_all_states=True, expand='stages')
print(f"BUILD URL: {bamboo.url}/browse/{key}")
if "state" not in build_details or build_details["state"] != "Successful":
print(f"status: != 'Successful'")
return
last_job_id = build_details['stages']['size']
result_number = build_details["buildNumber"]
output_log = bamboo.get(f"download/{branch_key}-JOB{last_job_id}/build_logs/{branch_key}-{result_number}.log")
However it seems sometimes the log url's follow a different format and i'm hitting errors. Is there any other way i could get a link to the build log ?
thank you.