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.
I am opening a python file from batch command, after successful scripting, it stucks afterexecuting successful scripts, stage stucks after executing all the scripts.
Hi @Muhammad Ammar Abid ,
If you are running a python file, I assume the script already has an exit statement like exit(). Do you have such entry at the end? This helps to terminate a Python script promptly.
Does your ongoing build log suggest something?
What happens when you run the same python script outside Bamboo? Does it get stuck as well?
Bamboo always expects exit 0 for the build to finish executing successfully. To test what is returned by the script (if at all it finishes), you may introduce a script task and use a $? from the command-line. This gives the exit status of the previous script. 0 refers to success or an integer in the range 1 - 255 refers to some error.
#!/bin/bash
echo $?
Cheers,
Jey
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.