f25444554d
We don't currently install any installed tests usable by gnome-desktop-testing. This conveniently works around not having it readily packaged on CentOS, though we could always build from source if the need comes. Closes: #871 Approved by: cgwalters
19 lines
416 B
Bash
Executable File
19 lines
416 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
|
|
# NB: avoid make function because our RPM building doesn't
|
|
# support parallel runs right now
|
|
/usr/bin/make check
|
|
make install
|
|
git clean -dfx
|
|
|
|
# And now a clang build to find unused variables
|
|
export CC=clang
|
|
export CFLAGS='-Werror=unused-variable'
|
|
build_default
|