2007-02-08 01:46:44 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
2007-02-14 10:12:41 +08:00
|
|
|
set -v
|
2007-02-08 01:46:44 +08:00
|
|
|
|
|
|
|
# Make things clean.
|
|
|
|
|
2008-08-22 03:31:55 +08:00
|
|
|
test -n "$1" && RESULTS=$1 || RESULTS=results.log
|
2007-02-08 01:46:44 +08:00
|
|
|
|
|
|
|
test -f Makefile && make -k distclean || :
|
2007-02-14 10:12:41 +08:00
|
|
|
rm -rf coverage
|
2007-02-08 01:46:44 +08:00
|
|
|
|
|
|
|
#rm -rf build
|
|
|
|
#mkdir build
|
|
|
|
#cd build
|
|
|
|
|
2008-08-22 03:31:55 +08:00
|
|
|
./autogen.sh --prefix="$AUTOBUILD_INSTALL_ROOT" \
|
2007-03-09 05:32:18 +08:00
|
|
|
--enable-test-coverage \
|
2008-07-25 17:43:23 +08:00
|
|
|
--enable-compile-warnings=error \
|
|
|
|
--with-openvz \
|
|
|
|
--with-lxc \
|
|
|
|
--with-xen-proxy
|
2007-02-08 01:46:44 +08:00
|
|
|
|
2008-08-28 17:08:44 +08:00
|
|
|
# If the MAKEFLAGS envvar does not yet include a -j option,
|
|
|
|
# add -jN where N depends on the number of processors.
|
|
|
|
case $MAKEFLAGS in
|
|
|
|
*-j*) ;;
|
|
|
|
*) n=$(getconf _NPROCESSORS_ONLN 2> /dev/null)
|
|
|
|
test "$n" -gt 0 || n=1
|
|
|
|
n=$(expr $n + 1)
|
|
|
|
MAKEFLAGS="$MAKEFLAGS -j$n"
|
|
|
|
export MAKEFLAGS
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2007-02-08 01:46:44 +08:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2007-06-07 22:48:30 +08:00
|
|
|
set -o pipefail
|
2008-08-22 03:31:55 +08:00
|
|
|
make check 2>&1 | tee "$RESULTS"
|
|
|
|
make syntax-check 2>&1 | tee -a "$RESULTS"
|
2008-05-30 04:43:08 +08:00
|
|
|
test -x /usr/bin/lcov && make cov
|
2007-02-08 01:46:44 +08:00
|
|
|
|
|
|
|
rm -f *.tar.gz
|
|
|
|
make dist
|
|
|
|
|
|
|
|
if [ -f /usr/bin/rpmbuild ]; then
|
|
|
|
if [ -n "$AUTOBUILD_COUNTER" ]; then
|
|
|
|
EXTRA_RELEASE=".auto$AUTOBUILD_COUNTER"
|
|
|
|
else
|
|
|
|
NOW=`date +"%s"`
|
|
|
|
EXTRA_RELEASE=".$USER$NOW"
|
|
|
|
fi
|
|
|
|
rpmbuild --nodeps --define "extra_release $EXTRA_RELEASE" -ta --clean *.tar.gz
|
|
|
|
fi
|