Skip to content

Commit 5980a90

Browse files
committed
fail-fast false
1 parent 4a49288 commit 5980a90

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

.github/workflows/testing.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,16 @@ jobs:
1818
- name: Harden Runner
1919
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
2020
with:
21-
egress-policy: audit
22-
# allowed-endpoints: >
23-
# azure.archive.ubuntu.com:80
24-
# esm.ubuntu.com:443
25-
# files.pythonhosted.org:443
26-
# github.com:443
27-
# motd.ubuntu.com:443
28-
# packages.microsoft.com:443
29-
# pypi.org:443
21+
disable-sudo: false
22+
egress-policy: block
23+
allowed-endpoints: >
24+
azure.archive.ubuntu.com:80
25+
esm.ubuntu.com:443
26+
files.pythonhosted.org:443
27+
github.com:443
28+
motd.ubuntu.com:443
29+
packages.microsoft.com:443
30+
pypi.org:443
3031
3132
- name: Checkout Repository
3233
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -51,9 +52,10 @@ jobs:
5152
needs: lint
5253
runs-on: ${{ matrix.os }}
5354
strategy:
55+
fail-fast: false
5456
matrix:
55-
os: [ ubuntu-latest, macos-latest ]
56-
build_type: [ Debug, Release ]
57+
os: [ "ubuntu-latest", "macos-latest" ]
58+
build_type: [ "Debug", "Release" ]
5759
steps:
5860
- name: Harden Runner
5961
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
@@ -91,7 +93,6 @@ jobs:
9193
9294
- name: Build
9395
id: build
94-
continue-on-error: true
9596
run: |
9697
cmake .
9798
cmake --build . --config ${{ matrix.build_type }} -j 3
@@ -107,6 +108,7 @@ jobs:
107108
needs: lint
108109
runs-on: ${{ matrix.os }}
109110
strategy:
111+
fail-fast: false
110112
matrix:
111113
os: [ ubuntu-latest, macos-latest, windows-latest ]
112114
build_type: [ Debug, Release ]
@@ -138,7 +140,6 @@ jobs:
138140

139141
- name: Build
140142
id: build
141-
continue-on-error: true
142143
run: |
143144
cmake .
144145
cmake --build . --config ${{ matrix.build_type }} -j 3

0 commit comments

Comments
 (0)