diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-02-27 22:23:34 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-02-27 22:23:34 +0100 |
commit | 0919e73e9a79c98ff9f2be1b4e9bf665fa928295 (patch) | |
tree | 854b2210a6c1e929ad03ba4f41a37c4c9e8019a1 /.gitlab-ci.yml | |
parent | bbaef09e45b57c783e26793ba6eb6b2e6a8a5226 (diff) | |
download | gnutls-0919e73e9a79c98ff9f2be1b4e9bf665fa928295.tar.gz |
.gitlab-ci.yml: asan and ubsan include the suite/
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
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: |