From: Nikos Mavrogiannopoulos Date: Sun, 13 Dec 2015 11:34:47 +0000 (+0100) Subject: .gitlab-ci.yml: valgrind build was moved at the end as it is the slowest build X-Git-Tag: gnutls_3_5_0~488 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da7edadb6ff6e440b38c7343cb4e447b7b22db9e;p=thirdparty%2Fgnutls.git .gitlab-ci.yml: valgrind build was moved at the end as it is the slowest build --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1b3031f9a1..25b20f35c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,15 +11,6 @@ Compile minimal library: - nettle3 except: - tags -Build and Check with valgrind: - script: - - git submodule update --init && make autoreconf && ./configure - --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4 - tags: - - x86-64 - - nettle3 - except: - - tags Build and Check with asan: script: - git submodule update --init && make autoreconf &&CFLAGS="-fsanitize=address -g @@ -70,3 +61,12 @@ Build and Check for windows in separate build dir: - mingw except: - tags +Build and Check with valgrind: + script: + - git submodule update --init && make autoreconf && ./configure + --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4 + tags: + - x86-64 + - nettle3 + except: + - tags