summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-02-16 16:46:54 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-02-16 16:46:56 +0100
commit50ce516eebaf011f041002ecbfdb61b113159282 (patch)
tree051548ae96586a3cd827ae969ef3333dc3826105 /.gitlab-ci.yml
parenta88ce61a36909bb087032e1e3725ff7f24efdcc7 (diff)
downloadgnutls-50ce516eebaf011f041002ecbfdb61b113159282.tar.gz
.gitlab-ci.yml: disable guile tests
This prevents the test suite from failing.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d123c4e71f..852fcbc5f7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,7 +24,7 @@ Build and Check with asan:
Build and Check - separate build dir (x86):
script:
- git submodule update --init && make autoreconf && mkdir -p build && cd build &&
- ../configure --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-doc --disable-valgrind-tests &&
+ ../configure --disable-guile --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-doc --disable-valgrind-tests &&
make -j4 && make check -j4
tags:
- x86
@@ -34,7 +34,7 @@ Build and Check - separate build dir (x86):
Build and Check - clang (x86):
script:
- git submodule update --init && make autoreconf &&
- CC=clang ./configure --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-doc --disable-valgrind-tests &&
+ CC=clang ./configure --disable-guile --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-doc --disable-valgrind-tests &&
make -j4 && make check -C tests -j4
tags:
- x86
@@ -44,7 +44,7 @@ Build and Check - clang (x86):
Build and Check in FIPS140-2 mode:
script:
- git submodule update --init && make autoreconf && mkdir -p build && cd build &&
- ../configure --disable-non-suiteb-curves --enable-fips140-mode --with-included-libtasn1 --disable-doc --disable-valgrind-tests &&
+ ../configure --disable-guile --disable-non-suiteb-curves --enable-fips140-mode --with-included-libtasn1 --disable-doc --disable-valgrind-tests &&
make -j4 && make check -j4
tags:
- nettle3
@@ -53,7 +53,7 @@ Build and Check in FIPS140-2 mode:
Build and Check for windows in separate build dir:
script:
- git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c && mkdir -p build && cd build &&
- mingw32-configure --enable-local-libopts --without-p11-kit --disable-non-suiteb-curves --disable-doc --disable-valgrind-tests &&
+ mingw32-configure --disable-guile --enable-local-libopts --without-p11-kit --disable-non-suiteb-curves --disable-doc --disable-valgrind-tests &&
mingw32-make -j4 && mingw32-make -C tests check -j4
tags:
- nettle3
@@ -64,7 +64,7 @@ Build and Check for windows in separate build dir:
Build and Check with valgrind:
script:
- 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
+ --disable-guile --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4
tags:
- x86-64
- nettle3