From 659b172e81e945d55640e8b3520efe405dac40a0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niels=20M=C3=B6ller?= Date: Thu, 5 Oct 2023 20:28:27 +0200 Subject: [PATCH] echo and quote configure command --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4d4fdd29..02090d56 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,10 +8,9 @@ variables: .native-build: image: $CI_REGISTRY/$BUILDENV_NATIVE_IMAGE script: - - printf "1 x%sx" "$EXTRA_CONFIGURE_ARGS" - - 'printf "2 x%sx" "$EXTRA_CONFIGURE_ARGS"' - ./.bootstrap - - ./configure $EXTRA_CONFIGURE_ARGS --disable-documentation && make -j$(nproc) + - 'echo ./configure $EXTRA_CONFIGURE_ARGS --disable-documentation && make -j$(nproc)' + - './configure $EXTRA_CONFIGURE_ARGS --disable-documentation && make -j$(nproc)' - make -j$(nproc) check $EXTRA_CHECK_TARGET tags: - shared -- 2.47.2