-
Notifications
You must be signed in to change notification settings - Fork 4
49 lines (46 loc) · 1.19 KB
/
build.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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "**"
schedule:
# every day at 11am UTC (6am EST)
- cron: "0 11 * * *"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
coq:
- "dev"
- "8.19"
- "8.18"
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: coq-community/docker-coq-action@v1
with:
opam_file: "iris-simp-lang.opam"
coq_version: "${{ matrix.coq }}"
before_install: |
startGroup "Add Iris repo"
opam repo add iris-dev https://gitlab.mpi-sws.org/iris/opam.git
endGroup
startGroup "Print opam config"
opam config list; opam repo list; opam list
endGroup
build-release:
name: build (released iris, latest coq)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: coq-community/docker-coq-action@v1
with:
opam_file: "iris-simp-lang.opam"
coq_version: "latest"
# See also:
# https://github.com/coq-community/docker-coq-action#readme
# https://github.com/erikmd/docker-coq-github-action-demo