summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-03-16 12:53:10 -0700
committerBen Smith <binji@chromium.org>2016-03-16 14:33:10 -0700
commite015670c4a0a27e68410a35e83b41fc2826f5fce (patch)
treec5aa15dbdb973b19d70ebf2e94daa91ae24e212c /scripts
parentb67d576de0a8345c0c2e79e7f18ab0d4bc9d5dc8 (diff)
downloadwabt-e015670c4a0a27e68410a35e83b41fc2826f5fce.tar.gz
wabt-e015670c4a0a27e68410a35e83b41fc2826f5fce.tar.bz2
wabt-e015670c4a0a27e68410a35e83b41fc2826f5fce.zip
update travis-build.sh for new Makefile changes
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis-build.sh6
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