2014-12-06 22:59:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Ceph distributed storage system
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 Red Hat <contact@redhat.com>
|
|
|
|
#
|
|
|
|
# Author: Loic Dachary <loic@dachary.org>
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Return MAX(1, (number of processors / 2)) by default or NPROC
|
|
|
|
#
|
|
|
|
function get_processors() {
|
|
|
|
if test -n "$NPROC" ; then
|
|
|
|
echo $NPROC
|
|
|
|
else
|
2015-01-29 13:18:18 +00:00
|
|
|
if test $(nproc) -ge 2 ; then
|
|
|
|
expr $(nproc) / 2
|
2014-12-06 22:59:54 +00:00
|
|
|
else
|
|
|
|
echo 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-08-24 03:37:32 +00:00
|
|
|
DEFAULT_MAKEOPTS=${DEFAULT_MAKEOPTS:--j$(get_processors)}
|
|
|
|
BUILD_MAKEOPTS=${BUILD_MAKEOPTS:-$DEFAULT_MAKEOPTS}
|
2016-09-29 16:33:16 +00:00
|
|
|
CHECK_MAKEOPTS=${CHECK_MAKEOPTS:-$DEFAULT_MAKEOPTS}
|
2015-08-24 03:37:32 +00:00
|
|
|
|
2014-12-06 22:59:54 +00:00
|
|
|
function run() {
|
2015-04-30 07:44:10 +00:00
|
|
|
local install_cmd
|
2016-09-16 04:29:15 +00:00
|
|
|
if test -f /etc/redhat-release ; then
|
|
|
|
source /etc/os-release
|
|
|
|
if test "$(echo "$VERSION_ID >= 22" | bc)" -ne 0; then
|
|
|
|
install_cmd="dnf -y install"
|
|
|
|
else
|
|
|
|
install_cmd="yum install -y"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-04-30 07:44:10 +00:00
|
|
|
type apt-get > /dev/null 2>&1 && install_cmd="apt-get install -y"
|
|
|
|
type zypper > /dev/null 2>&1 && install_cmd="zypper --gpg-auto-import-keys --non-interactive install"
|
|
|
|
if [ -n "$install_cmd" ]; then
|
2016-09-14 07:13:47 +00:00
|
|
|
$DRY_RUN sudo $install_cmd ccache jq
|
2015-04-30 07:44:10 +00:00
|
|
|
else
|
|
|
|
echo "WARNING: Don't know how to install packages" >&2
|
|
|
|
fi
|
2014-12-06 22:59:54 +00:00
|
|
|
|
|
|
|
if test -f ./install-deps.sh ; then
|
|
|
|
$DRY_RUN ./install-deps.sh || return 1
|
|
|
|
fi
|
2016-09-29 16:33:16 +00:00
|
|
|
$DRY_RUN ./do_cmake.sh $@ || return 1
|
|
|
|
$DRY_RUN cd build
|
|
|
|
$DRY_RUN make $BUILD_MAKEOPTS tests || return 1
|
|
|
|
$DRY_RUN ctest $CHECK_MAKEOPTS --output-on-failure || return 1
|
2014-12-06 22:59:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
2016-12-03 22:37:08 +00:00
|
|
|
echo -n "Checking hostname sanity... "
|
|
|
|
if hostname --fqdn >/dev/null 2>&1 ; then
|
|
|
|
echo "OK"
|
|
|
|
else
|
|
|
|
echo "NOT OK"
|
|
|
|
echo "Please fix 'hostname --fqdn', otherwise 'make check' will fail"
|
|
|
|
return 1
|
|
|
|
fi
|
2014-12-21 08:47:57 +00:00
|
|
|
if run "$@" ; then
|
2016-05-20 11:19:07 +00:00
|
|
|
rm -fr ${CEPH_BUILD_VIRTUALENV:-/tmp}/*virtualenv*
|
2016-09-29 16:33:16 +00:00
|
|
|
echo "cmake check: successful run on $(git rev-parse HEAD)"
|
2014-12-06 22:59:54 +00:00
|
|
|
return 0
|
|
|
|
else
|
2016-05-20 11:19:07 +00:00
|
|
|
rm -fr ${CEPH_BUILD_VIRTUALENV:-/tmp}/*virtualenv*
|
2014-12-06 22:59:54 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-12-21 08:47:57 +00:00
|
|
|
main "$@"
|