summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-03-11 16:49:05 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-03-11 16:49:05 +0100
commitee1e639487119c1f486478f94b5d28f140aea2b6 (patch)
tree387b0893ad2ac4de50d6487c51949252a8dba58a
parent4446a9c69a51064e32ff0676bab51b327ec48a4e (diff)
downloadgnutls-abi-check.tar.gz
-rw-r--r--.gitlab-ci.yml79
1 files changed, 0 insertions, 79 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9babcc1963..78a9ced921 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,45 +1,3 @@
-Compile minimal library:
- script:
- - git submodule update --init && 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
- --disable-ocsp --disable-session-tickets --disable-openssl-compatibility --disable-non-suiteb-curves
- --disable-nls --disable-crywrap --disable-libdane --without-p11-kit --without-tpm
- --without-zlib --disable-doc --disable-tests && make -j4
- tags:
- - nettle3
- except:
- - tags
-Build and Check with asan:
- script:
- - git submodule update --init && 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:
- - nettle3
- except:
- - tags
-Build and Check with ubsan:
- script:
- - git submodule update --init && 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:
- - ubsan
- - nettle3
- except:
- - tags
-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 &&
- make -j4 && make check -j4
- tags:
- - x86
- - nettle3
- except:
- - tags
Build and ABI-check (x86-64):
script:
- git submodule update --init && make autoreconf && mkdir -p build && cd build &&
@@ -50,40 +8,3 @@ Build and ABI-check (x86-64):
- abi-checker
except:
- tags
-Build and Check - clang:
- 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 &&
- make -j4 && make check -C tests -j4
- tags:
- - nettle3
- except:
- - tags
-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 &&
- make -j4 && make check -j4
- tags:
- - nettle3
- except:
- - 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 &&
- 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:
- - nettle3
- - wine
- - mingw
- except:
- - tags
-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
- tags:
- - nettle3
- except:
- - tags