summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2015-11-06 10:40:39 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2015-11-06 10:40:39 +0100
commit3b9413d80db217abb3ac94a8d784bcc345a5a4cb (patch)
treebff76d6d4b888209c0975248577cccb901bc4959 /.gitlab-ci.yml
parentb8323e4f4724a2b62f3be71e5d2a16ea6856af1f (diff)
downloadgnutls-3b9413d80db217abb3ac94a8d784bcc345a5a4cb.tar.gz
.gitlab-ci.yml: disable non-suiteb curves on build on Fedora system
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 332abe8f88..69e64a855a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,7 +14,7 @@ Build minimal:
Build and Check with valgrind:
script:
- git submodule update --init && make autoreconf && LDFLAGS="-L/usr/local/lib" ./configure
- --with-included-libtasn1 --disable-doc && make -j4 && make check -j4
+ --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- fast
@@ -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
+ -O2" LDFLAGS="-lasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves
&& make -j4 && make check -j4
- cat tests/test-suite.log
tags: