diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2017-03-07 22:52:31 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-03-08 16:07:33 +0100 |
commit | 18e54e57ce76d69cd5523a30b08c4a7b7bb7e747 (patch) | |
tree | 0668f8de8f93ed699c635d10606696a6ca239e72 /.gitlab-ci.yml | |
parent | 66ba8595c378e86b109a0214ef0f1295d22b58f8 (diff) | |
download | gnutls-18e54e57ce76d69cd5523a30b08c4a7b7bb7e747.tar.gz |
.gitlab-ci.yml: added build without openpgp support
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4baff585df..52f0be04a3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -189,7 +189,7 @@ FIPS140-2/Fedora/x86_64: artifacts: when: on_failure paths: - - guile/tests/*.log + - build/guile/tests/*.log - build/tests/*.log - build/tests/*/*.log @@ -209,9 +209,32 @@ IDNA2003/Fedora/x86_64: artifacts: when: on_failure paths: - - guile/tests/*.log + - build/guile/tests/*.log + - build/tests/*.log + - build/tests/*/*.log + +no-openpgp/Fedora/x86_64: + stage: stage2-testing + image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD + script: + - mkdir -p build && cd build && + ../configure --disable-openpgp-authentication --disable-doc --disable-guile --disable-full-test-suite --disable-valgrind-tests + - make -j$(nproc) + - make abi-check + - make check -j$(nproc) + tags: + - shared + except: + - tags + dependencies: + - init/Fedora/x86_64 + artifacts: + when: on_failure + paths: + - build/guile/tests/*.log - build/tests/*.log - build/tests/*/*.log + - build/compat_reports/* valgrind/Fedora/x86_64: stage: stage2-testing |