diff options
author | Sam Clegg <sbc@chromium.org> | 2020-01-16 14:53:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-16 14:53:11 -0800 |
commit | 7c80d05e37dc02870c680869ae3f04ac6d9637ee (patch) | |
tree | 57645c67379d4e6ec49773b3494dc752ffcb5e68 /.github | |
parent | d663c80dcb627fed3e21cfa2b47465452a83a894 (diff) | |
download | wabt-7c80d05e37dc02870c680869ae3f04ac6d9637ee.tar.gz wabt-7c80d05e37dc02870c680869ae3f04ac6d9637ee.tar.bz2 wabt-7c80d05e37dc02870c680869ae3f04ac6d9637ee.zip |
Initial WASM C API implementation. (#1250)
All tests except `threads` pass.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7fa4b55d..1ea6dc43 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,5 +31,7 @@ jobs: run: cmake --build out - name: unittests run: cmake --build out --target run-unittests + - name: c-api-tests + run: cmake --build out --target run-c-api-tests - name: tests run: cmake --build out --target run-tests |