aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
Diffstat (limited to 'dev')
-rw-r--r--dev/ci/ci-basic-overlay.sh6
-rwxr-xr-xdev/ci/ci-ltac2.sh10
2 files changed, 16 insertions, 0 deletions
diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh
index 59a71b6086..cb1493d6aa 100644
--- a/dev/ci/ci-basic-overlay.sh
+++ b/dev/ci/ci-basic-overlay.sh
@@ -53,6 +53,12 @@
: ${HoTT_CI_GITURL:=https://github.com/HoTT/HoTT.git}
########################################################################
+# Ltac2
+########################################################################
+: ${ltac2_CI_BRANCH:=master}
+: ${ltac2_CI_GITURL:=https://github.com/ppedrot/ltac2.git}
+
+########################################################################
# GeoCoq
########################################################################
: ${GeoCoq_CI_BRANCH:=master}
diff --git a/dev/ci/ci-ltac2.sh b/dev/ci/ci-ltac2.sh
new file mode 100755
index 0000000000..4865be31ec
--- /dev/null
+++ b/dev/ci/ci-ltac2.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+
+ci_dir="$(dirname "$0")"
+source ${ci_dir}/ci-common.sh
+
+ltac2_CI_DIR=${CI_BUILD_DIR}/coq-dpdgraph
+
+git_checkout ${ltac2_CI_BRANCH} ${ltac2_CI_GITURL} ${ltac2_CI_DIR}
+
+( cd ${ltac2_CI_DIR} && make -j ${NJOBS} && make tests && make install )