From: Nikos Mavrogiannopoulos Date: Fri, 6 Nov 2015 14:02:51 +0000 (+0100) Subject: .gitlab-ci.yml: use static libasan X-Git-Tag: gnutls_3_5_0~602 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83c332ce00c79ff60811006e87dbfce77bccd9bd;p=thirdparty%2Fgnutls.git .gitlab-ci.yml: use static libasan This prevents issues with tests which use LD_PRELOAD. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 69e64a855a..a640033ea5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ Build minimal: - tags Build and Check with valgrind: script: - - git submodule update --init && make autoreconf && LDFLAGS="-L/usr/local/lib" ./configure + - git submodule update --init && make autoreconf && ./configure --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4 - cat tests/test-suite.log tags: @@ -23,7 +23,7 @@ Build and Check with valgrind: Build and Check with asan: script: - git submodule update --init && make autoreconf &&CFLAGS="-fsanitize=address -g - -O2" LDFLAGS="-lasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves + -O2" LDFLAGS="-static-libasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves && make -j4 && make check -j4 - cat tests/test-suite.log tags: