From 8cf3b60169033bf14824aeed1197f11e232cba0a Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 9 Aug 2021 14:34:55 +0000 Subject: [PATCH] Drop fail-fast in CI to run jobs even after another fails --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a710f37f..94eab836 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,8 @@ jobs: container: debian:bullseye env: TOOLCHAIN: stable + strategy: + fail-fast: false steps: - name: Install native Rust toolchain, Valgrind, and build utilitis run: | @@ -118,6 +120,8 @@ jobs: container: debian:bullseye env: TOOLCHAIN: stable + strategy: + fail-fast: false steps: - name: Install rust targets run: | @@ -205,6 +209,7 @@ jobs: include: - platform: macos-10.15 - platform: macos-11 + fail-fast: false runs-on: ${{ matrix.platform }} env: TOOLCHAIN: stable -- 2.30.2