-
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.
Missed adding retries to 4 spots, spotted failures (#27397)
* Updating retry, and adding a retry to start * Pinning * Adding retries to them all * Trying to roll this back, it keeps failing... * Reverting to the newer one * Missed 4 caches, which are failing :)
- Loading branch information
1 parent
1f182f2
commit bd5c520
Showing
3 changed files
with
40 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,15 +65,18 @@ jobs: | |
- name: Checkout submodules | ||
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux | ||
|
||
- name: Bootstrap cache | ||
uses: buildjet/cache@v3 | ||
timeout-minutes: 10 | ||
if: ${{ !env.ACT }} | ||
- uses: Wandalen/[email protected] | ||
name: Bootstrap cache | ||
timeout-minutes: 20 | ||
with: | ||
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**') }} | ||
path: | | ||
.environment | ||
build_overrides/pigweed_environment.gni | ||
action: buildjet/cache@v3 | ||
attempt_limit: 3 | ||
attempt_delay: 2000 | ||
with: | | ||
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**') }} | ||
path: | | ||
.environment | ||
build_overrides/pigweed_environment.gni | ||
- name: Bootstrap | ||
timeout-minutes: 15 | ||
run: | | ||
|
@@ -87,11 +90,15 @@ jobs: | |
- name: Get Cirque Bootstrap cache key | ||
id: cirque-bootstrap-cache-key | ||
run: echo "val=$(scripts/tests/cirque_tests.sh cachekeyhash)" >> $GITHUB_OUTPUT | ||
- name: Cirque Bootstrap cache | ||
uses: buildjet/cache@v3 | ||
timeout-minutes: 10 | ||
- uses: Wandalen/[email protected] | ||
name: Cirque Bootstrap cache | ||
if: ${{ !env.ACT }} | ||
timeout-minutes: 20 | ||
with: | ||
action: buildjet/cache@v3 | ||
attempt_limit: 3 | ||
attempt_delay: 2000 | ||
with: | | ||
key: ${{ runner.os }}-cirque-${{ steps.cirque-bootstrap-cache-key.outputs.val }} | ||
restore-keys: ${{ runner.os }}-cirque- | ||
path: ${{ env.GITHUB_CACHE_PATH }} | ||
|
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 |
---|---|---|
|
@@ -59,14 +59,18 @@ jobs: | |
GH_CONTEXT: ${{ toJson(github) }} | ||
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}" | ||
|
||
- name: Bootstrap cache | ||
uses: buildjet/cache@v3 | ||
timeout-minutes: 10 | ||
- uses: Wandalen/[email protected] | ||
name: Bootstrap cache | ||
timeout-minutes: 20 | ||
with: | ||
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**') }} | ||
path: | | ||
.environment | ||
build_overrides/pigweed_environment.gni | ||
action: buildjet/cache@v3 | ||
attempt_limit: 3 | ||
attempt_delay: 2000 | ||
with: | | ||
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**') }} | ||
path: | | ||
.environment | ||
build_overrides/pigweed_environment.gni | ||
- name: Bootstrap | ||
timeout-minutes: 25 | ||
run: bash scripts/bootstrap.sh | ||
|
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 |
---|---|---|
|
@@ -65,14 +65,18 @@ jobs: | |
GH_CONTEXT: ${{ toJson(github) }} | ||
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}" | ||
|
||
- name: Bootstrap cache | ||
uses: buildjet/cache@v3 | ||
timeout-minutes: 10 | ||
- uses: Wandalen/[email protected] | ||
name: Bootstrap cache | ||
timeout-minutes: 20 | ||
with: | ||
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**') }} | ||
path: | | ||
.environment | ||
build_overrides/pigweed_environment.gni | ||
action: buildjet/cache@v3 | ||
attempt_limit: 3 | ||
attempt_delay: 2000 | ||
with: | | ||
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**') }} | ||
path: | | ||
.environment | ||
build_overrides/pigweed_environment.gni | ||
- name: Bootstrap | ||
timeout-minutes: 25 | ||
run: bash scripts/bootstrap.sh | ||
|