Skip to content

Commit 1125130

Browse files
committed
CI: don't abandon other runs just because one fails.
This significantly slows down the cycle when we have flakes (it's good if the tree is completely broken though!). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent fff054f commit 1125130

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ jobs:
249249
needs:
250250
- compile
251251
strategy:
252-
fail-fast: true
252+
fail-fast: false
253253
matrix:
254254
include:
255255
- NAME: gcc
@@ -356,7 +356,7 @@ jobs:
356356
needs:
357357
- compile
358358
strategy:
359-
fail-fast: true
359+
fail-fast: false
360360
matrix:
361361
include:
362362
- NAME: Valgrind (01/10)
@@ -425,7 +425,7 @@ jobs:
425425
needs:
426426
- compile
427427
strategy:
428-
fail-fast: true
428+
fail-fast: false
429429
matrix:
430430
include:
431431
- NAME: ASan/UBSan (01/10)
@@ -485,7 +485,7 @@ jobs:
485485
runs-on: ubuntu-22.04
486486
timeout-minutes: 30
487487
strategy:
488-
fail-fast: true
488+
fail-fast: false
489489
env:
490490
VALGRIND: 0
491491
GENERATE_EXAMPLES: 1
@@ -532,7 +532,7 @@ jobs:
532532
needs:
533533
- compile
534534
strategy:
535-
fail-fast: true
535+
fail-fast: false
536536
matrix:
537537
include:
538538
- NAME: clang

0 commit comments

Comments
 (0)