You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If any of the commands in the first four stages returns a non-zero exit code, Travis CI considers the build to be broken.
When any of the steps in the before_install, install or before_script stages fails with a non-zero exit code, the build is marked as errored.
When any of the steps in the script stage fails with a non-zero exit code, the build is marked as failed.
Note that the script section has different semantics to the other steps. When a step defined in script fails, the build doesn’t end right away, it continues to run the remaining steps before it fails the build.
Currently, neither the after_success nor after_failure have any influence on the build result. We have plans to change this behaviour