From a20fb115b12b03d7264537e89adf0e2558a72964 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Thu, 10 Jan 2019 16:12:17 +0000 Subject: [PATCH] Make tmp-distdir and build there, as part of CI Signed-off-by: David Woodhouse --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 93dd7f62..cc5623bf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -97,6 +97,9 @@ Fedora/GnuTLS: java-devel-openjdk glibc-langpack-cs iproute iputils nuttcp - ./autogen.sh - ./configure --with-java --disable-dsa-tests CFLAGS=-g + - make tmp-distdir + - cd openconnect-$(git describe --tags | sed s/^v//) + - ./configure --with-java --disable-dsa-tests CFLAGS=-g - make -j4 - make VERBOSE=1 -j4 check tags: @@ -121,6 +124,9 @@ Fedora/GnuTLS/clang: java-devel-openjdk clang glibc-langpack-cs iproute iputils nuttcp - ./autogen.sh - ./configure --with-java --disable-dsa-tests CC=clang CFLAGS=-g + - make tmp-distdir + - cd openconnect-$(git describe --tags | sed s/^v//) + - ./configure --with-java --disable-dsa-tests CC=clang CFLAGS=-g - make -j4 - make VERBOSE=1 -j4 check tags: @@ -147,6 +153,9 @@ Fedora/OpenSSL: - update-crypto-policies --set LEGACY - ./autogen.sh - ./configure --without-gnutls --with-openssl --without-openssl-version-check --disable-dsa-tests CFLAGS=-g + - make tmp-distdir + - cd openconnect-$(git describe --tags | sed s/^v//) + - ./configure --without-gnutls --with-openssl --without-openssl-version-check --disable-dsa-tests CFLAGS=-g - make -j4 - make VERBOSE=1 -j4 check tags: @@ -173,6 +182,9 @@ Fedora/OpenSSL/clang: - update-crypto-policies --set LEGACY - ./autogen.sh - ./configure CC=clang --without-gnutls --with-openssl --without-openssl-version-check --disable-dsa-tests CFLAGS=-g + - make tmp-distdir + - cd openconnect-$(git describe --tags | sed s/^v//) + - ./configure CC=clang --without-gnutls --with-openssl --without-openssl-version-check --disable-dsa-tests CFLAGS=-g - make -j4 - make VERBOSE=1 -j4 check tags: -- 2.50.1