From b58ba0f9d8650933e5997b886792dcbdd8bc7bdd Mon Sep 17 00:00:00 2001 From: igorgn <50628426+igorgn@users.noreply.github.com> Date: Mon, 22 Nov 2021 17:05:49 +0200 Subject: [PATCH] Timeout (#7356) 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. --- .buildkite/pipeline.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index f5b6ce4ce3e..7b7e8ec0929 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -26,6 +26,7 @@ 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: @@ -33,6 +34,7 @@ steps: - "npm install" - "npm run test-unit-ios -- --release" key: "ios_unit" + timeout_in_minutes: 90 - label: ":ios: iOS - E2E" command: @@ -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: @@ -53,3 +56,4 @@ steps: - "android_build" - "ios_unit" - "ios_e2e" + timeout_in_minutes: 90