CI #1688
This file contains hidden or 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 Tuesday at 10am UTC (5am EST) | |
| - cron: "0 10 * * tue" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| coq: | |
| - "dev" | |
| - "9.0" | |
| - "8.20" | |
| 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 |