mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-21 22:04:15 +03:00
971265e4e4
Signed-off-by: Simon McVittie <smcv@debian.org> Closes: #1463 Approved by: cgwalters
48 lines
1.4 KiB
Bash
Executable File
48 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/bash
|
|
# Install build dependencies, run unit tests and installed tests.
|
|
|
|
set -xeuo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
|
|
pkg_upgrade
|
|
pkg_install_builddeps ostree
|
|
# Until this propagates farther
|
|
pkg_install 'pkgconfig(libcurl)' 'pkgconfig(openssl)'
|
|
pkg_install sudo which attr fuse strace \
|
|
libubsan libasan libtsan PyYAML redhat-rpm-config \
|
|
elfutils
|
|
if test -n "${CI_PKGS:-}"; then
|
|
pkg_install ${CI_PKGS}
|
|
fi
|
|
pkg_install_if_os fedora gjs gnome-desktop-testing parallel coccinelle clang \
|
|
python3-PyYAML
|
|
(. /etc/os-release;
|
|
if test "${ID}" = "centos"; then
|
|
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
|
|
pkg_install python34{,-PyYAML}
|
|
fi
|
|
)
|
|
|
|
# Default libcurl on by default in fedora unless libsoup is enabled
|
|
if sh -c '. /etc/os-release; test "${ID}" = fedora'; then
|
|
case "${CONFIGOPTS:-}" in
|
|
*--with-soup*|*--without-curl*) ;;
|
|
*) CONFIGOPTS="${CONFIGOPTS:-} --with-curl"
|
|
esac
|
|
fi
|
|
case "${CONFIGOPTS:-}" in
|
|
*--with-curl*|--with-soup*)
|
|
if test -x /usr/bin/gnome-desktop-testing-runner; then
|
|
CONFIGOPTS="${CONFIGOPTS} --enable-installed-tests=exclusive"
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
# always fail on warnings; https://github.com/ostreedev/ostree/pull/971
|
|
# NB: this disables the default set of flags from configure.ac
|
|
export CFLAGS="-Wall -Werror ${CFLAGS:-}"
|
|
|
|
build --enable-gtk-doc ${CONFIGOPTS:-}
|