summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2015-12-31 20:16:37 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2015-12-31 20:18:35 +0200
commit572679da0b807caad03c461c63d83c3e7792a4b0 (patch)
treea0341e6b859beaca96fd845457d5cffb8a547e12
parent29034d2c88773f7a54c1d55d26af04c7610d833b (diff)
downloadgnutls-572679da0b807caad03c461c63d83c3e7792a4b0.tar.gz
.gitlab-ci.yml: optimized build process
That is, in slow asan and valgrind builds don't check the full test suite.
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 25b20f35c2..d123c4e71f 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 &&CFLAGS="-fsanitize=address -g
+ - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c &&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:
@@ -63,7 +63,7 @@ Build and Check for windows in separate build dir:
- tags
Build and Check with valgrind:
script:
- - git submodule update --init && make autoreconf && ./configure
+ - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c && ./configure
--disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4
tags:
- x86-64