From: Karel Zak Date: Mon, 25 Jan 2021 16:32:17 +0000 (+0100) Subject: github: cleanup cibuild.sh X-Git-Tag: v2.37-rc1~162 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=830a871e16d5eb1711914615467dc9d6a6e01764;p=thirdparty%2Futil-linux.git github: cleanup cibuild.sh Signed-off-by: Karel Zak --- diff --git a/.github/workflows/cibuild.sh b/.github/workflows/cibuild.sh index acd4046ebf..ae55d36332 100755 --- a/.github/workflows/cibuild.sh +++ b/.github/workflows/cibuild.sh @@ -8,41 +8,34 @@ set -ex for phase in "${PHASES[@]}"; do case $phase in CONFIGURE) - opts = "--disable-use-tty-group \ + opts="--disable-use-tty-group \ --disable-makeinstall-chown \ --enable-all-programs \ --enable-asan \ --enable-ubsan \ + --without-python \ --enable-werror" if [[ "$COMPILER" == clang ]]; then opts="$opts --enable-fuzzing-engine" fi - echo "## CONFIGURE: git-clean" sudo -E git clean -xdf - echo "## CONFIGURE: autogen.sh" ./autogen.sh - - echo "## CONFIGURE: $opts --" ./configure $opts ;; MAKE) - echo "## MAKE" make -j V=1 make -j check-programs V=1 ;; INSTALL) - echo "## MAKE INSTALL" make install DESTDIR=/tmp/dest ;; CHECK) - echo "## MAKE CHECK" - ./tests/run.h --show-diff + ./tests/run.sh --show-diff ;; DISTCHECK) - echo "## MAKE DISTCHECK" make distcheck ;;