diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-06-29 23:09:49 +0200 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-06-29 23:15:31 +0200 |
| commit | 604551eb2d106d64eb9159bc17aa5c57bbca0ca4 (patch) | |
| tree | 27ca9e57f7091af156f86f01311928567d01e4a9 /.github/workflows | |
| parent | 476d0087c8d47102c23cf6de71eb4014b9a7b6b2 (diff) | |
wasi: make the demo run on wasi and run it in CI
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9c453331..94f6bef12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,7 +97,7 @@ jobs: - name: Download LLVM (MacOS ARM) if: matrix.os == 'macos-14' run: | - brew install llvm@17 + brew install llvm@17 wasmtime echo "/opt/homebrew/opt/llvm@17/bin" >> $GITHUB_PATH - name: Build Odin @@ -147,6 +147,12 @@ jobs: run: ./odin check examples/all -vet -strict-style -target:openbsd_amd64 if: matrix.os == 'ubuntu-latest' + - name: Run demo on WASI WASM32 + run: | + ./odin build examples/demo -target:wasi_wasm32 -vet -strict-style -out:demo.wasm + wasmtime ./demo.wasm + if: matrix.os == 'macos-14' + build_windows: name: Windows Build, Check, and Test runs-on: windows-2022 |