diff options
-rw-r--r-- | .github/workflows/ci-linux.yml | 1 | ||||
-rw-r--r-- | .github/workflows/ci-macos.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 9d3365e53..05419462d 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -18,6 +18,7 @@ jobs: - name: Run test-build run: ./tools/test-build ${{ matrix.compiler }} strategy: + fail-fast: false matrix: compiler: - clang++ diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index c3cd04591..dd5208812 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -24,6 +24,7 @@ jobs: - name: Run test-build run: ./tools/test-build c++ strategy: + fail-fast: false matrix: standard: - gnu++98 |