Commit 6024dd5d authored by Luca Boccassi's avatar Luca Boccassi

Problem: ci_build does not fully test build system

Solution: run make dist-check, which will run additional tests,
including making sure that the library is installable and the
distributable tarball is buildable, along with the usual make and
make check.
parent ff1ebf6f
......@@ -27,9 +27,8 @@ if [ $BUILD_TYPE == "default" ]; then
(
./autogen.sh &&
./configure "${CONFIG_OPTS[@]}" &&
make &&
make VERBOSE=1 check &&
make install
export DISTCHECK_CONFIGURE_FLAGS="${CONFIG_OPTS[@]}" &&
make VERBOSE=1 distcheck
) || exit 1
else
cd ./builds/${BUILD_TYPE} && ./ci_build.sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment