lean4-htt/script/ci.sh
Sebastian Ullrich a6fbf3c20e refactor: make stages internally consistent by compiling the stageN lib with the stageN compiler, rename static libraries
The old stage1 is now stage0.5, which at least suggests that it's not an entirely consistent stage in general
2020-05-14 23:13:51 +02:00

7 lines
103 B
Bash
Executable file

#!/usr/bin/env bash
set -e
mkdir build
cd build
eval cmake .. $CMAKE_OPTIONS
make
(cd stage0.5; cpack)