diff options
author | Alon Zakai <azakai@google.com> | 2020-03-10 11:49:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-10 11:49:29 -0700 |
commit | 49e31f2034d9532f29704be3039829aa201556a0 (patch) | |
tree | 92c0a3a9a006ee8a0feed08b22ccfd9ed3e9e2b2 | |
parent | 5d7248b1613017af4f26d176e6ee725210b0fa88 (diff) | |
download | binaryen-49e31f2034d9532f29704be3039829aa201556a0.tar.gz binaryen-49e31f2034d9532f29704be3039829aa201556a0.tar.bz2 binaryen-49e31f2034d9532f29704be3039829aa201556a0.zip |
Use emcmake on CI (#2686)
Switch to emcmake from emconfigure, which emscripten has made
a requirement meanwhile.
-rwxr-xr-x | travis-emcc-tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/travis-emcc-tests.sh b/travis-emcc-tests.sh index 93322dc89..ac10118f8 100755 --- a/travis-emcc-tests.sh +++ b/travis-emcc-tests.sh @@ -3,7 +3,7 @@ set -e echo "travis-test build:wasm" -emconfigure cmake -DCMAKE_BUILD_TYPE=Release +emcmake cmake -DCMAKE_BUILD_TYPE=Release emmake make -j4 binaryen_wasm echo "travis-test test:wasm" python3 -m scripts.test.binaryenjs wasm |