From 13757295af28cc96b366d0b63c87afcfd7f9bed6 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Tue, 8 Jun 2021 15:25:04 -0400 Subject: [PATCH] Increase timeout for bootstrap running. (#7449) Darwin specifically moved to 15 minutes because that one seems to periodically time out. --- .github/workflows/android.yaml | 2 +- .github/workflows/build.yaml | 2 +- .github/workflows/darwin.yaml | 2 +- .github/workflows/examples-linux-standalone.yaml | 2 +- .github/workflows/tests.yaml | 7 ++++--- .github/workflows/unit_integration_test.yaml | 2 +- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/android.yaml b/.github/workflows/android.yaml index 3eed1a04824222..034339872c7d34 100644 --- a/.github/workflows/android.yaml +++ b/.github/workflows/android.yaml @@ -46,7 +46,7 @@ jobs: with: submodules: true - name: Bootstrap - timeout-minutes: 5 + timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Build libs timeout-minutes: 2 diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9843f5e9706e0d..5db215ca186935 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -51,7 +51,7 @@ jobs: languages: "cpp" - name: Bootstrap - timeout-minutes: 5 + timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Setup Build run: | diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index 3db35696b4a29b..cee187296ed7bb 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -75,7 +75,7 @@ jobs: run: xcodebuild clean working-directory: src/darwin/Framework - name: Bootstrap - timeout-minutes: 5 + timeout-minutes: 15 run: scripts/build/gn_bootstrap.sh - name: Run Build Test Server timeout-minutes: 10 diff --git a/.github/workflows/examples-linux-standalone.yaml b/.github/workflows/examples-linux-standalone.yaml index 58aa637685fb11..301410550859a6 100644 --- a/.github/workflows/examples-linux-standalone.yaml +++ b/.github/workflows/examples-linux-standalone.yaml @@ -47,7 +47,7 @@ jobs: # with: # languages: "cpp, python" - name: Bootstrap - timeout-minutes: 5 + timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Build example Standalone Echo Client timeout-minutes: 5 diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 70dd653f5b689e..51b2b30c39164c 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -38,7 +38,7 @@ jobs: with: submodules: true - name: Bootstrap - timeout-minutes: 5 + timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Build all clusters app timeout-minutes: 5 @@ -76,7 +76,7 @@ jobs: OPEN_SSL_VERSION=`ls -la /usr/local/Cellar/openssl@1.1 | cat | tail -n1 | awk '{print $NF}'` ln -s /usr/local/Cellar/openssl@1.1/$OPEN_SSL_VERSION/lib/pkgconfig/* . - name: Bootstrap - timeout-minutes: 5 + timeout-minutes: 15 run: scripts/build/gn_bootstrap.sh - name: Run Build Test Server timeout-minutes: 5 @@ -89,4 +89,5 @@ jobs: - name: Run Test Suites timeout-minutes: 5 run: | - scripts/tests/test_suites.sh \ No newline at end of file + scripts/tests/test_suites.sh + diff --git a/.github/workflows/unit_integration_test.yaml b/.github/workflows/unit_integration_test.yaml index b1453407c76568..d897c697e5ad37 100644 --- a/.github/workflows/unit_integration_test.yaml +++ b/.github/workflows/unit_integration_test.yaml @@ -47,7 +47,7 @@ jobs: with: submodules: true - name: Bootstrap - timeout-minutes: 5 + timeout-minutes: 10 run: | mkdir -p /tmp/happy_test_logs ; mkdir -p /tmp/log_output ;