Skip to content
Open
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
2 changes: 2 additions & 0 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
matrix:
image:
- 'rocq/rocq-prover:dev'
- 'rocq/rocq-prover:9.2'
- 'rocq/rocq-prover:9.1'
- 'rocq/rocq-prover:9.0'
- 'coqorg/coq:8.20'
- 'coqorg/coq:8.19'
Expand Down
9 changes: 5 additions & 4 deletions coq-corn.opam
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ build: [
]
install: [make "install"]
depends: [
"coq" {(>= "8.19" & < "9.1~") | (= "dev")}
"coq-math-classes" {(>= "8.8.1") | (= "dev")}
"coq-elpi" {(>= "1.18.0") | (= "dev")}
"coq-bignums"
("coq" {>= "8.19" & < "8.21~"}
| "rocq-core" {(>= "9.0" & < "9.3~") | (= "dev")})
("coq-math-classes" {>= "8.8.1"} | "rocq-math-classes")
("coq-elpi" {>= "1.18.0"} | "rocq-elpi")
"coq-bignums"
]

tags: [
Expand Down
15 changes: 12 additions & 3 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,20 @@ license:
identifier: GPL-2.0

supported_coq_versions:
text: Coq 8.19 or greater
opam: '{(>= "8.19" & < "8.20~") | (= "dev")}'
text: Coq 8.19 to 8.20 or Rocq 9.0 to 9.2
# Rocq 9.2 drops the `coq` compatibility opam package, so the compiler and
# elpi dependencies are hand-written as disjunctions (coq/rocq-core,
# coq-elpi/rocq-elpi) in coq-corn.opam; this field is kept for reference.
opam: '{>= "8.19" & < "8.21~"} | "rocq-core" {(>= "9.0" & < "9.3~") | (= "dev")}'

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you still need coq-core (contains the coqc etc binaries)


tested_coq_opam_versions:
tested_rocq_opam_versions:
- version: dev
- version: "9.2"
- version: "9.1"
- version: "9.0"

tested_coq_opam_versions:
- version: "8.20"
- version: "8.19"

dependencies:
Expand Down
Loading