Skip to content

Commit 65eb17c

Browse files
committed
disable fail-fast on matrix jobs
1 parent 182c35b commit 65eb17c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
test-linux-x86:
1212
runs-on: ubuntu-latest
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
include:
1617
- platformflags: ""
@@ -24,12 +25,14 @@ jobs:
2425
- uses: actions/checkout@v2
2526
- name: install multilib
2627
run: sudo apt-get install --no-install-recommends -y gcc-multilib g++-multilib
28+
if: ${{ matrix.name == 'i386' }}
2729
- name: make
2830
run: make && make test
2931

3032
test-linux-arm:
3133
runs-on: ubuntu-latest
3234
strategy:
35+
fail-fast: false
3336
matrix:
3437
include:
3538
- arch: arm
@@ -54,6 +57,7 @@ jobs:
5457
test-windows:
5558
runs-on: windows-2019
5659
strategy:
60+
fail-fast: false
5761
matrix:
5862
platform: [x86, x64, ARM, ARM64]
5963
include:
@@ -72,3 +76,4 @@ jobs:
7276
- name: test
7377
if: ${{ matrix.native == 'yes' }}
7478
run: vs2019\${{matrix.folder}}\Debug\test.exe
79+

0 commit comments

Comments
 (0)