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.