-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
79 lines (69 loc) · 1.49 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
image: ralfjung/opam-ci:opam2
stages:
- build
variables:
CPU_CORES: "10"
.template: &template
stage: build
tags:
- fp
script:
- git clone https://gitlab.mpi-sws.org/iris/ci.git ci -b opam2
- ci/buildjob
cache:
key: "$CI_JOB_NAME"
paths:
- _opam/
only:
- /^master/@iris/iris
- /^ci/@iris/iris
except:
- triggers
- schedules
- api
## Build jobs
build-coq.dev:
<<: *template
variables:
OPAM_PINS: "coq version dev"
build-coq.8.13.1:
<<: *template
variables:
OPAM_PINS: "coq version 8.13.1"
DENY_WARNINGS: "1"
OPAM_PKG: "1"
DOC_DIR: "[email protected]:iris"
DOC_OPTS: "--external https://plv.mpi-sws.org/coqdoc/stdpp/ stdpp"
tags:
- fp-timing
build-coq.8.12.2:
<<: *template
variables:
OPAM_PINS: "coq version 8.12.2"
DENY_WARNINGS: "1"
build-coq.8.11.2:
<<: *template
variables:
OPAM_PINS: "coq version 8.11.2"
# Nightly job with a known-to-work Coq version
# (so failures must be caused by std++)
build-stdpp.dev-coq.8.13.0:
<<: *template
variables:
OPAM_PINS: "coq version 8.13.0 coq-stdpp.dev git git+https://gitlab.mpi-sws.org/iris/stdpp.git#$STDPP_REV"
except:
only:
- triggers
- schedules
- api
# Nightly job with latest Coq beta branch
build-stdpp.dev-coq.8.13.dev:
<<: *template
variables:
OPAM_PINS: "coq version 8.13.dev coq-stdpp.dev git git+https://gitlab.mpi-sws.org/iris/stdpp.git#$STDPP_REV"
CI_COQCHK: "1"
except:
only:
- triggers
- schedules
- api