Skip to content

Commit d8d9173

Browse files
committed
ci: continue when one job fails in matrix
GitHub Actions was formerly cancelling the matrix on a single job failure.
1 parent 35514aa commit d8d9173

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/native-image-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
build:
77
runs-on: ${{ matrix.os }}
88
strategy:
9+
fail-fast: false
910
matrix:
1011
os: [ windows-latest, ubuntu-latest, macos-latest ]
1112
graal-java: [ 11 ]

.github/workflows/unit-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
build:
77
runs-on: ${{ matrix.os }}
88
strategy:
9+
fail-fast: false
910
matrix:
1011
os: [ windows-latest, ubuntu-latest, macos-latest ]
1112
java: [ '8', '11', '17' ]

0 commit comments

Comments
 (0)