From: Nikos Mavrogiannopoulos Date: Sat, 27 Feb 2016 21:23:34 +0000 (+0100) Subject: .gitlab-ci.yml: asan and ubsan include the suite/ X-Git-Tag: gnutls_3_5_0~300 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0919e73e9a79c98ff9f2be1b4e9bf665fa928295;p=thirdparty%2Fgnutls.git .gitlab-ci.yml: asan and ubsan include the suite/ --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 37d44fc0e0..c9487f9b39 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ Compile minimal library: - tags Build and Check with asan: script: - - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c &&CFLAGS="-fsanitize=address -g + - git submodule update --init && make autoreconf && CFLAGS="-fsanitize=address -g -O2" LDFLAGS="-static-libasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile && make -j4 && make check -j4 tags: @@ -23,7 +23,7 @@ Build and Check with asan: - tags Build and Check with ubsan: script: - - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c &&CFLAGS="-fsanitize=undefined -g + - git submodule update --init && make autoreconf && CFLAGS="-fsanitize=undefined -g -O2" LDFLAGS="-static-libubsan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile && make -j4 && make check -j4 tags: