diff options
author | Ben Smith <binji@chromium.org> | 2016-03-16 12:53:10 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-03-16 14:33:10 -0700 |
commit | e015670c4a0a27e68410a35e83b41fc2826f5fce (patch) | |
tree | c5aa15dbdb973b19d70ebf2e94daa91ae24e212c /scripts | |
parent | b67d576de0a8345c0c2e79e7f18ab0d4bc9d5dc8 (diff) | |
download | wabt-e015670c4a0a27e68410a35e83b41fc2826f5fce.tar.gz wabt-e015670c4a0a27e68410a35e83b41fc2826f5fce.tar.bz2 wabt-e015670c4a0a27e68410a35e83b41fc2826f5fce.zip |
update travis-build.sh for new Makefile changes
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis-build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/travis-build.sh b/scripts/travis-build.sh index eb6ee9c7..c2d95ba7 100755 --- a/scripts/travis-build.sh +++ b/scripts/travis-build.sh @@ -23,15 +23,15 @@ source ${SCRIPT_DIR}/travis-common.sh # Build without flex/bison to test prebuilt C sources if [ ${CC} = "gcc" ]; then - make gcc-debug-no-flex-bison-sexpr-wasm + make gcc-debug-no-flex-bison fi for COMPILER in ${COMPILERS}; do for BUILD_TYPE in ${BUILD_TYPES}; do - make ${COMPILER}-${BUILD_TYPE}-sexpr-wasm + make ${COMPILER}-${BUILD_TYPE} if [ ${COMPILER} = "clang" ]; then for SANITIZER in ${SANITIZERS}; do - make ${CC}-${BUILD_TYPE}-sexpr-wasm${SANITIZER} + make ${CC}-${BUILD_TYPE}{SANITIZER} done fi done |