lean4-htt/script/ci.sh
Sebastian Ullrich cf381f68b7 chore: revert "chore: call ctest with -V"
This reverts commit 6a34b20540.
2019-11-06 10:13:52 -08:00

9 lines
187 B
Bash
Executable file

#!/usr/bin/env bash
set -e
mkdir build
cd build
eval cmake ../src $CMAKE_OPTIONS
cmake --build .
# -T to create .xml file
ctest -j8 --output-on-failure --no-compress-output -T Test
cpack