blob: e12c36e6a743cc7e62b097fe5dc10d864dbffdd2 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bash
ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"
git_download coqprime
export COQEXTRAFLAGS='-native-compiler no'
( cd "${CI_BUILD_DIR}/coqprime" && make && make install)
|