blob: f3be66e8147b96e2f071555e637093b0a3006a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
ci_dir="$(dirname "$0")"
. "${ci_dir}/ci-common.sh"
FORCE_GIT=1
git_download perennial
# required by Perennial's coqc.py build wrapper
export LC_ALL=C.UTF-8
( cd "${CI_BUILD_DIR}/perennial" && git submodule update --init --recursive && make TIMED=false )
|