From 9f33dc1ac4e06c0bda64fa817cb3fbbbb56cc0b1 Mon Sep 17 00:00:00 2001 From: Christian Doczkal Date: Sun, 9 Dec 2018 13:09:08 +0100 Subject: add relation-algebra to CI test suite --- dev/ci/ci-basic-overlay.sh | 7 +++++++ dev/ci/ci-relation-algebra.sh | 8 ++++++++ 2 files changed, 15 insertions(+) create mode 100755 dev/ci/ci-relation-algebra.sh (limited to 'dev') diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index 9727d42a90..1d1338b075 100755 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -266,3 +266,10 @@ : "${paramcoq_CI_REF:=master}" : "${paramcoq_CI_GITURL:=https://github.com/coq-community/paramcoq}" : "${paramcoq_CI_ARCHIVEURL:=${paramcoq_CI_GITURL}/archive}" + +######################################################################## +# relation-algebra +######################################################################## +: "${relation_algebra_CI_REF:=master}" +: "${relation_algebra_CI_GITURL:=https://github.com/damien-pous/relation-algebra}" +: "${aac_tactics_CI_ARCHIVEURL:=${relation_algebra_CI_GITURL}/archive}" diff --git a/dev/ci/ci-relation-algebra.sh b/dev/ci/ci-relation-algebra.sh new file mode 100755 index 0000000000..84bed5bdfe --- /dev/null +++ b/dev/ci/ci-relation-algebra.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +ci_dir="$(dirname "$0")" +. "${ci_dir}/ci-common.sh" + +git_download relation_algebra + +( cd "${CI_BUILD_DIR}/relation_algebra" && make && make install ) -- cgit v1.2.3 From c6f998985813b1eb91e909d7d7408bc3e44f9d3b Mon Sep 17 00:00:00 2001 From: Christian Doczkal Date: Sun, 9 Dec 2018 14:01:06 +0100 Subject: fix copy-paste error in CI_ARCHIVEURL --- dev/ci/ci-basic-overlay.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev') diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index 1d1338b075..e0f4f50fa9 100755 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -272,4 +272,4 @@ ######################################################################## : "${relation_algebra_CI_REF:=master}" : "${relation_algebra_CI_GITURL:=https://github.com/damien-pous/relation-algebra}" -: "${aac_tactics_CI_ARCHIVEURL:=${relation_algebra_CI_GITURL}/archive}" +: "${relation_algebra_CI_ARCHIVEURL:=${relation_algebra_CI_GITURL}/archive}" -- cgit v1.2.3