Skip to content

Commit 4da83cd

Browse files
committed
Fix workflow
1 parent c917cd8 commit 4da83cd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,19 @@ on:
77
branches: [ master ]
88

99
jobs:
10-
test-amd64:
11-
runs-on: ubuntu-latest
12-
steps:
13-
- uses: actions/checkout@v2
14-
- name: make
15-
run: make && make test
16-
10+
1711
test-linux-x86:
1812
runs-on: ubuntu-latest
1913
strategy:
2014
matrix:
21-
platformflags: ["", "-m32"]
15+
include:
16+
- platformflags: ""
17+
name: "AMD64"
18+
- platformflags: -m32
19+
name: "i386"
20+
name: test-linux-x86 (${{matrix.name}})
2221
env:
23-
PLATFORMFLAGS: ${{platformflags}}
22+
PLATFORMFLAGS: ${{matrix.platformflags}}
2423
steps:
2524
- uses: actions/checkout@v2
2625
- name: install multilib
@@ -39,6 +38,7 @@ jobs:
3938
- arch: aarch64
4039
emulator: qemu-aarch64
4140
abi: aarch64-linux-gnu
41+
name: test-linux-arm (${{matrix.arch}})
4242
env:
4343
PLATFORM_PREFIX: ${{matrix.abi}}-
4444
EMULATOR: ${{matrix.emulator}}

0 commit comments

Comments
 (0)