Enable ASan for Travis CI testing
This commit is contained in:
parent
b858480f0d
commit
0cbb7089f6
13
.travis.yml
13
.travis.yml
|
@ -10,7 +10,6 @@ compiler:
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
- clang-cfi
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- RUNTIME=libicu
|
- RUNTIME=libicu
|
||||||
|
@ -42,11 +41,11 @@ script:
|
||||||
# clang-3.4 doesn't know CFI yet.
|
# clang-3.4 doesn't know CFI yet.
|
||||||
# The only chance with Travis-CI is to switch to docker and use Ubuntu 16.04 or whatever.
|
# The only chance with Travis-CI is to switch to docker and use Ubuntu 16.04 or whatever.
|
||||||
# - if [[ $CC == "gcc" ]]; then CFI=""; else CFI="--enable-cfi"; fi
|
# - if [[ $CC == "gcc" ]]; then CFI=""; else CFI="--enable-cfi"; fi
|
||||||
- ./configure $CFI && make -j4 && make check -j4 || (cat config.log; ls -la /usr/lib/*gold*)
|
- ./configure $CFI --enable-asan && make -j4 && make check -j4
|
||||||
- ./configure $CFI --enable-runtime=$RUNTIME --enable-builtin=libicu && make clean && make -j4 && make check -j4
|
- ./configure $CFI --enable-runtime=$RUNTIME --enable-builtin=libicu --enable-asan && make clean && make -j4 && make check -j4
|
||||||
- ./configure $CFI --enable-runtime=$RUNTIME --enable-builtin=libidn2 && make clean && make -j4 && make check -j4
|
- ./configure $CFI --enable-runtime=$RUNTIME --enable-builtin=libidn2 --enable-asan && make clean && make -j4 && make check -j4
|
||||||
- ./configure $CFI --enable-runtime=$RUNTIME --enable-builtin=libidn && make clean && make -j4 && make check -j4
|
- ./configure $CFI --enable-runtime=$RUNTIME --enable-builtin=libidn --enable-asan && make clean && make -j4 && make check -j4
|
||||||
- ./configure $CFI --enable-runtime=$RUNTIME --disable-builtin && make clean && make -j4 && make check -j4
|
- ./configure $CFI --enable-runtime=$RUNTIME --disable-builtin --enable-asan && make clean && make -j4 && make check -j4
|
||||||
- ./configure --enable-gtk-doc && make -j4 && make check -j4
|
- ./configure --enable-gtk-doc && make clean && make -j4
|
||||||
- make distcheck
|
- make distcheck
|
||||||
- if [[ $CC == "gcc" && $RUNTIME == "libicu" ]]; then ./.travis_coveralls.sh; fi
|
- if [[ $CC == "gcc" && $RUNTIME == "libicu" ]]; then ./.travis_coveralls.sh; fi
|
||||||
|
|
Loading…
Reference in New Issue