mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-06 17:18:25 +03:00
9d10bdfd0d
Closes: #971 Approved by: cgwalters
23 lines
686 B
Bash
Executable File
23 lines
686 B
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_install_builddeps ostree
|
|
pkg_install sudo which attr fuse \
|
|
libubsan libasan libtsan PyYAML redhat-rpm-config \
|
|
elfutils
|
|
pkg_install_if_os fedora gjs gnome-desktop-testing parallel coccinelle clang
|
|
|
|
# always fail on warnings; https://github.com/ostreedev/ostree/pull/971
|
|
export CFLAGS="-Werror ${CFLAGS:-}"
|
|
|
|
DETECTED_CONFIGOPTS=
|
|
if test -x /usr/bin/gnome-desktop-testing-runner; then
|
|
DETECTED_CONFIGOPTS="${DETECTED_CONFIGOPTS} --enable-installed-tests=exclusive"
|
|
fi
|
|
build --enable-gtk-doc ${DETECTED_CONFIGOPTS} ${CONFIGOPTS:-}
|