From e09fefd389c76b55d1366f979e782a1feb360f3a Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Wed, 30 Sep 2020 06:50:06 +1300 Subject: [PATCH] Dont fast fail testing so results are not hidden in matrix builds (#1286) --- .github/workflows/ci-docker.yml | 1 + .github/workflows/ci.yml | 2 ++ .github/workflows/release-dev.yml | 2 ++ .github/workflows/release.yml | 2 ++ 4 files changed, 7 insertions(+) diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml index 8036470f52..b1f2d70381 100644 --- a/.github/workflows/ci-docker.yml +++ b/.github/workflows/ci-docker.yml @@ -18,6 +18,7 @@ jobs: name: Build docker containers runs-on: ubuntu-latest strategy: + fail-fast: false matrix: arch: [amd64, armv7, aarch64] build_type: ["hassio", "docker"] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6b3c5566b..8136b0678e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,6 +44,7 @@ jobs: container: esphome/esphome-lint:latest # Split clang-tidy check into 4 jobs. Each one will check 1/4th of the .cpp files strategy: + fail-fast: false matrix: split: [1, 2, 3, 4] steps: @@ -107,6 +108,7 @@ jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: test: - test1 diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index 81c3a80b05..a416ccb4ca 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -41,6 +41,7 @@ jobs: container: esphome/esphome-lint:latest # Split clang-tidy check into 4 jobs. Each one will check 1/4th of the .cpp files strategy: + fail-fast: false matrix: split: [1, 2, 3, 4] steps: @@ -104,6 +105,7 @@ jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: test: - test1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7ac80355f2..912a618487 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,7 @@ jobs: container: esphome/esphome-lint:latest # Split clang-tidy check into 4 jobs. Each one will check 1/4th of the .cpp files strategy: + fail-fast: false matrix: split: [1, 2, 3, 4] steps: @@ -103,6 +104,7 @@ jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: test: - test1