The Test-AutoBuild project, that this script is supposed to be used
with, hasn't seen any activity in ~6 years; libvirt's own CI, which
also performs periodic builds of libvirt-glib, is running on Jenkins
with a completely independent setup that doesn't use the script at
all.
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
autobuild.sh | 91 ------------------------------------------------------------
1 file changed, 91 deletions(-)
delete mode 100755 autobuild.sh
diff --git a/autobuild.sh b/autobuild.sh
deleted file mode 100755
index 9935de1..0000000
--- a/autobuild.sh
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/bin/sh
-
-set -e
-set -v
-
-test -n "$1" && RESULTS=$1 || RESULTS=results.log
-: ${AUTOBUILD_INSTALL_ROOT=$HOME/builder}
-
-# Make things clean.
-test -f Makefile && make -k distclean || :
-
-rm -rf build
-mkdir build
-cd build
-
-../autogen.sh --prefix=$AUTOBUILD_INSTALL_ROOT \
- --enable-gtk-doc
-
-make
-make install
-
-# set -o pipefail is a bashism; this use of exec is the POSIX alternative
-exec 3>&1
-st=$(
- exec 4>&1 >&3
- { make check syntax-check 2>&1 3>&- 4>&-; echo $? >&4; } |
tee "$RESULTS"
-)
-exec 3>&-
-test "$st" = 0
-
-rm -f *.tar.gz
-make dist
-
-if [ -n "$AUTOBUILD_COUNTER" ]; then
- EXTRA_RELEASE=".auto$AUTOBUILD_COUNTER"
-else
- NOW=`date +"%s"`
- EXTRA_RELEASE=".$USER$NOW"
-fi
-
-if [ -f /usr/bin/rpmbuild ]; then
- rpmbuild --nodeps \
- --define "extra_release $EXTRA_RELEASE" \
- --define "_sourcedir `pwd`" \
- -ba --clean libvirt-glib.spec
-fi
-
-# Test mingw32 cross-compile
-if test -x /usr/bin/i686-w64-mingw32-gcc ; then
- make distclean
-
-
PKG_CONFIG_PATH="$AUTOBUILD_INSTALL_ROOT/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig"
\
- CC="i686-w64-mingw32-gcc" \
- ../configure \
- --build=$(uname -m)-pc-linux \
- --host=i686-w64-mingw32 \
- --prefix="$AUTOBUILD_INSTALL_ROOT/i686-w64-mingw32/sys-root/mingw" \
- --enable-werror \
- --enable-introspection=no
-
- make
- make install
-
-fi
-
-# Test mingw64 cross-compile
-if test -x /usr/bin/x86_64-w64-mingw32-gcc ; then
- make distclean
-
-
PKG_CONFIG_PATH="$AUTOBUILD_INSTALL_ROOT/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig"
\
- CC="x86_64-w64-mingw32-gcc" \
- ../configure \
- --build=$(uname -m)-pc-linux \
- --host=x86_64-w64-mingw32 \
- --prefix="$AUTOBUILD_INSTALL_ROOT/i686-w64-mingw32/sys-root/mingw" \
- --enable-werror \
- --enable-introspection=no
-
- make
- make install
-
-fi
-
-if test -x /usr/bin/i686-w64-mingw32-gcc && test -x
/usr/bin/x86_64-w64-mingw32-gcc ; then
- if test -f /usr/bin/rpmbuild ; then
- rpmbuild --nodeps \
- --define "extra_release $EXTRA_RELEASE" \
- --define "_sourcedir `pwd`" \
- -ba --clean mingw-libvirt-glib.spec
- fi
-fi
--
2.13.5