From: Niels Möller Date: Thu, 5 Oct 2023 18:04:56 +0000 (+0200) Subject: Debug quoting of EXTRA_CONFIGURE_ARGS. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9edee7cbb6d2a910bb9099da6719f03e63179fcb;p=thirdparty%2Fnettle.git Debug quoting of EXTRA_CONFIGURE_ARGS. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ebd18ba8..25ee2299 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,9 +8,11 @@ variables: .native-build: image: $CI_REGISTRY/$BUILDENV_NATIVE_IMAGE script: - - ./.bootstrap && - ./configure $EXTRA_CONFIGURE_ARGS --disable-documentation && make -j$(nproc) && - make -j$(nproc) check $EXTRA_CHECK_TARGET + - printf "1: x%sx" "$EXTRA_CONFIGURE_ARGS" + - 'printf "2: x%sx" "$EXTRA_CONFIGURE_ARGS"' + - ./.bootstrap + - ./configure $EXTRA_CONFIGURE_ARGS --disable-documentation && make -j$(nproc) + - make -j$(nproc) check $EXTRA_CHECK_TARGET tags: - shared - linux