refresh boilerplate and CI and bump Dune to 3.5 or later #16
Workflow file for this run
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: Docker CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
# the OS must be GNU/Linux to be able to use the docker-coq-action | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
image: | |
- 'mathcomp/mathcomp:1.19.0-coq-8.19' | |
- 'mathcomp/mathcomp:1.18.0-coq-8.18' | |
- 'mathcomp/mathcomp:1.17.0-coq-8.17' | |
- 'mathcomp/mathcomp:1.17.0-coq-8.16' | |
- 'mathcomp/mathcomp:1.15.0-coq-8.15' | |
- 'mathcomp/mathcomp:1.14.0-coq-8.15' | |
- 'mathcomp/mathcomp:1.14.0-coq-8.14' | |
- 'mathcomp/mathcomp:1.13.0-coq-8.15' | |
- 'mathcomp/mathcomp:1.13.0-coq-8.14' | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coq-community/docker-coq-action@v1 | |
with: | |
custom_image: ${{ matrix.image }} | |
custom_script: | | |
{{before_install}} | |
startGroup "Build disel dependencies" | |
opam pin add -n -y -k path coq-disel . | |
opam update -y | |
opam install -y -j $(nproc) coq-disel --deps-only | |
endGroup | |
startGroup "Build disel" | |
opam install -y -v -j $(nproc) coq-disel | |
opam list | |
endGroup | |
startGroup "Build disel-examples dependencies" | |
opam pin add -n -y -k path coq-disel-examples . | |
opam update -y | |
opam install -y -j $(nproc) coq-disel-examples --deps-only | |
endGroup | |
startGroup "Build disel-examples" | |
opam install -y -v -j $(nproc) coq-disel-examples | |
opam list | |
endGroup | |
startGroup "Uninstallation test" | |
opam remove -y coq-disel-examples | |
opam remove -y coq-disel | |
endGroup | |
# See also: | |
# https://github.com/coq-community/docker-coq-action#readme | |
# https://github.com/erikmd/docker-coq-github-action-demo |