Skip to content

Commit a9a6ca8

Browse files
authored
Merge pull request #113 from math-comp/templates
Switch to Rocq-community templates
2 parents dfbb14f + ba3acd6 commit a9a6ca8

6 files changed

Lines changed: 720 additions & 104 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
workflow_dispatch:
13+
14+
jobs:
15+
build:
16+
# the OS must be GNU/Linux to be able to use the docker-coq-action
17+
runs-on: ubuntu-latest
18+
strategy:
19+
matrix:
20+
image:
21+
- 'mathcomp/mathcomp:2.4.0-coq-8.20'
22+
- 'mathcomp/mathcomp:2.4.0-rocq-prover-9.0'
23+
- 'mathcomp/mathcomp:2.4.0-rocq-prover-9.1'
24+
- 'mathcomp/mathcomp:2.5.0-coq-8.20'
25+
- 'mathcomp/mathcomp:2.5.0-rocq-prover-9.0'
26+
- 'mathcomp/mathcomp:2.5.0-rocq-prover-9.1'
27+
- 'mathcomp/mathcomp-dev:rocq-prover-9.0'
28+
- 'mathcomp/mathcomp-dev:rocq-prover-9.1'
29+
- 'mathcomp/mathcomp-dev:rocq-prover-dev'
30+
fail-fast: false
31+
steps:
32+
- uses: actions/checkout@v4
33+
- uses: coq-community/docker-coq-action@v1
34+
with:
35+
opam_file: 'coq-mathcomp-multinomials.opam'
36+
custom_image: ${{ matrix.image }}
37+
38+
39+
# See also:
40+
# https://github.com/coq-community/docker-coq-action#readme
41+
# https://github.com/erikmd/docker-coq-github-action-demo

0 commit comments

Comments
 (0)