Skip to content

Commit 9cfbd2a

Browse files
authored
Merge pull request #15 from coq-community/mathcomp-docker-images
Mathcomp docker images
2 parents 906966f + 473f07f commit 9cfbd2a

File tree

4 files changed

+19
-14
lines changed

4 files changed

+19
-14
lines changed

.github/workflows/docker-action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
strategy:
1818
matrix:
1919
image:
20-
- 'coqorg/coq:8.10'
21-
- 'coqorg/coq:8.11'
22-
- 'coqorg/coq:8.12'
23-
- 'coqorg/coq:8.13'
24-
- 'coqorg/coq:dev'
20+
- 'mathcomp/mathcomp-dev:coq-dev'
21+
- 'mathcomp/mathcomp:1.12.0-coq-8.13'
22+
- 'mathcomp/mathcomp:1.12.0-coq-8.12'
23+
- 'mathcomp/mathcomp:1.12.0-coq-8.11'
24+
- 'mathcomp/mathcomp:1.12.0-coq-8.10'
2525
fail-fast: false
2626
steps:
2727
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ axiomatization and extraction to OCaml native integers.
4242
- Compatible OCaml versions: 4.05 or later (not tested on previous versions)
4343
- Additional dependencies:
4444
- OCamlbuild
45-
- [MathComp](https://math-comp.github.io) 1.7.0 or later (`algebra` suffices)
45+
- [MathComp](https://math-comp.github.io) 1.12.0 or later (`algebra` suffices)
4646
- Coq namespace: `Bits`
4747
- Related publication(s):
4848
- [From Sets to Bits in Coq](https://hal.archives-ouvertes.fr/hal-01251943/document) doi:[10.1007/978-3-319-29604-3_2](https://doi.org/10.1007/978-3-319-29604-3_2)

coq-bits.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ depends: [
2121
"ocaml" {(>= "4.05" & < "4.13~")}
2222
"coq" {(>= "8.10" & < "8.14~") | (= "dev")}
2323
"ocamlbuild"
24-
"coq-mathcomp-algebra" {(>= "1.7" & < "1.13~") | (= "dev")}
24+
"coq-mathcomp-algebra" {(>= "1.12" & < "1.13~") | (= "dev")}
2525
]
2626

2727
tags: [

meta.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,26 @@ supported_coq_versions:
5555
opam: '{(>= "8.10" & < "8.14~") | (= "dev")}'
5656

5757
tested_coq_opam_versions:
58-
- version: '8.10'
59-
- version: '8.11'
60-
- version: '8.12'
61-
- version: '8.13'
62-
- version: dev
58+
- version: 'coq-dev'
59+
repo: 'mathcomp/mathcomp-dev'
60+
- version: '1.12.0-coq-8.13'
61+
repo: 'mathcomp/mathcomp'
62+
- version: '1.12.0-coq-8.12'
63+
repo: 'mathcomp/mathcomp'
64+
- version: '1.12.0-coq-8.11'
65+
repo: 'mathcomp/mathcomp'
66+
- version: '1.12.0-coq-8.10'
67+
repo: 'mathcomp/mathcomp'
6368

6469
dependencies:
6570
- opam:
6671
name: ocamlbuild
6772
description: OCamlbuild
6873
- opam:
6974
name: coq-mathcomp-algebra
70-
version: '{(>= "1.7" & < "1.13~") | (= "dev")}'
75+
version: '{(>= "1.12" & < "1.13~") | (= "dev")}'
7176
description: |-
72-
[MathComp](https://math-comp.github.io) 1.7.0 or later (`algebra` suffices)
77+
[MathComp](https://math-comp.github.io) 1.12.0 or later (`algebra` suffices)
7378
7479
namespace: Bits
7580

0 commit comments

Comments
 (0)