diff options
author | Tim Rühsen <tim.ruehsen@gmx.de> | 2018-10-13 19:56:52 +0200 |
---|---|---|
committer | Tim Rühsen <tim.ruehsen@gmx.de> | 2018-10-13 20:12:23 +0200 |
commit | c32ba20adaa94b66e0121a2d886f0eb9d6f9e759 (patch) | |
tree | 567e58dbfc5e7f970a33b3c279d1d07ab763ed19 | |
parent | 20abfc36bec4de2ad9f2e4682be7f93f61f6419d (diff) | |
download | gnutls-c32ba20adaa94b66e0121a2d886f0eb9d6f9e759.tar.gz |
Test set -e in CItmp-ci-exit-on-error
Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 06742b2069..52c9fa0353 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -462,10 +462,12 @@ Debian.x86_64: stage: stage1-testing image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$DEBIAN_BUILD script: + - set -e - ./bootstrap - mkdir -p build && cd build && - dash ../configure --disable-gcc-warnings --cache-file ../cache/config.cache --disable-doc --disable-guile --disable-full-test-suite LDFLAGS='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now' && + ../configure --disable-gcc-warnings --cache-file ../cache/config.cache --disable-doc --disable-guile --disable-full-test-suite LDFLAGS='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now' && make -j$(nproc) && make check -j$(nproc) + - echo "status is $?" - cd .. tags: - shared |