From 48fd5ba54406c1140de7123d48d65f117b2053e7 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Wed, 16 Dec 2020 13:30:33 +0100 Subject: [PATCH 1/1] ci: Don't fail fast in matrix builds We'd like to see the build results for all CI platforms, and not bail out if a single one fails. This is particular useful when debugging build issues that only happen for specific configurations. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e533fc12..6dab044e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,6 +17,7 @@ jobs: runs-on: ubuntu-latest container: quassel/quassel-build-env:${{ matrix.dist }} strategy: + fail-fast: false matrix: dist: [ debian-stable, debian-testing, ubuntu-xenial, ubuntu-bionic, ubuntu-eoan, ubuntu-focal ] cxx: [ gcc, clang++ ] -- 2.20.1