From 9edee7cbb6d2a910bb9099da6719f03e63179fcb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niels=20M=C3=B6ller?= Date: Thu, 5 Oct 2023 20:04:56 +0200 Subject: [PATCH] Debug quoting of EXTRA_CONFIGURE_ARGS. --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 -- 2.47.2