aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaëtan Gilbert2018-11-12 17:45:44 +0100
committerGaëtan Gilbert2018-11-12 17:45:44 +0100
commit835ab6b50a4c3c0f7c4623bebf3c95f4fa49a79d (patch)
tree38d90a9e5afff39711fcd3d37c1f439d7eb013f9
parent9f9bf0d0a711251537fedf0622f1c0757d42cb44 (diff)
parent1f76b5dd689b963eed6fe8e4009c21d86fc09db0 (diff)
Merge PR #8962: [ci] Add paramcoq to CI.
-rw-r--r--.gitlab-ci.yml3
-rw-r--r--Makefile.ci1
-rwxr-xr-xdev/ci/ci-basic-overlay.sh7
-rwxr-xr-xdev/ci/ci-paramcoq.sh8
4 files changed, 19 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d866882dbd..4a7fec5287 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -429,6 +429,9 @@ ci-math-comp:
ci-mtac2:
<<: *ci-template
+ci-paramcoq:
+ <<: *ci-template
+
ci-pidetop:
<<: *ci-template
diff --git a/Makefile.ci b/Makefile.ci
index 8234da0869..1d9614231c 100644
--- a/Makefile.ci
+++ b/Makefile.ci
@@ -35,6 +35,7 @@ CI_TARGETS= \
ci-math-classes \
ci-math-comp \
ci-mtac2 \
+ ci-paramcoq \
ci-pidetop \
ci-plugin-tutorial \
ci-quickchick \
diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh
index 50d4d21637..be23d07f1c 100755
--- a/dev/ci/ci-basic-overlay.sh
+++ b/dev/ci/ci-basic-overlay.sh
@@ -255,3 +255,10 @@
: "${aactactics_CI_REF:=master}"
: "${aactactics_CI_GITURL:=https://github.com/coq-community/aac-tactics}"
: "${aactactics_CI_ARCHIVEURL:=${aactactics_CI_GITURL}/archive}"
+
+########################################################################
+# paramcoq
+########################################################################
+: "${paramcoq_CI_REF:=master}"
+: "${paramcoq_CI_GITURL:=https://github.com/coq-community/paramcoq}"
+: "${paramcoq_CI_ARCHIVEURL:=${paramcoq_CI_GITURL}/archive}"
diff --git a/dev/ci/ci-paramcoq.sh b/dev/ci/ci-paramcoq.sh
new file mode 100755
index 0000000000..c641af2abb
--- /dev/null
+++ b/dev/ci/ci-paramcoq.sh
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+
+ci_dir="$(dirname "$0")"
+. "${ci_dir}/ci-common.sh"
+
+git_download paramcoq
+
+( cd "${CI_BUILD_DIR}/paramcoq" && make && make install )