Don't fail CI fast

This commit is contained in:
Chris Thrasher 2025-04-26 10:17:47 -06:00
parent edb6f80867
commit ec571515c8
No known key found for this signature in database
GPG Key ID: 56FB686C9DFC8E2C
5 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,7 @@ jobs:
name: Linux Ubuntu 22.04 Bazel build <GCC 11.2.0> name: Linux Ubuntu 22.04 Bazel build <GCC 11.2.0>
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
strategy: strategy:
fail-fast: false
matrix: matrix:
compilation_mode: [fastbuild, dbg, opt] compilation_mode: [fastbuild, dbg, opt]

View File

@ -7,6 +7,7 @@ jobs:
name: meson ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}} name: meson ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
strategy: strategy:
fail-fast: false
matrix: matrix:
cxx: cxx:
- g++-11 - g++-11

View File

@ -6,6 +6,7 @@ jobs:
build: build:
runs-on: macos-14 runs-on: macos-14
strategy: strategy:
fail-fast: false
matrix: matrix:
cxx: cxx:
- clang++ - clang++

View File

@ -10,6 +10,7 @@ jobs:
# the Intel based images for free to OSS projects. # the Intel based images for free to OSS projects.
runs-on: macos-13 runs-on: macos-13
strategy: strategy:
fail-fast: false
matrix: matrix:
cxx: cxx:
- clang++ - clang++

View File

@ -7,6 +7,7 @@ jobs:
name: ${{matrix.os}}, ${{matrix.std}}, ${{matrix.build_type}}, ${{matrix.platform}} name: ${{matrix.os}}, ${{matrix.std}}, ${{matrix.build_type}}, ${{matrix.platform}}
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
strategy: strategy:
fail-fast: false
matrix: matrix:
os: [windows-2019, windows-2022] os: [windows-2019, windows-2022]
platform: [Win32, x64] platform: [Win32, x64]