From ad5a8e3e38d3a3f88f72852330d7f0e6e9975e87 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Mon, 6 Nov 2017 16:32:48 +0100 Subject: [PATCH] .gitlab-ci.yml: added build with gnutls Signed-off-by: Nikos Mavrogiannopoulos --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4a78430c..f4b07cfd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -87,3 +87,17 @@ build/static-analyzers: when: on_failure paths: - scan-build-lib/* +build/gnutls: + image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD + script: + - ./.bootstrap && + - ./configure --disable-documentation --prefix=/usr --libdir=/usr/lib64 && + make -j4 && make install + - git clone --depth 1 --branch master https://gitlab.com/gnutls/gnutls.git gnutls-git + - cd gnutls-git && git submodule update --init && make autoreconf && + ./configure --disable-cxx --disable-guile --disable-doc && make -j$(nproc) && + make -j $(nproc) check + tags: + - shared + except: + - tags -- 2.47.2