Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase timeout for bootstrap running. #7449

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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