mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-12 13:18:27 +03:00
e0e07e2a48
For similar reasons as https://github.com/projectatomic/rpm-ostree/pull/824 Closes: #919 Approved by: jlebon
25 lines
646 B
Bash
Executable File
25 lines
646 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
|
|
${dn}/build.sh
|
|
make check
|
|
make syntax-check # TODO: do syntax-check under check
|
|
# And now run the installed tests
|
|
make install
|
|
if test -x /usr/bin/gnome-desktop-testing-runner; then
|
|
gnome-desktop-testing-runner -p 0 ostree
|
|
fi
|
|
|
|
if test -x /usr/bin/clang; then
|
|
git clean -dfx && git submodule foreach git clean -dfx
|
|
# And now a clang build to find unused variables; perhaps
|
|
# in the future these could parallelize
|
|
export CC=clang
|
|
export CFLAGS='-Werror=unused-variable'
|
|
build
|
|
fi
|