mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-10 05:18:30 +03:00
6e9d00dbeb
Reusing the way `standard-test-roles` has support for booting a qcow2 actually gets us to the "VM-in-container" flow. Plus Ansible over shell script is sometimes nicer. https://fedoraproject.org/wiki/CI/Tests#Testing_an_Atomic_Host It's better than what we were doing before for installed tests, and moreover using Ansible more broadly for testing is going to align us better with Fedora's CI. As part of this I split off a "libpaprci" which I intend to maintain as a "copylib" for a little bit between ostree/rpm-ostree, and then we'll figure out how to expand from there (maybe some of the patterns get "baked in" to PAPR for example). Note the `FAH27-insttests` context moves to the top since it's now of primary importance, and I expect that we start expanding it. Closes: #1462 Approved by: jlebon
45 lines
1.3 KiB
Bash
Executable File
45 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/bash
|
|
# Install build dependencies, run unit tests and installed tests.
|
|
|
|
set -xeuo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libpaprci/libbuild.sh
|
|
|
|
pkg_upgrade
|
|
pkg_install_buildroot
|
|
pkg_builddep ostree
|
|
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
|
|
if test "${OS_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 test "${OS_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:-}
|