aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo Zimmermann2018-10-08 15:39:31 +0200
committerThéo Zimmermann2018-10-08 19:11:41 +0200
commitd21c7aca1d1ce94e2007f0e6c550d36230d9f64f (patch)
treea3720a6a9b3e29ba76c34a33dd02954f9ad1f51f
parentd792c2bf18e68a6301f295c79c05f25738456ecf (diff)
[ci] Add aac-tactics.
And fix a typo that was previously there.
-rw-r--r--.gitlab-ci.yml3
-rw-r--r--Makefile.ci4
-rwxr-xr-xdev/build/windows/makecoq_mingw.sh2
-rwxr-xr-xdev/ci/ci-aac-tactics.sh8
-rwxr-xr-xdev/ci/ci-basic-overlay.sh6
5 files changed, 18 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 18f515da24..6aa2cecbd3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -346,6 +346,9 @@ validate:edge+flambda:
OPAM_SWITCH: edge
OPAM_VARIANT: "+flambda"
+ci-aac-tactics:
+ <<: *ci-template
+
ci-bedrock2:
<<: *ci-template
diff --git a/Makefile.ci b/Makefile.ci
index fb4f275e9e..8234da0869 100644
--- a/Makefile.ci
+++ b/Makefile.ci
@@ -8,7 +8,9 @@
## # (see LICENSE file for the text of the license) ##
##########################################################################
-CI_TARGETS=ci-bedrock2 \
+CI_TARGETS= \
+ ci-aac-tactics \
+ ci-bedrock2 \
ci-bignums \
ci-color \
ci-compcert \
diff --git a/dev/build/windows/makecoq_mingw.sh b/dev/build/windows/makecoq_mingw.sh
index b8bea755e0..c3d895784e 100755
--- a/dev/build/windows/makecoq_mingw.sh
+++ b/dev/build/windows/makecoq_mingw.sh
@@ -1851,7 +1851,7 @@ function make_addon_coquelicot {
function make_addon_aactactics {
installer_addon_dependency aac
- if build_prep_overlay aactactis; then
+ if build_prep_overlay aactactics; then
installer_addon_section aac "AAC" "Coq plugin for extensible associative and commutative rewriting" ""
log1 make
log2 make install
diff --git a/dev/ci/ci-aac-tactics.sh b/dev/ci/ci-aac-tactics.sh
new file mode 100755
index 0000000000..896a0ddf66
--- /dev/null
+++ b/dev/ci/ci-aac-tactics.sh
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+
+ci_dir="$(dirname "$0")"
+. "${ci_dir}/ci-common.sh"
+
+git_download aactactics
+
+( cd "${CI_BUILD_DIR}/aactactics" && make && make install )
diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh
index 511eaaba9c..50d4d21637 100755
--- a/dev/ci/ci-basic-overlay.sh
+++ b/dev/ci/ci-basic-overlay.sh
@@ -252,6 +252,6 @@
########################################################################
# aac-tactics
########################################################################
-: "${aactactis_CI_REF:=master}"
-: "${aactactis_CI_GITURL:=https://github.com/coq-community/aac-tactics}"
-: "${aactactis_CI_ARCHIVEURL:=${aactactis_CI_GITURL}/archive}"
+: "${aactactics_CI_REF:=master}"
+: "${aactactics_CI_GITURL:=https://github.com/coq-community/aac-tactics}"
+: "${aactactics_CI_ARCHIVEURL:=${aactactics_CI_GITURL}/archive}"