blob: 01723e5b5ce9535fb8db46e0b8a3bccc9d712476 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"
git_download flocq
( cd "${CI_BUILD_DIR}/flocq"
( if [ ! -x ./configure ]; then
autoconf
./configure COQEXTRAFLAGS="-compat 8.13";
fi )
./remake "-j${NJOBS}"
./remake install )
|