Skip to content

Commit

Permalink
Problem: Travis CI CMake build does not run tests
Browse files Browse the repository at this point in the history
Solution: add make test to the cmake/ci_build.sh script
  • Loading branch information
bluca committed Apr 21, 2016
1 parent ea294af commit a117c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builds/cmake/ci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a117c1f

Please sign in to comment.