diff options
author | Pierre Letouzey <pierre.letouzey@inria.fr> | 2017-06-06 21:22:15 +0200 |
---|---|---|
committer | Pierre Letouzey <pierre.letouzey@inria.fr> | 2017-06-13 10:33:00 +0200 |
commit | 0fd563c07433db5aad5c5a3f196ea692bb60c04e (patch) | |
tree | 3194b732e6a1f88c3c677bed55e56ed021f6e869 /dev/ci | |
parent | 08e86c0af77e83b8569fe611b9fb74e772d710a8 (diff) |
[travis] extra test ci-bignums (+factorize other scripts)
Diffstat (limited to 'dev/ci')
-rw-r--r-- | dev/ci/ci-basic-overlay.sh | 6 | ||||
-rwxr-xr-x | dev/ci/ci-bignums.sh | 16 | ||||
-rwxr-xr-x | dev/ci/ci-color.sh | 4 | ||||
-rwxr-xr-x | dev/ci/ci-formal-topology.sh | 4 | ||||
-rwxr-xr-x | dev/ci/ci-math-classes.sh | 4 |
5 files changed, 25 insertions, 9 deletions
diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index 3adc31935..98d342412 100644 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -133,3 +133,9 @@ ######################################################################## : ${tlc_CI_BRANCH:=master} : ${tlc_CI_GITURL:=https://gforge.inria.fr/git/tlc/tlc.git} + +######################################################################## +# Bignums +######################################################################## +: ${bignums_CI_BRANCH:=master} +: ${bignums_CI_GITURL:=https://github.com/coq/bignums.git} diff --git a/dev/ci/ci-bignums.sh b/dev/ci/ci-bignums.sh new file mode 100755 index 000000000..ff5935d4c --- /dev/null +++ b/dev/ci/ci-bignums.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +ci_dir="$(dirname "$0")" + +# This script could be included inside other ones +# Let's avoid to source ci-common twice in this case +if [ -z "${CI_BUILD_DIR}"]; +then + source ${ci_dir}/ci-common.sh +fi + +bignums_CI_DIR=${CI_BUILD_DIR}/Bignums + +git_checkout ${bignums_CI_BRANCH} ${bignums_CI_GITURL} ${bignums_CI_DIR} + +( cd ${bignums_CI_DIR} && make -j ${NJOBS} && make install) diff --git a/dev/ci/ci-color.sh b/dev/ci/ci-color.sh index cb212e845..57f569858 100755 --- a/dev/ci/ci-color.sh +++ b/dev/ci/ci-color.sh @@ -7,9 +7,7 @@ Color_CI_DIR=${CI_BUILD_DIR}/color # Setup Bignums -git_checkout master https://github.com/coq/bignums.git bignums - -( cd bignums && make -j ${NJOBS} && make install ) +source ${ci_dir}/ci-bignums.sh # Compiles CoLoR diff --git a/dev/ci/ci-formal-topology.sh b/dev/ci/ci-formal-topology.sh index 87171ba0b..64b78c039 100755 --- a/dev/ci/ci-formal-topology.sh +++ b/dev/ci/ci-formal-topology.sh @@ -11,9 +11,7 @@ formal_topology_CI_DIR=${CI_BUILD_DIR}/formal-topology # Setup Bignums -git_checkout master https://github.com/coq/bignums.git bignums - -( cd bignums && make -j ${NJOBS} && make install ) +source ${ci_dir}/ci-bignums.sh # Setup Math-Classes diff --git a/dev/ci/ci-math-classes.sh b/dev/ci/ci-math-classes.sh index 10b9d7af2..46581c638 100755 --- a/dev/ci/ci-math-classes.sh +++ b/dev/ci/ci-math-classes.sh @@ -9,9 +9,7 @@ Corn_CI_DIR=${CI_BUILD_DIR}/corn # Setup Bignums -git_checkout master https://github.com/coq/bignums.git bignums - -( cd bignums && make -j ${NJOBS} && make install ) +source ${ci_dir}/ci-bignums.sh # Setup Math-Classes |