From 41f0d79fcf6dd41d79d91d85e43fc9a9d5b32ed6 Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Wed, 7 Nov 2018 17:00:29 +0100 Subject: [PATCH] use 8.8.0 as default Coq version; test against Coq master with coqchk --- .gitlab-ci.yml | 15 +++++++++++---- README.md | 2 +- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3b225766..f60f7a07 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,13 +26,20 @@ variables: ## Build jobs -build-coq.8.8.0: +build-coq.dev: <<: *template variables: - OPAM_PINS: "coq version 8.8.0" + OCAML: "ocaml-base-compiler.4.07.0" + OPAM_PINS: "coq version dev" + VALIDATE: "1" + +build-coq.8.8.2: + <<: *template + variables: + OPAM_PINS: "coq version 8.8.2" OPAM_PKG: "coq-lambda-rust" TIMING_PROJECT: "lambda-rust" - TIMING_CONF: "coq-8.8.0" + TIMING_CONF: "coq-8.8.2" tags: - fp-timing @@ -44,7 +51,7 @@ build-coq.8.7.2: build-iris.dev: <<: *template variables: - OPAM_PINS: "coq version 8.7.2 coq-stdpp.dev git git+https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp/#$STDPP_REV coq-iris.dev git git+https://gitlab.mpi-sws.org/FP/iris-coq.git#$IRIS_REV" + OPAM_PINS: "coq version 8.8.2 coq-stdpp.dev git git+https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp/#$STDPP_REV coq-iris.dev git git+https://gitlab.mpi-sws.org/FP/iris-coq.git#$IRIS_REV" except: only: - triggers diff --git a/README.md b/README.md index 034b601e..03f5b2d4 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This is the Coq development accompanying lambda-Rust. This version is known to compile with: - - Coq 8.7.2 / 8.8.0 + - Coq 8.7.2 / 8.8.2 - A development version of [Iris](https://gitlab.mpi-sws.org/FP/iris-coq/) ## Building from source -- GitLab