44ea9f35a1
This should make sure we catch test errors such as https://github.com/GNOME/libglnx/pull/76 when bumping submodules (until we eventually get a PR tester on libglnx). Requires: https://github.com/GNOME/libglnx/pull/76 Update submodule: libglnx Closes: #954 Approved by: cgwalters
21 lines
493 B
Bash
Executable File
21 lines
493 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
|
|
# don't actually run the tests, just compile them
|
|
/usr/bin/make check TESTS=
|