CI #1478
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |