Problem: Travis CI CMake build does not run tests

Solution: add make test to the cmake/ci_build.sh script
This commit is contained in:
Luca Boccassi 2016-04-21 11:35:43 +01:00
parent ea294afd8b
commit a117c1f48d

View File

@ -28,4 +28,4 @@ elif [ $CURVE == "libsodium" ]; then
fi
# Build, check, and install from local source
( cd ../..; mkdir build_cmake && cd build_cmake && PKG_CONFIG_PATH=${BUILD_PREFIX}/lib/pkgconfig cmake "${CMAKE_OPTS[@]}" .. && make all VERBOSE=1 && make install ) || exit 1
( cd ../..; mkdir build_cmake && cd build_cmake && PKG_CONFIG_PATH=${BUILD_PREFIX}/lib/pkgconfig cmake "${CMAKE_OPTS[@]}" .. && make all VERBOSE=1 && make install && make test ) || exit 1