From b1f566719ccec712f4d4c0d5436c3739c0d817b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Thu, 21 Nov 2019 11:47:35 +0100 Subject: [PATCH] * .gitlab-ci.yml: Skip tests on tarball build due to missing perl --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7bbd8e4c..c77478f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -359,6 +359,7 @@ Tarball: variables: GIT_STRATEGY: none script: + - apk add perl # remove all files from git repo - mv wget-*.gz /tmp - rm -rf * .git* .travis* @@ -369,7 +370,8 @@ Tarball: - unset CC - ./configure $CONFIGURE_BASE_FLAGS --with-ssl=no - make -j$(nproc) - - make -j$(nproc) check + # make check doesn't work due to incomplete perl installation + # - make -j$(nproc) check # check if essential files are accidentally cleaned - make clean - make -j$(nproc)