diff options
| author | Maxime Dénès | 2017-03-13 11:33:48 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-03-13 11:33:48 +0100 |
| commit | ecacc9af6100f76e95acc24e777026bfc9c4d921 (patch) | |
| tree | 4c319de83cb07833fb253b2c3cd68d8a882c639b /dev/ci/ci-coquelicot.sh | |
| parent | e2135c2f5fd8846c30d8099eed523fe06202b614 (diff) | |
| parent | fd5c5da475baea11d7ee2e1c2e965d7faeed3f33 (diff) | |
Merge PR#456: Proposing improvement to the CI targets for local use
Diffstat (limited to 'dev/ci/ci-coquelicot.sh')
| -rwxr-xr-x | dev/ci/ci-coquelicot.sh | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/dev/ci/ci-coquelicot.sh b/dev/ci/ci-coquelicot.sh index 94bd5e468f..9dfdb87451 100755 --- a/dev/ci/ci-coquelicot.sh +++ b/dev/ci/ci-coquelicot.sh @@ -1,12 +1,14 @@ -#!/bin/bash +#!/usr/bin/env bash -# $0 is not the safest way, but... ci_dir="$(dirname "$0")" source ${ci_dir}/ci-common.sh +Coquelicot_CI_BRANCH=master +Coquelicot_CI_GITURL=https://scm.gforge.inria.fr/anonscm/git/coquelicot/coquelicot.git +Coquelicot_CI_DIR=${CI_BUILD_DIR}/coquelicot + install_ssreflect -# Setup coquelicot -git_checkout master https://scm.gforge.inria.fr/anonscm/git/coquelicot/coquelicot.git coquelicot +git_checkout ${Coquelicot_CI_BRANCH} ${Coquelicot_CI_GITURL} ${Coquelicot_CI_DIR} -( cd coquelicot && ./autogen.sh && ./configure && ./remake -j${NJOBS} ) +( cd ${Coquelicot_CI_DIR} && ./autogen.sh && ./configure && ./remake -j${NJOBS} ) |
