From 7b440dd15b82435273b8919d540ca7ea5f2a8bad Mon Sep 17 00:00:00 2001 From: Andrea Peruffo Date: Thu, 2 Sep 2021 15:04:46 +0100 Subject: [PATCH] Avoid fail-fast in nightly builds (#30625) * Avoid fail-fast in nightly builds * one more --- .github/workflows/binary-compatibility-checks.yml | 1 + .github/workflows/nightly-builds.yml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/binary-compatibility-checks.yml b/.github/workflows/binary-compatibility-checks.yml index 50c140a205..ea6f91f1a0 100644 --- a/.github/workflows/binary-compatibility-checks.yml +++ b/.github/workflows/binary-compatibility-checks.yml @@ -14,6 +14,7 @@ jobs: runs-on: ubuntu-20.04 if: github.repository == 'akka/akka' strategy: + fail-fast: false matrix: # The versions of scala specified here are only used as `-Dakka.build.scalaVersion=...` # which ignores the PATCH portion of the version id. These Scala versions don't need diff --git a/.github/workflows/nightly-builds.yml b/.github/workflows/nightly-builds.yml index ff80b7f9bf..a8b3cffee5 100644 --- a/.github/workflows/nightly-builds.yml +++ b/.github/workflows/nightly-builds.yml @@ -65,6 +65,7 @@ jobs: runs-on: ubuntu-20.04 if: github.repository == 'akka/akka' strategy: + fail-fast: false matrix: command: - akka-cluster/test akka-distributed-data/test akka-cluster-tools/test akka-cluster-metrics/test @@ -101,6 +102,7 @@ jobs: runs-on: ubuntu-20.04 if: github.repository == 'akka/akka' strategy: + fail-fast: false matrix: # No need to specify the full Scala version. Only the Scala # binary version is required and Akka build will set the right @@ -182,6 +184,7 @@ jobs: #if: github.repository == 'akka/akka' if: ${{ false }} strategy: + fail-fast: false matrix: command: - akka-cluster/test akka-distributed-data/test akka-cluster-tools/test akka-cluster-metrics/test