summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-03-18 10:35:46 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-03-18 10:35:46 +0100
commit3171a011836da5efe1c261352d2bdf4ff0ddc687 (patch)
treebc3aee235528362ccf19a26b67d76932c01964e6 /.gitlab-ci.yml
parent3e343293fc96e435bbd6534ae70e433cf6d8541a (diff)
downloadgnutls-3171a011836da5efe1c261352d2bdf4ff0ddc687.tar.gz
.gitlab-ci.yml: don't use git submodule update, not needed for our testsuite
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9babcc1963..9392a5fb9f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,6 @@
Compile minimal library:
script:
- - git submodule update --init && make autoreconf && ./configure --with-included-libtasn1
+ - make autoreconf && ./configure --with-included-libtasn1
--disable-doc --disable-dtls-srtp-support --disable-alpn-support --disable-rsa-export
--disable-heartbeat-support --disable-srp-authentication --disable-psk-authentication
--disable-anon-authentication --disable-dhe --disable-ecdhe --disable-openpgp-authentication
@@ -13,7 +13,7 @@ Compile minimal library:
- tags
Build and Check with asan:
script:
- - git submodule update --init && make autoreconf && CFLAGS="-fsanitize=address -g
+ - make autoreconf && CFLAGS="-fsanitize=address -g
-O2" LDFLAGS="-static-libasan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile
&& make -j4 && make check -j4
tags:
@@ -22,7 +22,7 @@ Build and Check with asan:
- tags
Build and Check with ubsan:
script:
- - git submodule update --init && make autoreconf && CFLAGS="-fsanitize=undefined -fno-sanitize-recover -g
+ - make autoreconf && CFLAGS="-fsanitize=undefined -fno-sanitize-recover -g
-O2" LDFLAGS="-static-libubsan" ./configure --disable-doc --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile
&& make -j4 && make check -j4
tags:
@@ -32,7 +32,7 @@ Build and Check with ubsan:
- tags
Build and Check - separate build dir (x86):
script:
- - git submodule update --init && make autoreconf && mkdir -p build && cd build &&
+ - make autoreconf && mkdir -p build && cd build &&
../configure --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-doc --disable-valgrind-tests &&
make -j4 && make check -j4
tags:
@@ -42,7 +42,7 @@ Build and Check - separate build dir (x86):
- tags
Build and ABI-check (x86-64):
script:
- - git submodule update --init && make autoreconf && mkdir -p build && cd build &&
+ - make autoreconf && mkdir -p build && cd build &&
../configure --disable-doc --disable-cxx --disable-guile --disable-non-suiteb-curves && make -j4 && make abi-check
tags:
- x86-64
@@ -52,7 +52,7 @@ Build and ABI-check (x86-64):
- tags
Build and Check - clang:
script:
- - git submodule update --init && make autoreconf &&
+ - make autoreconf &&
CC=clang ./configure --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-doc --disable-valgrind-tests &&
make -j4 && make check -C tests -j4
tags:
@@ -61,7 +61,7 @@ Build and Check - clang:
- tags
Build and Check in FIPS140-2 mode:
script:
- - git submodule update --init && make autoreconf && mkdir -p build && cd build &&
+ - make autoreconf && mkdir -p build && cd build &&
../configure --disable-non-suiteb-curves --enable-fips140-mode --with-included-libtasn1 --disable-doc --disable-valgrind-tests &&
make -j4 && make check -j4
tags:
@@ -70,7 +70,7 @@ Build and Check in FIPS140-2 mode:
- tags
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 &&
+ - 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-make -j4 && mingw32-make -C tests check -j4
tags:
@@ -81,7 +81,7 @@ Build and Check for windows in separate build dir:
- tags
Build and Check with valgrind:
script:
- - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c && ./configure
+ - make autoreconf && rm -f tests/suite/mini-eagain2.c && ./configure
--disable-non-suiteb-curves --with-included-libtasn1 --disable-doc && make -j4 && make check -j4
tags:
- nettle3