file doesnot close after completing stage

Muhammad Ammar Abid January 30, 2020

I am opening a python file from batch command, after successful scripting, it stucks afterexecuting successful  scripts, stage stucks after executing all the scripts.

1 answer

0 votes
Jeyanthan I
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 30, 2020

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events