Skip to content

Commit

Permalink
Increase timeout for bootstrap running. (#7449)
Browse files Browse the repository at this point in the history
Darwin specifically moved to 15 minutes because that one
seems to periodically time out.
  • Loading branch information
andy31415 authored and pull[bot] committed Jul 2, 2021
1 parent 8bada9b commit 1375729
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples-linux-standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
OPEN_SSL_VERSION=`ls -la /usr/local/Cellar/[email protected] | cat | tail -n1 | awk '{print $NF}'`
ln -s /usr/local/Cellar/[email protected]/$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
Expand All @@ -89,4 +89,5 @@ jobs:
- name: Run Test Suites
timeout-minutes: 5
run: |
scripts/tests/test_suites.sh
scripts/tests/test_suites.sh
2 changes: 1 addition & 1 deletion .github/workflows/unit_integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;
Expand Down

0 comments on commit 1375729

Please sign in to comment.