gh actions: don't fail fast (#1183)

by default, if any run of a matrix strategy fails, the others are
stopped immediately. In our case it means that if gcc fails, the
clang build will also fail, which is not what we want.

Change fail-fast to false so that if gcc fails, we can still see if
clang also fails or if it is a gcc specific problem or vice versa.
This commit is contained in:
Dennis Brakhane
2025-07-23 08:13:18 +02:00
committed by GitHub
parent 0e876c3eae
commit b9527bf60a
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -83,6 +83,7 @@ jobs:
runs-on: ubuntu-latest
name: linux (${{ matrix.cc }})
strategy:
fail-fast: false
matrix:
include:
- cc: gcc
+1
View File
@@ -84,6 +84,7 @@ jobs:
runs-on: ubuntu-latest
name: linux (${{ matrix.cc }})
strategy:
fail-fast: false
matrix:
include:
- cc: gcc