-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build timeouts from 15/20 minutes to 25/30 minutes. (#8140)
- Loading branch information
Showing
11 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,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: 15 | ||
timeout-minutes: 25 | ||
run: scripts/build/gn_bootstrap.sh | ||
- name: Uploading bootstrap logs | ||
uses: actions/upload-artifact@v2 | ||
|
@@ -58,11 +58,11 @@ jobs: | |
.environment/gn_out/.ninja_log | ||
.environment/pigweed-venv/*.log | ||
- name: Run iOS Build Debug | ||
timeout-minutes: 20 | ||
timeout-minutes: 30 | ||
working-directory: src/darwin/Framework | ||
run: xcodebuild -target "CHIP" -sdk iphoneos | ||
- name: Run iOS Build Release | ||
timeout-minutes: 20 | ||
timeout-minutes: 30 | ||
working-directory: src/darwin/Framework | ||
run: xcodebuild -target "CHIP" -sdk iphoneos -configuration Release | ||
- name: Clean Build | ||
|
@@ -72,7 +72,7 @@ jobs: | |
run: defaults delete com.apple.dt.xctest.tool | ||
continue-on-error: true | ||
- name: Run macOS Build | ||
timeout-minutes: 20 | ||
timeout-minutes: 30 | ||
# Enable -Werror by hand here, because the Xcode config can't | ||
# enable it for various reasons. Keep whatever Xcode settings | ||
# for OTHER_CFLAGS exist by using ${inherited}. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,7 +137,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: 15 | ||
timeout-minutes: 25 | ||
run: scripts/build/gn_bootstrap.sh | ||
- name: Uploading bootstrap logs | ||
uses: actions/upload-artifact@v2 | ||
|
@@ -161,7 +161,7 @@ jobs: | |
# actually succeeded, because that just wastes space. | ||
rsync -a out/debug/standalone/ objdir-clone || true | ||
- name: Run Test Suites | ||
timeout-minutes: 15 | ||
timeout-minutes: 25 | ||
run: | | ||
scripts/tests/test_suites.sh | ||
- name: Uploading core files | ||
|