Skip to content
Snippets Groups Projects
Commit 9f808c37 authored by Ralf Jung's avatar Ralf Jung
Browse files

set up MR pipelines

parent 86f651b4
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,23 @@ stages:
variables:
CPU_CORES: "10"
.only_branches: &only_branches
only:
- /^master/@iris/iris
- /^ci/@iris/iris
.only_mr: &only_mr
only:
- merge_requests
.branches_and_mr: &branches_and_mr
only:
- /^master/@iris/iris
- /^ci/@iris/iris
- merge_requests
.template: &template
<<: *only_branches
stage: build
tags:
- fp
......@@ -17,9 +33,6 @@ variables:
key: "$CI_JOB_NAME"
paths:
- _opam/
only:
- /^master/@iris/iris
- /^ci/@iris/iris
except:
- triggers
- schedules
......@@ -29,8 +42,11 @@ variables:
build-coq.dev:
<<: *template
<<: *branches_and_mr
variables:
OPAM_PINS: "coq version dev"
# Pinning a commit to avoid constant re-builds in MR pipelines
COQ_REV: "f16b7c75bcc8651e43ec1f0c8ae6744748665213"
OPAM_PINS: "coq-core.dev git git+https://github.com/coq/coq#$COQ_REV coq-stdlib.dev git git+https://github.com/coq/coq#$COQ_REV coq.dev git git+https://github.com/coq/coq#$COQ_REV"
MANGLE_NAMES: "1"
build-coq.8.13.2:
......@@ -46,6 +62,7 @@ build-coq.8.13.2:
build-coq.8.12.2:
<<: *template
<<: *branches_and_mr
variables:
OPAM_PINS: "coq version 8.12.2"
DENY_WARNINGS: "1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment