mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
516c1340b3
And move everything that was in it directly in `ci/`. There's a bunch more cleanups here that we need to do (and more changes to upstream from the rpm-ostree copies of this).
50 lines
1.4 KiB
Bash
Executable File
50 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# Build and run flatpak's unit tests using the just-built ostree for this PR.
|
|
|
|
set -xeuo pipefail
|
|
|
|
# Keep this pinned to avoid arbitrary change for now; it's also
|
|
# good to test building older code against newer ostree as it helps
|
|
# us notice any API breaks.
|
|
FLATPAK_TAG=1.4.1
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
|
|
codedir=$(pwd)
|
|
|
|
# Build ostree, but we don't install it yet
|
|
cd ${codedir}
|
|
ci/build.sh
|
|
|
|
# Build flatpak
|
|
tmpd=$(mktemp -d)
|
|
cd ${tmpd}
|
|
git clone --recursive --depth=1 -b ${FLATPAK_TAG} https://github.com/flatpak/flatpak
|
|
cd ${tmpd}/flatpak
|
|
|
|
# Some of flatpak's tests assert GPG error strings from ostree, but
|
|
# those have been changed. Patch the test assertions until this can get
|
|
# into a tagged flatpak.
|
|
git apply ${codedir}/ci/flatpak-1.4.1-ostree-gpg-errors.patch
|
|
|
|
# This is a copy of flatpak/ci/build.sh, but we can't use that as we want to install
|
|
# our built ostree over it.
|
|
pkg_install sudo which attr fuse bison \
|
|
libubsan libasan libtsan clang python2 \
|
|
elfutils git gettext-devel libappstream-glib-devel hicolor-icon-theme \
|
|
/usr/bin/{update-mime-database,update-desktop-database,gtk-update-icon-cache}
|
|
pkg_builddep flatpak
|
|
# Now install ostree over the package version
|
|
cd ${codedir}
|
|
make install
|
|
cd -
|
|
# And build flatpak
|
|
build
|
|
# We want to capture automake results from flatpak
|
|
cleanup() {
|
|
mv test-suite.log ${codedir} || true
|
|
}
|
|
trap cleanup EXIT
|
|
make -j 8 check
|