summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2018-03-01 22:58:39 +0800
committerMatt Johnston <matt@ucc.asn.au>2018-03-01 22:58:39 +0800
commit294e98c39731d1a2bae9f45894e90844bcdf0d50 (patch)
tree2f66215e64125cdfef74cab7429ebd000b930dc8 /.travis.yml
parentc1a2dcb25d549cf1a3a4607bb8a95838175962f6 (diff)
don't try clang-5.0
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 85153c9..2a46f37 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,7 +20,8 @@ matrix:
- os: osx
compiler: clang
env: WEXTRAFLAGS=""
- - env: DO_FUZZ=1 CONFIGURE_FLAGS="--enable-fuzz --disable-harden" EXTRACFLAGS=-fsanitize=address CC="clang-5.0" LDFLAGS=-fsanitize=address
+ - env: DO_FUZZ=1 CONFIGURE_FLAGS="--enable-fuzz --disable-harden" EXTRACFLAGS=-fsanitize=address LDFLAGS=-fsanitize=address
+ compiler: clang
# container-based builds
sudo: false
@@ -32,7 +33,6 @@ addons:
- libtomcrypt-dev
- libtommath-dev
- mercurial
- - clang-5.0
before_install:
- if [ "$CC" = "clang" ]; then WEXTRAFLAGS="$WEXTRAFLAGS -Wno-error=incompatible-library-redeclaration" ; fi # workaround
@@ -41,7 +41,7 @@ install:
- autoconf && autoheader && ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS $EXTRACFLAGS" --prefix="$HOME/inst"
- if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi
- make -j3
- - test -z $DO_FUZZ || make fuzzstandalone
+ - test -z $DO_FUZZ || make fuzzstandalone
# avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093)
- make install