forked from rems-project/islaris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
62 lines (56 loc) · 1.56 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
image: ralfjung/opam-ci:opam2
stages:
- build
variables:
# dune takes care of parallelization itself and does not like running in parallel
CPU_CORES: "1"
MAKE_TARGET: "all_and_tests"
OCAML: "ocaml-variants.4.14.0+options ocaml-option-flambda"
.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:
- main@iris/isla-coq
- /^ci/@iris/isla-coq
- /^time/@iris/isla-coq
except:
- triggers
- schedules
- api
## Build jobs
build-coq.8.19.0-timing:
<<: *template
variables:
OPAM_PINS: "coq version 8.19.0 isla-lang git git+https://github.com/rems-project/isla-lang.git#309be26729b511570e2d31f69c6ba1ce1dc00779"
DENY_WARNINGS: "1"
# OPAM_PKG: "1"
only:
- main@iris/isla-coq
- /^time/@iris/isla-coq
# timing only for main and time/ branches
tags:
- fp-timing
build-coq.8.19.0:
<<: *template
variables:
OPAM_PINS: "coq version 8.19.0 isla-lang git git+https://github.com/rems-project/isla-lang.git#309be26729b511570e2d31f69c6ba1ce1dc00779"
DENY_WARNINGS: "1"
only:
- /^ci/@iris/isla-coq
trigger-iris.dev:
<<: *template
variables:
OPAM_PINS: "coq version 8.19.0 coq-stdpp.dev git git+https://gitlab.mpi-sws.org/iris/stdpp.git#$STDPP_REV coq-iris.dev git git+https://gitlab.mpi-sws.org/iris/iris.git#$IRIS_REV isla-lang git git+https://github.com/rems-project/isla-lang.git#309be26729b511570e2d31f69c6ba1ce1dc00779"
except:
only:
- triggers
- schedules
- api