Skip to content

Commit 7e04c5a

Browse files
committed
Don't fail CI fast
1 parent 2ff8575 commit 7e04c5a

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

.github/workflows/linux-bazel-builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
name: Linux Ubuntu 22.04 Bazel build <GCC 11.2.0>
88
runs-on: ubuntu-22.04
99
strategy:
10+
fail-fast: false
1011
matrix:
1112
compilation_mode: [fastbuild, dbg, opt]
1213

.github/workflows/linux-meson-builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
name: meson ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
88
runs-on: ubuntu-22.04
99
strategy:
10+
fail-fast: false
1011
matrix:
1112
cxx:
1213
- g++-11

.github/workflows/mac-builds-m1.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: macos-14
88
strategy:
9+
fail-fast: false
910
matrix:
1011
cxx:
1112
- clang++

.github/workflows/mac-builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
# the Intel based images for free to OSS projects.
1111
runs-on: macos-13
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
cxx:
1516
- clang++

.github/workflows/windows-simple-builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
name: ${{matrix.os}}, ${{matrix.std}}, ${{matrix.build_type}}, ${{matrix.platform}}
88
runs-on: ${{matrix.os}}
99
strategy:
10+
fail-fast: false
1011
matrix:
1112
os: [windows-2019, windows-2022]
1213
platform: [Win32, x64]

0 commit comments

Comments
 (0)