From e8178bd3fc435a51e7d3c5fff37ba8b41a6fc2b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Sat, 31 Oct 2020 11:00:34 +0100 Subject: [PATCH] Test for bashisms in Debian Testing --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 53048d5be..12e780228 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -101,13 +101,15 @@ Full+VPATH/Debian: # Debian Testing +# - Testing dash to detects bashims in configure.ac Debian/Testing: stage: stage1-testing image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$DEBIAN_TESTING_BUILD script: - export CFLAGS="$CFLAGS_DEFAULT" - ./bootstrap --skip-po && touch .manywarnings - - ./configure $CONFIGURE_BASE_FLAGS + - CONFIG_SHELL=/bin/dash dash ./configure $CONFIGURE_BASE_FLAGS -q 2>&1 >/dev/null | + grep -v "libhsts was not found" | grep . && exit 1 - make -j$(nproc) - make check -j$(nproc) tags: -- GitLab