summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2017-11-06 16:32:48 +0100
committerNiels Möller <nisse@lysator.liu.se>2017-11-08 20:48:43 +0100
commitad5a8e3e38d3a3f88f72852330d7f0e6e9975e87 (patch)
tree8cdab2d704e29f79025f368b0522ae23926bcb24
parent685316136f846dd36364e011c678eb947ff5ccd9 (diff)
downloadnettle-ad5a8e3e38d3a3f88f72852330d7f0e6e9975e87.tar.gz
.gitlab-ci.yml: added build with gnutls
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
-rw-r--r--.gitlab-ci.yml14
1 files changed, 14 insertions, 0 deletions
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