diff options
| author | Gaëtan Gilbert | 2018-12-10 13:20:12 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2018-12-10 13:20:12 +0100 |
| commit | 01f4470c330ce52b03046d5b98cd5af3ac87272e (patch) | |
| tree | ddbd9aeb22acace68e849badbf3750bfe7ce55b7 /dev | |
| parent | cb287591722e4d44671eb8c90138cf063ac5b707 (diff) | |
| parent | c6f998985813b1eb91e909d7d7408bc3e44f9d3b (diff) | |
Merge PR #9177: add relation-algebra to CI test suite
Diffstat (limited to 'dev')
| -rwxr-xr-x | dev/ci/ci-basic-overlay.sh | 7 | ||||
| -rwxr-xr-x | dev/ci/ci-relation-algebra.sh | 8 |
2 files changed, 15 insertions, 0 deletions
diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index 9727d42a90..e0f4f50fa9 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}" +: "${relation_algebra_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 ) |
