Ensure that your builds do not exceed the time limit by setting up Step timeout for Steps that might cause builds to hang.
A Step timeout, defined in seconds, sets a maximum time a Step is allowed to run. If the Step exceeds that limit, the Workflow moves on to the next step. This is useful if, for example, your builds hang for not immediately obvious reasons - you can set timeouts for the Step or Steps which are suspected to have caused the problem.
-
Find the step in the
bitrise.yml
file.Don’t forget you can edit the
bitrise.yml
file of your project on bitrise.io: open theApps
page, select your app, click theWorkflow Editor
tab then clickbitrise.yml
. -
Add a
timeout
property before the other step inputs.
Example:
- xcode-test@1.18.14:
timeout: 120
inputs:
- project_path: "$BITRISE_PROJECT_PATH"
- scheme: "$BITRISE_SCHEME"
And you’re done! In our example, the xcode-test
Step will abort after 120 seconds. Check the build logs to see what caused the Step to exceed the limit.