File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 1515 runs-on : ${{ matrix.os }}
1616 strategy :
1717 matrix :
18- os : [ubuntu-20.04, macos-14, windows-latest]
18+ include :
19+ - os : ubuntu-20.04
20+ arch : x86_64
21+ name : x86-ubuntu
22+ - os : ubuntu-24.04-arm64
23+ arch : aarch64
24+ name : aarch64-ubuntu
25+ - os : macos-14
26+ arch : x86_64
27+ name : macos-14
28+ - os : windows-latest
29+ arch : x86_64
30+ name : windows-latest
1931 defaults :
2032 run :
2133 shell : bash
2941
3042 - name : install ninja (linux)
3143 run : sudo apt-get install ninja-build
32- if : startsWith (matrix.os, 'ubuntu- ')
44+ if : contains (matrix.os, 'ubuntu')
3345
3446 - name : install ninja (osx)
3547 run : brew install ninja
6072
6173 - uses : ./.github/actions/release-archive
6274 with :
63- os : ${{ matrix.os }}
75+ os : ${{ matrix.name }}
6476 upload_to_release : true
6577
6678 build-wasi :
You can’t perform that action at this time.
0 commit comments