ci: Show config.log if configuration failed

This commit is contained in:
Nick Wellnhofer 2024-03-22 18:36:49 +01:00
parent c978a5d8d4
commit 0e6e39213a
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,6 @@
set -e
cd libxml2-build
sh ../autogen.sh $BASE_CONFIG $CONFIG
sh ../autogen.sh $BASE_CONFIG $CONFIG || cat config.log
make -j$(nproc) V=1 CFLAGS="$CFLAGS -Werror"
make CFLAGS="$CFLAGS -Werror" check

View File

@ -65,7 +65,7 @@ if [ ! -d $srcdir/m4 ]; then
fi
# Replaced by autoreconf below
autoreconf -if -Wall
autoreconf -if -Wall || exit 1
if ! grep -q pkg.m4 aclocal.m4; then
cat <<EOF
@ -88,6 +88,7 @@ if test -z "$NOCONFIGURE"; then
if test "$?" -ne 0; then
echo
echo "Configure script failed, check config.log for more info."
exit 1
else
echo
echo "Now type 'make' to compile libxml2."