Skip to content

Commit

Permalink
change boilerplate for 8.19 and beyond
Browse files Browse the repository at this point in the history
  • Loading branch information
palmskog committed Jan 2, 2024
1 parent fb855a7 commit 1663ecf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,19 @@ jobs:
matrix:
image:
- 'coqorg/coq:dev'
- 'coqorg/coq:8.19'
- 'coqorg/coq:8.18'
- 'coqorg/coq:8.17'
- 'coqorg/coq:8.16'
- 'coqorg/coq:8.15'
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: coq-community/docker-coq-action@v1
with:
opam_file: 'coq-coq-art.opam'
custom_image: ${{ matrix.image }}


# See also:
# https://github.com/coq-community/docker-coq-action#readme
# https://github.com/erikmd/docker-coq-github-action-demo
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Follow the instructions on https://github.com/coq-community/templates to regener
[![Zulip][zulip-shield]][zulip-link]
[![DOI][doi-shield]][doi-link]

[docker-action-shield]: https://github.com/coq-community/coq-art/workflows/Docker%20CI/badge.svg?branch=master
[docker-action-link]: https://github.com/coq-community/coq-art/actions?query=workflow:"Docker%20CI"
[docker-action-shield]: https://github.com/coq-community/coq-art/actions/workflows/docker-action.yml/badge.svg?branch=master
[docker-action-link]: https://github.com/coq-community/coq-art/actions/workflows/docker-action.yml

[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
[contributing-link]: https://github.com/coq-community/manifesto/blob/master/CONTRIBUTING.md
Expand Down Expand Up @@ -40,7 +40,7 @@ out of over 200 exercises from the book.
- Yves Bertot ([**@ybertot**](https://github.com/ybertot))
- Pierre Castéran ([**@Casteran**](https://github.com/Casteran))
- License: [MIT License](LICENSE)
- Compatible Coq versions: 8.15 or later (use the corresponding release for other Coq versions)
- Compatible Coq versions: 8.16 or later (use the corresponding release for other Coq versions)
- Additional dependencies: none
- Coq namespace: `coqart`
- Related publication(s):
Expand Down
2 changes: 1 addition & 1 deletion coq-coq-art.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ out of over 200 exercises from the book."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {(>= "8.15" & < "8.18~") | (= "dev")}
"coq" {(>= "8.16" & < "8.20") | (= "dev")}
]

tags: [
Expand Down
8 changes: 5 additions & 3 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,15 @@ license:
identifier: MIT

supported_coq_versions:
text: 8.15 or later (use the corresponding release for other Coq versions)
opam: '{(>= "8.15" & < "8.18~") | (= "dev")}'
text: 8.16 or later (use the corresponding release for other Coq versions)
opam: '{(>= "8.16" & < "8.20") | (= "dev")}'

tested_coq_opam_versions:
- version: dev
- version: '8.19'
- version: '8.18'
- version: '8.17'
- version: '8.16'
- version: '8.15'

namespace: coqart

Expand Down

0 comments on commit 1663ecf

Please sign in to comment.