Skip to content

Commit 8982681

Browse files
committed
Switch to Rocq-community templates
1 parent dfbb14f commit 8982681

6 files changed

Lines changed: 706 additions & 105 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# This file was generated from `meta.yml`, please do not edit manually.
2+
# Follow the instructions on https://github.com/coq-community/templates to regenerate.
3+
name: Docker CI
4+
5+
on:
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
branches:
11+
- '**'
12+
13+
jobs:
14+
build:
15+
# the OS must be GNU/Linux to be able to use the docker-coq-action
16+
runs-on: ubuntu-latest
17+
strategy:
18+
matrix:
19+
image:
20+
- 'mathcomp/mathcomp:2.4.0-coq-8.20'
21+
- 'mathcomp/mathcomp:2.4.0-rocq-prover-9.0'
22+
- 'mathcomp/mathcomp:2.4.0-rocq-prover-dev'
23+
- 'mathcomp/mathcomp-dev:coq-8.20'
24+
- 'mathcomp/mathcomp-dev:rocq-prover-9.0'
25+
- 'mathcomp/mathcomp-dev:rocq-prover-dev'
26+
fail-fast: false
27+
steps:
28+
- uses: actions/checkout@v4
29+
- uses: coq-community/docker-coq-action@v1
30+
with:
31+
opam_file: 'coq-mathcomp-multinomials.opam'
32+
custom_image: ${{ matrix.image }}
33+
34+
35+
# See also:
36+
# https://github.com/coq-community/docker-coq-action#readme
37+
# https://github.com/erikmd/docker-coq-github-action-demo

0 commit comments

Comments
 (0)