Hello,
After a failed deploy shell (Bash) script (the script returns 1), the build job just hangs until timing out:
Checking running jobs...
Script failed with status 1
failed to deploy
No output has been received in the last 10m0s, this potentially indicates a stalled build or something wrong with the build itself.
Check the details on how to adjust your build configuration on: https://docs.travis-ci.com/user/common-build-problems/#Build-times-out-because-no-output-was-received
The build has been terminated
What I have tried so far to debug this:
function finalize {
echo "Checking running jobs..."
jobs
}
trap finalize EXIT
Any ideas?