Skip to content

Commit 9e10fe6

Browse files
author
Matthias Koeppe
committed
.github/workflows/ci-macos.yml: Build following stages even when some of the jobs failed
1 parent 4430e4c commit 9e10fe6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci-macos.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,30 +40,35 @@ jobs:
4040
with:
4141
stage: "2"
4242
needs: [stage-1]
43+
if: ${{ success() || failure() }}
4344

4445
stage-2-optional-0-o:
4546
uses: ./.github/workflows/macos.yml
4647
with:
4748
stage: "2-optional-0-o"
4849
needs: [stage-2]
50+
if: ${{ success() || failure() }}
4951

5052
stage-2-optional-p-z:
5153
uses: ./.github/workflows/macos.yml
5254
with:
5355
stage: "2-optional-p-z"
5456
needs: [stage-2-optional-0-o]
57+
if: ${{ success() || failure() }}
5558

5659
stage-2-experimental-0-o:
5760
uses: ./.github/workflows/macos.yml
5861
with:
5962
stage: "2-optional-0-o"
6063
needs: [stage-2-optional-p-z]
64+
if: ${{ success() || failure() }}
6165

6266
stage-2-experimental-p-z:
6367
uses: ./.github/workflows/macos.yml
6468
with:
6569
stage: "2-experimental-p-z"
6670
needs: [stage-2-experimental-0-o]
71+
if: ${{ success() || failure() }}
6772

6873
dist:
6974

0 commit comments

Comments
 (0)