From eb71510bdbf0b5a7c10fa452d285707011dc3f31 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 4 Feb 2022 20:49:15 -0500 Subject: [PATCH] use failfast so we can see all the broken --- .github/workflows/build-docker-images.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-docker-images.yml b/.github/workflows/build-docker-images.yml index 8c2cb4fb..c6a13704 100644 --- a/.github/workflows/build-docker-images.yml +++ b/.github/workflows/build-docker-images.yml @@ -23,6 +23,7 @@ jobs: build: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: IMAGE: - {TAG_NAME: "cryptography-runner-rhel8", DOCKERFILE_PATH: "runners/rhel8"} @@ -70,6 +71,7 @@ jobs: build_linux_aarch64: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: IMAGE: - {TAG_NAME: "cryptography-manylinux2014_aarch64", DOCKERFILE_PATH: "cryptography-linux", BUILD_ARGS: "-f cryptography-linux/Dockerfile-linux --build-arg PYCA_RELEASE=manylinux2014_aarch64"}