Skip to content

Commit 54d588d

Browse files
authored
Add osx wasm jobs to ci (#101)
1 parent f20af56 commit 54d588d

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,24 @@ jobs:
181181

182182
emscripten_wasm:
183183

184-
runs-on: ubuntu-24.04
184+
runs-on: ${{ matrix.os }}
185185

186186
strategy:
187187
fail-fast: false
188188
matrix:
189-
emsdk_ver: ["3.1.45"]
190-
micromamba_shell_init: ["bash"]
189+
include:
190+
- name: ubu24
191+
os: ubuntu-24.04
192+
emsdk_ver: "3.1.45"
193+
micromamba_shell_init: bash
194+
- name: osx13-x86
195+
os: macos-13
196+
emsdk_ver: "3.1.45"
197+
micromamba_shell_init: bash
198+
- name: osx14-arm
199+
os: macos-14
200+
emsdk_ver: "3.1.45"
201+
micromamba_shell_init: bash
191202

192203
steps:
193204
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)