From ac401f1a4dade8290af5bc0e825e0834c12e3677 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niels=20M=C3=B6ller?= Date: Thu, 5 Oct 2023 20:36:11 +0200 Subject: [PATCH] Fix debug echo --- .gitlab-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 02090d56..c242d150 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,9 +9,10 @@ variables: image: $CI_REGISTRY/$BUILDENV_NATIVE_IMAGE script: - ./.bootstrap - - '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 + - 'echo ./configure $EXTRA_CONFIGURE_ARGS --disable-documentation' + - './configure $EXTRA_CONFIGURE_ARGS --disable-documentation' + - 'make -j$(nproc)' + - 'make -j$(nproc) check $EXTRA_CHECK_TARGET' tags: - shared - linux -- 2.47.2