* .gitlab-ci.yml: Skip tests on tarball build due to missing perl

This commit is contained in:
Tim Rühsen 2019-11-21 11:47:35 +01:00
parent 0751d053f5
commit b1f566719c

View File

@ -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)