aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo Zimmermann2020-05-19 18:25:23 +0200
committerThéo Zimmermann2020-05-19 18:25:23 +0200
commit82d26fe3bd3be5b97897ce3b07cfe69bc68c1a88 (patch)
treefdf217a931a14f82704014de6548844b4cd07f6a
parented0f2f08e31ee4e645aa6e52970ddefc60f1f4f9 (diff)
Use dev version for opam git pinning in .gitlab-ci.yml.
The main reason for this change is to reduce the number of places where the Coq version is hardcoded. But moreover, I don't see why that wouldn't work since dev is precisely the version that is defined in the opam files.
-rw-r--r--.gitlab-ci.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fc0cdebcf0..4139a0dbe5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -366,12 +366,11 @@ pkg:opam:
dependencies: []
script:
- set -e
- - opam pin add --kind=path coq.$COQ_VERSION .
- - opam pin add --kind=path coqide-server.$COQ_VERSION .
- - opam pin add --kind=path coqide.$COQ_VERSION .
+ - opam pin add --kind=path coq.dev .
+ - opam pin add --kind=path coqide-server.dev .
+ - opam pin add --kind=path coqide.dev .
- set +e
variables:
- COQ_VERSION: "8.13"
OPAM_SWITCH: "edge"
OPAM_VARIANT: "+flambda"
only: *full-ci