From: Nikos Mavrogiannopoulos Date: Mon, 6 Nov 2017 15:32:48 +0000 (+0100) Subject: .gitlab-ci.yml: added build with gnutls X-Git-Tag: nettle_3.4rc1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad5a8e3e38d3a3f88f72852330d7f0e6e9975e87;p=thirdparty%2Fnettle.git .gitlab-ci.yml: added build with gnutls Signed-off-by: Nikos Mavrogiannopoulos --- 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