autobuild.sh 1.8 KB
Newer Older
1 2 3
#!/bin/sh

set -e
4
set -v
5 6 7

# Make things clean.

8
test -n "$1" && RESULTS=$1 || RESULTS=results.log
9 10

test -f Makefile && make -k distclean || :
11
rm -rf coverage
12 13 14 15 16

#rm -rf build
#mkdir build
#cd build

17
./autogen.sh --prefix="$AUTOBUILD_INSTALL_ROOT" \
18
  --enable-test-coverage \
19 20
  --enable-compile-warnings=error \
  --with-xen-proxy
21

J
Jim Meyering 已提交
22 23 24 25 26 27 28 29 30 31 32 33
# 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

34 35 36
make
make install

37
set -o pipefail
38 39
make check 2>&1 | tee "$RESULTS"
make syntax-check 2>&1 | tee -a "$RESULTS"
40
test -x /usr/bin/lcov && make cov
41 42 43 44 45 46 47 48 49 50 51

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
D
Daniel P. Berrange 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

  rpmbuild --nodeps \
     --define "extra_release $EXTRA_RELEASE" \
     --define "_sourcedir `pwd`" \
     -ba --clean libvirt.spec
fi

if [ -x /usr/bin/i686-pc-mingw32-gcc ]; then
  make distclean

  PKG_CONFIG_PATH="$AUTOBUILD_INSTALL_ROOT/i686-pc-mingw32/sys-root/mingw/lib/pkgconfig" \
  CC="i686-pc-mingw32-gcc" \
  ./configure \
    --build=$(uname -m)-pc-linux \
    --host=i686-pc-mingw32 \
    --prefix="$AUTOBUILD_INSTALL_ROOT/i686-pc-mingw32/sys-root/mingw" \
    --without-sasl \
    --without-avahi \
    --without-polkit \
    --without-python \
    --without-xen \
    --without-qemu \
    --without-lxc \
    --without-openvz \
    --without-libvirtd

  make
  make install

  #set -o pipefail
  #make check 2>&1 | tee "$RESULTS"

  rpmbuild --nodeps \
     --define "extra_release $EXTRA_RELEASE" \
     --define "_sourcedir `pwd`" \
     -ba --clean mingw-libvirt.spec
88
fi