Skip to content

Commit fbca1c7

Browse files
committed
[Java] Prevent suite cancellation upon a single job failure
1 parent edc1468 commit fbca1c7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
name: Java ${{ matrix.java }}
1717
runs-on: ubuntu-latest
1818
strategy:
19+
fail-fast: false
1920
matrix:
2021
java: [ '8', '11' ]
2122
steps:
@@ -44,6 +45,7 @@ jobs:
4445
name: C# ${{ matrix.dotnet }}
4546
runs-on: ubuntu-latest
4647
strategy:
48+
fail-fast: false
4749
matrix:
4850
dotnet: [ '2.2.103' ]
4951
env:
@@ -86,6 +88,7 @@ jobs:
8688
name: C++ GCC ${{ matrix.version }}
8789
runs-on: ubuntu-latest
8890
strategy:
91+
fail-fast: false
8992
matrix:
9093
version: [ '6', '7', '8', '9' ]
9194
env:
@@ -116,6 +119,7 @@ jobs:
116119
name: C++ Clang ${{ matrix.version }}
117120
runs-on: ubuntu-latest
118121
strategy:
122+
fail-fast: false
119123
matrix:
120124
version: [ '6.0', '7', '8', '9' ]
121125
env:
@@ -150,6 +154,7 @@ jobs:
150154
name: C++ Xcode ${{ matrix.version }} (macOS)
151155
runs-on: macOS-latest
152156
strategy:
157+
fail-fast: false
153158
matrix:
154159
version: [ '11.2.1' ]
155160
env:

0 commit comments

Comments
 (0)