diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-02-26 09:38:33 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-02-26 09:38:33 +0100 |
commit | d124a696c09c6f492d95a5ce212d8c90a391ce7c (patch) | |
tree | 9140fcd4bc6e649f8c9320396bf38ca7e84f6ce4 | |
parent | 88ea6964435dbd4235bd3682ee220891acd43180 (diff) | |
download | gnutls-d124a696c09c6f492d95a5ce212d8c90a391ce7c.tar.gz |
.gitlab-ci.yml: don't build guile bindings
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dd183bcd16..b3785ab3b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ Build and Check - separate build dir: script: - git submodule update --init && make autoreconf && mkdir -p build && cd build && ../configure - --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-valgrind-tests --disable-doc && make -j4 && make check + --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-guile --disable-valgrind-tests --disable-doc && make -j4 && make check - cat tests/test-suite.log tags: - nettle2 @@ -10,7 +10,7 @@ Build and Check - 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 + --disable-non-suiteb-curves --with-included-libtasn1 --disable-doc --disable-guile && make -j4 && make check - cat tests/test-suite.log tags: - x86-64 |