Skip to content

Commit 623d541

Browse files
authored
Continue, if the cache times out, given bootstrap will still fix it up (#27419)
1 parent 78ea726 commit 623d541

34 files changed

+94
-46
lines changed

.github/workflows/build.yaml

+10-5
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ jobs:
7171
7272
- uses: Wandalen/wretry.action@v1.3.0
7373
name: Bootstrap cache
74-
timeout-minutes: 20
74+
continue-on-error: true
75+
timeout-minutes: 10
7576
with:
7677
action: buildjet/cache@v3
7778
attempt_limit: 3
@@ -192,7 +193,8 @@ jobs:
192193
193194
- uses: Wandalen/wretry.action@v1.3.0
194195
name: Bootstrap cache
195-
timeout-minutes: 20
196+
continue-on-error: true
197+
timeout-minutes: 10
196198
with:
197199
action: buildjet/cache@v3
198200
attempt_limit: 3
@@ -358,7 +360,8 @@ jobs:
358360

359361
- uses: Wandalen/wretry.action@v1.3.0
360362
name: Bootstrap cache
361-
timeout-minutes: 20
363+
continue-on-error: true
364+
timeout-minutes: 10
362365
with:
363366
action: buildjet/cache@v3
364367
attempt_limit: 3
@@ -421,7 +424,8 @@ jobs:
421424
422425
- uses: Wandalen/wretry.action@v1.3.0
423426
name: Bootstrap cache
424-
timeout-minutes: 20
427+
continue-on-error: true
428+
timeout-minutes: 10
425429
with:
426430
action: buildjet/cache@v3
427431
attempt_limit: 3
@@ -525,7 +529,8 @@ jobs:
525529

526530
- uses: Wandalen/wretry.action@v1.3.0
527531
name: Bootstrap cache
528-
timeout-minutes: 20
532+
continue-on-error: true
533+
timeout-minutes: 10
529534
with:
530535
action: buildjet/cache@v3
531536
attempt_limit: 3

.github/workflows/chef.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ jobs:
5151
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux
5252
- uses: Wandalen/wretry.action@v1.3.0
5353
name: Bootstrap cache
54-
timeout-minutes: 20
54+
continue-on-error: true
55+
timeout-minutes: 10
5556
with:
5657
action: buildjet/cache@v3
5758
attempt_limit: 3
@@ -91,7 +92,8 @@ jobs:
9192
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform esp32
9293
- uses: Wandalen/wretry.action@v1.3.0
9394
name: Bootstrap cache
94-
timeout-minutes: 20
95+
continue-on-error: true
96+
timeout-minutes: 10
9597
with:
9698
action: buildjet/cache@v3
9799
attempt_limit: 3
@@ -131,7 +133,8 @@ jobs:
131133
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform nrfconnect
132134
- uses: Wandalen/wretry.action@v1.3.0
133135
name: Bootstrap cache
134-
timeout-minutes: 20
136+
continue-on-error: true
137+
timeout-minutes: 10
135138
with:
136139
action: buildjet/cache@v3
137140
attempt_limit: 3

.github/workflows/cirque.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767

6868
- uses: Wandalen/wretry.action@v1.3.0
6969
name: Bootstrap cache
70-
timeout-minutes: 20
70+
continue-on-error: true
71+
timeout-minutes: 10
7172
with:
7273
action: buildjet/cache@v3
7374
attempt_limit: 3
@@ -93,7 +94,8 @@ jobs:
9394
- uses: Wandalen/wretry.action@v1.3.0
9495
name: Cirque Bootstrap cache
9596
if: ${{ !env.ACT }}
96-
timeout-minutes: 20
97+
timeout-minutes: 10
98+
continue-on-error: true
9799
with:
98100
action: buildjet/cache@v3
99101
attempt_limit: 3

.github/workflows/darwin-tests.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ jobs:
7070
7171
- uses: Wandalen/wretry.action@v1.3.0
7272
name: Bootstrap cache
73-
timeout-minutes: 20
73+
continue-on-error: true
74+
timeout-minutes: 10
7475
with:
7576
action: buildjet/cache@v3
7677
attempt_limit: 3

.github/workflows/darwin.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ jobs:
5353

5454
- uses: Wandalen/wretry.action@v1.3.0
5555
name: Bootstrap cache
56-
timeout-minutes: 20
56+
continue-on-error: true
57+
timeout-minutes: 10
5758
with:
5859
action: buildjet/cache@v3
5960
attempt_limit: 3

.github/workflows/examples-ameba.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ jobs:
5454
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform ameba
5555
- uses: Wandalen/wretry.action@v1.3.0
5656
name: Bootstrap cache
57-
timeout-minutes: 20
57+
continue-on-error: true
58+
timeout-minutes: 10
5859
with:
5960
action: buildjet/cache@v3
6061
attempt_limit: 3

.github/workflows/examples-asr.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform asr
5353
- uses: Wandalen/wretry.action@v1.3.0
5454
name: Bootstrap cache
55-
timeout-minutes: 20
55+
continue-on-error: true
56+
timeout-minutes: 10
5657
with:
5758
action: buildjet/cache@v3
5859
attempt_limit: 3

.github/workflows/examples-bouffalolab.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ jobs:
6161

6262
- uses: Wandalen/wretry.action@v1.3.0
6363
name: Bootstrap cache
64+
continue-on-error: true
6465
timeout-minutes: 20
6566
with:
6667
action: buildjet/cache@v3

.github/workflows/examples-cc13x2x7_26x2x7.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ jobs:
6464

6565
- uses: Wandalen/wretry.action@v1.3.0
6666
name: Bootstrap cache
67-
timeout-minutes: 20
67+
continue-on-error: true
68+
timeout-minutes: 10
6869
with:
6970
action: buildjet/cache@v3
7071
attempt_limit: 3

.github/workflows/examples-cc32xx.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262

6363
- uses: Wandalen/wretry.action@v1.3.0
6464
name: Bootstrap cache
65-
timeout-minutes: 20
65+
continue-on-error: true
66+
timeout-minutes: 10
6667
with:
6768
action: buildjet/cache@v3
6869
attempt_limit: 3

.github/workflows/examples-efr32.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767

6868
- uses: Wandalen/wretry.action@v1.3.0
6969
name: Bootstrap cache
70+
continue-on-error: true
7071
timeout-minutes: 20
7172
with:
7273
action: buildjet/cache@v3

.github/workflows/examples-esp32.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161

6262
- uses: Wandalen/wretry.action@v1.3.0
6363
name: Bootstrap cache
64-
timeout-minutes: 20
64+
continue-on-error: true
65+
timeout-minutes: 10
6566
with:
6667
action: buildjet/cache@v3
6768
attempt_limit: 3
@@ -184,7 +185,8 @@ jobs:
184185

185186
- uses: Wandalen/wretry.action@v1.3.0
186187
name: Bootstrap cache
187-
timeout-minutes: 20
188+
continue-on-error: true
189+
timeout-minutes: 10
188190
with:
189191
action: buildjet/cache@v3
190192
attempt_limit: 3

.github/workflows/examples-infineon.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161

6262
- uses: Wandalen/wretry.action@v1.3.0
6363
name: Bootstrap cache
64-
timeout-minutes: 20
64+
continue-on-error: true
65+
timeout-minutes: 10
6566
with:
6667
action: buildjet/cache@v3
6768
attempt_limit: 3

.github/workflows/examples-k32w.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ jobs:
6363

6464
- uses: Wandalen/wretry.action@v1.3.0
6565
name: Bootstrap cache
66-
timeout-minutes: 20
66+
continue-on-error: true
67+
timeout-minutes: 10
6768
with:
6869
action: buildjet/cache@v3
6970
attempt_limit: 3

.github/workflows/examples-linux-arm.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161

6262
- uses: Wandalen/wretry.action@v1.3.0
6363
name: Bootstrap cache
64-
timeout-minutes: 20
64+
continue-on-error: true
65+
timeout-minutes: 10
6566
with:
6667
action: buildjet/cache@v3
6768
attempt_limit: 3

.github/workflows/examples-linux-imx.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ jobs:
5353

5454
- uses: Wandalen/wretry.action@v1.3.0
5555
name: Bootstrap cache
56-
timeout-minutes: 20
56+
continue-on-error: true
57+
timeout-minutes: 10
5758
with:
5859
action: buildjet/cache@v3
5960
attempt_limit: 3

.github/workflows/examples-linux-standalone.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161

6262
- uses: Wandalen/wretry.action@v1.3.0
6363
name: Bootstrap cache
64-
timeout-minutes: 20
64+
continue-on-error: true
65+
timeout-minutes: 10
6566
with:
6667
action: buildjet/cache@v3
6768
attempt_limit: 3

.github/workflows/examples-mbed.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ jobs:
7777

7878
- uses: Wandalen/wretry.action@v1.3.0
7979
name: Bootstrap cache
80-
timeout-minutes: 20
80+
continue-on-error: true
81+
timeout-minutes: 10
8182
with:
8283
action: buildjet/cache@v3
8384
attempt_limit: 3

.github/workflows/examples-mw320.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ jobs:
6363

6464
- uses: Wandalen/wretry.action@v1.3.0
6565
name: Bootstrap cache
66-
timeout-minutes: 20
66+
continue-on-error: true
67+
timeout-minutes: 10
6768
with:
6869
action: buildjet/cache@v3
6970
attempt_limit: 3

.github/workflows/examples-nrfconnect.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ jobs:
7676

7777
- uses: Wandalen/wretry.action@v1.3.0
7878
name: Bootstrap cache
79-
timeout-minutes: 20
79+
continue-on-error: true
80+
timeout-minutes: 10
8081
with:
8182
action: buildjet/cache@v3
8283
attempt_limit: 3

.github/workflows/examples-openiotsdk.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ jobs:
6666

6767
- uses: Wandalen/wretry.action@v1.3.0
6868
name: Bootstrap cache
69-
timeout-minutes: 20
69+
continue-on-error: true
70+
timeout-minutes: 10
7071
with:
7172
action: buildjet/cache@v3
7273
attempt_limit: 3

.github/workflows/examples-qpg.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ jobs:
6363

6464
- uses: Wandalen/wretry.action@v1.3.0
6565
name: Bootstrap cache
66-
timeout-minutes: 20
66+
continue-on-error: true
67+
timeout-minutes: 10
6768
with:
6869
action: buildjet/cache@v3
6970
attempt_limit: 3

.github/workflows/examples-telink.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262

6363
- uses: Wandalen/wretry.action@v1.3.0
6464
name: Bootstrap cache
65-
timeout-minutes: 20
65+
continue-on-error: true
66+
timeout-minutes: 10
6667
with:
6768
action: buildjet/cache@v3
6869
attempt_limit: 3

.github/workflows/examples-tizen.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ jobs:
5656

5757
- uses: Wandalen/wretry.action@v1.3.0
5858
name: Bootstrap cache
59-
timeout-minutes: 20
59+
continue-on-error: true
60+
timeout-minutes: 10
6061
with:
6162
action: buildjet/cache@v3
6263
attempt_limit: 3

.github/workflows/full-android.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767

6868
- uses: Wandalen/wretry.action@v1.3.0
6969
name: Bootstrap cache
70-
timeout-minutes: 20
70+
continue-on-error: true
71+
timeout-minutes: 10
7172
with:
7273
action: buildjet/cache@v3
7374
attempt_limit: 3

.github/workflows/fuzzing-build.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ jobs:
5858
5959
- uses: Wandalen/wretry.action@v1.3.0
6060
name: Bootstrap cache
61-
timeout-minutes: 20
61+
continue-on-error: true
62+
timeout-minutes: 10
6263
with:
6364
action: buildjet/cache@v3
6465
attempt_limit: 3
@@ -122,7 +123,8 @@ jobs:
122123
123124
- uses: Wandalen/wretry.action@v1.3.0
124125
name: Bootstrap cache
125-
timeout-minutes: 20
126+
continue-on-error: true
127+
timeout-minutes: 10
126128
with:
127129
action: buildjet/cache@v3
128130
attempt_limit: 3

.github/workflows/java-tests.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161
6262
- uses: Wandalen/wretry.action@v1.3.0
6363
name: Bootstrap cache
64-
timeout-minutes: 20
64+
continue-on-error: true
65+
timeout-minutes: 10
6566
with:
6667
action: buildjet/cache@v3
6768
attempt_limit: 3

.github/workflows/lint.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux
6262
- uses: Wandalen/wretry.action@v1.3.0
6363
name: Bootstrap cache
64-
timeout-minutes: 20
64+
continue-on-error: true
65+
timeout-minutes: 10
6566
with:
6667
action: buildjet/cache@v3
6768
attempt_limit: 3

.github/workflows/qemu.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ jobs:
5959

6060
- uses: Wandalen/wretry.action@v1.3.0
6161
name: Bootstrap cache
62-
timeout-minutes: 20
62+
continue-on-error: true
63+
timeout-minutes: 10
6364
with:
6465
action: buildjet/cache@v3
6566
attempt_limit: 3
@@ -127,7 +128,8 @@ jobs:
127128

128129
- uses: Wandalen/wretry.action@v1.3.0
129130
name: Bootstrap cache
130-
timeout-minutes: 20
131+
continue-on-error: true
132+
timeout-minutes: 10
131133
with:
132134
action: buildjet/cache@v3
133135
attempt_limit: 3

0 commit comments

Comments
 (0)