Skip to content

Commit 14bdcd5

Browse files
committed
github: disable fail-fast on nightlies
Disable fail-fast which cancels the other matrix builds if one fails. The canceled jobs make it more difficult to find the actual failure.
1 parent b751e87 commit 14bdcd5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/nightlies.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
jobs:
99
tests:
1010
strategy:
11+
fail-fast: false
1112
matrix:
1213
go: [ '1.23', '1.24' ]
1314
uses: ./.github/workflows/tests.yaml
@@ -18,6 +19,7 @@ jobs:
1819

1920
s390x:
2021
strategy:
22+
fail-fast: false
2123
matrix:
2224
go: [ '1.23', '1.24' ]
2325
uses: ./.github/workflows/s390x.yaml
@@ -28,6 +30,7 @@ jobs:
2830

2931
stress:
3032
strategy:
33+
fail-fast: false
3134
matrix:
3235
go: [ '1.23', '1.24' ]
3336
uses: ./.github/workflows/stress.yaml
@@ -38,6 +41,7 @@ jobs:
3841

3942
instrumented:
4043
strategy:
44+
fail-fast: false
4145
matrix:
4246
go: [ '1.23', '1.24' ]
4347
uses: ./.github/workflows/instrumented.yaml

0 commit comments

Comments
 (0)