lean4-htt/script/ci.sh
Joe Hendrix 37ff241467 feat(CMakeLists): Add option to link in LLVM.
This updates cmake and Lean to link against the LLVM libraries.
2019-07-31 18:21:49 -07:00

9 lines
197 B
Bash
Executable file

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