blob: fe7b3f9fbeb12c3eac21e24df0c80bd2876ec58a (
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 interval
export COQEXTRAFLAGS='-native-compiler no'
( cd "${CI_BUILD_DIR}/interval" && ( if [ ! -x ./configure ]; then autoconf && ./configure; fi ) && ./remake "-j${NJOBS}" && ./remake install )
|