Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ jobs:
strategy:
matrix:
image:
- 'mathcomp/mathcomp:2.4.0-coq-8.20'
- 'mathcomp/mathcomp:2.4.0-rocq-prover-9.0'
- 'mathcomp/mathcomp:2.4.0-rocq-prover-9.1'
- 'mathcomp/mathcomp:2.5.0-coq-8.20'
- 'mathcomp/mathcomp:2.5.0-rocq-prover-9.0'
- 'mathcomp/mathcomp:2.5.0-rocq-prover-9.1'
- 'mathcomp/mathcomp:2.6.0-rocq-prover-9.0'
- 'mathcomp/mathcomp:2.6.0-rocq-prover-9.1'
- 'mathcomp/mathcomp:2.6.0-rocq-prover-9.2'
- 'mathcomp/mathcomp-dev:rocq-prover-9.0'
- 'mathcomp/mathcomp-dev:rocq-prover-9.1'
- 'mathcomp/mathcomp-dev:rocq-prover-9.2'
- 'mathcomp/mathcomp-dev:rocq-prover-dev'
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ KNOWNFILES := Makefile Make Make.test-suite

.DEFAULT_GOAL := invoke-coqmakefile

COQMAKEFILE = $(COQBIN)coq_makefile
COQMAKEFILE = $(COQBIN)rocq makefile
COQMAKE = $(MAKE) --no-print-directory -f Makefile.coq
COQMAKE_TESTSUITE = $(MAKE) --no-print-directory -f Makefile.test-suite.coq

Expand Down
7 changes: 0 additions & 7 deletions Makefile.coq.local

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ by extending the zify tactic.
- Author(s):
- Kazuhiko Sakaguchi (initial)
- License: [CeCILL-B Free Software License Agreement](CeCILL-B)
- Compatible Rocq/Coq versions: 8.20 or later
- Compatible Rocq/Coq versions: 9.0 or later
- Additional dependencies:
- Rocq standard library
- [MathComp](https://math-comp.github.io) ssreflect 2.4 or later
- [MathComp](https://math-comp.github.io) algebra
- Rocq/Coq namespace: `mathcomp.zify`
Expand Down
20 changes: 14 additions & 6 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,32 +25,40 @@ license:
file: CeCILL-B

supported_coq_versions:
text: 8.20 or later
opam: '{>= "8.20"}'
text: 9.0 or later
opam: '{>= "9.0"}'

tested_coq_nix_versions:

tested_coq_opam_versions:
- version: '2.4.0-coq-8.20'
repo: 'mathcomp/mathcomp'
- version: '2.4.0-rocq-prover-9.0'
repo: 'mathcomp/mathcomp'
- version: '2.4.0-rocq-prover-9.1'
repo: 'mathcomp/mathcomp'
- version: '2.5.0-coq-8.20'
repo: 'mathcomp/mathcomp'
- version: '2.5.0-rocq-prover-9.0'
repo: 'mathcomp/mathcomp'
- version: '2.5.0-rocq-prover-9.1'
repo: 'mathcomp/mathcomp'
- version: '2.6.0-rocq-prover-9.0'
repo: 'mathcomp/mathcomp'
- version: '2.6.0-rocq-prover-9.1'
repo: 'mathcomp/mathcomp'
- version: '2.6.0-rocq-prover-9.2'
repo: 'mathcomp/mathcomp'
- version: 'rocq-prover-9.0'
repo: 'mathcomp/mathcomp-dev'
- version: 'rocq-prover-9.1'
repo: 'mathcomp/mathcomp-dev'
- version: 'rocq-prover-9.2'
repo: 'mathcomp/mathcomp-dev'
- version: 'rocq-prover-dev'
repo: 'mathcomp/mathcomp-dev'

dependencies:
- opam:
name: rocq-stdlib
description: |-
Rocq standard library
- opam:
name: rocq-mathcomp-ssreflect
version: '{>= "2.4"}'
Expand Down
3 changes: 2 additions & 1 deletion rocq-mathcomp-zify.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ build: [make "-j%{jobs}%"]
run-test: [make "-j%{jobs}%" "test-suite"]
install: [make "install"]
depends: [
"coq" {>= "8.20"}
"rocq-core" {>= "9.0"}
"rocq-stdlib"
"rocq-mathcomp-ssreflect" {>= "2.4"}
"rocq-mathcomp-algebra"
]
Expand Down
Loading