Fix cd command, add minimal test

This commit is contained in:
Darshit Shah
2021-03-14 01:41:06 +01:00
committed by Tim Rühsen
parent b9863c4769
commit 1e7beeecd4

View File

@ -76,8 +76,9 @@ Valgrind:
GIT_STRATEGY: none
script:
- ls -lah
- export CFLAGS=$CFLAGS_DEFAULT
- tar xvf wget-*.gz
- cd wget-*
- cd wget-*/
- ./configure $CONFIGURE_BASE_FLAGS
- make check-valgrind
dependencies:
@ -95,3 +96,31 @@ Valgrind:
- wget-*/fuzz/*.log
- wget-*/tests/*.log
- wget-*/testenv/*.log
Minimal:
stage: tarball
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$DEBIAN_TESTING_BUILD
variables:
GIT_STRATEGY: none
script:
- export CFLAGS=$CFLAGS_DEFAULT
- tar xvf wget-*.gz
- cd wget-*/
- ./configure $CONFIGURE_BASE_FLAGS --cache-file ../cache/config.cache
--disable-nls --without-ssl --enable-ipv6 --without-zlib --without-libiconv-prefix
--disable-iri --disable-ntlm --disable-pcre --without-libpsl --without-libuuid
--without-libintl-prefix
- make check-valgrind
tags:
- shared
- linux
except:
- coverity-scan@gnuwget/wget
artifacts:
expire_in: 2 weeks
when: on_failure
paths:
- wget-*/./*.log
- wget-*/fuzz/*.log
- wget-*/tests/*.log
- wget-*/testenv/*.log