Skip to content

Commit

Permalink
Timeout (#7356)
Browse files Browse the repository at this point in the history
Buildkite right now don't have a convenient way to set a global timeout for whole build, so need to set it for every step separately.
  • Loading branch information
igorgn authored Nov 22, 2021
1 parent d203096 commit b58ba0f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,15 @@ steps:
- "npm run test-unit-android -- --release"
- "npm run test-e2e-android-multi -- --release --headless --verbose --ci"
key: "android_build"
timeout_in_minutes: 90

- label: ":ios: iOS - Unit"
command:
- "nvm install"
- "npm install"
- "npm run test-unit-ios -- --release"
key: "ios_unit"
timeout_in_minutes: 90

- label: ":ios: iOS - E2E"
command:
Expand All @@ -41,6 +43,7 @@ steps:
- "npm run test-snapshot-ios -- --release"
- "npm run test-e2e-ios -- --release --multi --ci"
key: "ios_e2e"
timeout_in_minutes: 90

- label: ":package: Publish"
env:
Expand All @@ -53,3 +56,4 @@ steps:
- "android_build"
- "ios_unit"
- "ios_e2e"
timeout_in_minutes: 90

0 comments on commit b58ba0f

Please sign in to comment.