diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2015-12-13 12:34:47 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2015-12-13 12:34:47 +0100 |
commit | da7edadb6ff6e440b38c7343cb4e447b7b22db9e (patch) | |
tree | 6d1847f82c0d4986469c1667895d133fc7682407 /.gitlab-ci.yml | |
parent | 91a2714c2fd7ee0fbfa93c0c02812ae7c6ec2627 (diff) | |
download | gnutls-da7edadb6ff6e440b38c7343cb4e447b7b22db9e.tar.gz |
.gitlab-ci.yml: valgrind build was moved at the end as it is the slowest build
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 9 insertions, 9 deletions
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 |