diff options
author | Sam Clegg <sbc@chromium.org> | 2022-10-06 15:48:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 22:48:47 +0000 |
commit | eca3519d738bcd245d46915e9c373c6d58f5b20b (patch) | |
tree | 128a7799af87ce0ee97d2413be6ebf9e5241d5e0 /.github | |
parent | 5ff1faaadf177c578e8c1a7949bae092c100eb84 (diff) | |
download | wabt-eca3519d738bcd245d46915e9c373c6d58f5b20b.tar.gz wabt-eca3519d738bcd245d46915e9c373c6d58f5b20b.tar.bz2 wabt-eca3519d738bcd245d46915e9c373c6d58f5b20b.zip |
Fix WITH_WASI build (#2017)
Also, make sure we test this configuration.
Fixes: #2016
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 47824eba..4ad7332d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,7 @@ jobs: - name: mkdir run: mkdir -p out - name: cmake - run: cmake .. -G Ninja -DWERROR=ON -Werror=dev + run: cmake .. -G Ninja -DWITH_WASI=ON -DWERROR=ON -Werror=dev working-directory: out if: matrix.os != 'windows-latest' - name: cmake (windows) |