diff options
| author | Emilio Jesus Gallego Arias | 2018-06-02 19:39:28 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-06-02 20:34:50 +0200 |
| commit | d19d296c2b584954e9adb97eed7c705cc1db4bc7 (patch) | |
| tree | 50b8ffbc5cc96c83fa9d69299b555c295d1cafe1 /dev/ci/ci-common.sh | |
| parent | 3a36761a27487e8917e1b59b59abacc2a7e65b95 (diff) | |
[ci] Expose updated `OCAMLPATH` for CI users.
This is needed for CI packages that use `META.coq` such as in
https://github.com/coq/coq/pull/7656 .
Diffstat (limited to 'dev/ci/ci-common.sh')
| -rw-r--r-- | dev/ci/ci-common.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dev/ci/ci-common.sh b/dev/ci/ci-common.sh index f867fd189b..5b5cbd11ae 100644 --- a/dev/ci/ci-common.sh +++ b/dev/ci/ci-common.sh @@ -8,6 +8,7 @@ export NJOBS if [ -n "${GITLAB_CI}" ]; then + export OCAMLPATH="$PWD/_install_ci/lib:$OCAMLPATH" export COQBIN="$PWD/_install_ci/bin" export CI_BRANCH="$CI_COMMIT_REF_NAME" if [[ ${CI_BRANCH#pr-} =~ ^[0-9]*$ ]] @@ -27,6 +28,7 @@ else CI_BRANCH="$(git rev-parse --abbrev-ref HEAD)" export CI_BRANCH fi + export OCAMLPATH="$PWD:$OCAMLPATH" export COQBIN="$PWD/bin" fi export PATH="$COQBIN:$PATH" |
