]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
github: cleanup cibuild.sh
authorKarel Zak <kzak@redhat.com>
Mon, 25 Jan 2021 16:32:17 +0000 (17:32 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 25 Jan 2021 16:32:17 +0000 (17:32 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
.github/workflows/cibuild.sh

index acd4046ebff7a381605bd37a6421ff16df7a525e..ae55d363321019204c5ad69e505f7c7923429215 100755 (executable)
@@ -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
                ;;