Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switch Docker CI cron to weekly, explicit dependency on HB #61

Merged
merged 1 commit into from
Jul 24, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Docker CI

on:
schedule:
- cron: '0 5 * * *'
- cron: '0 5 * * 0'
push:
branches:
- master
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ basic plane topology definitions, and a theory of combinatorial hypermaps.
- License: [CeCILL-B](LICENSE)
- Compatible Coq versions: 8.16 or later
- Additional dependencies:
- [MathComp ssreflect 2.1 or later](https://math-comp.github.io)
- [MathComp ssreflect 2.1.0 or later](https://math-comp.github.io)
- [MathComp algebra](https://math-comp.github.io)
- [Hierarchy Builder](https://github.com/math-comp/hierarchy-builder) 1.5.0 or later
- Coq namespace: `fourcolor`
- Related publication(s):
- [Formal Proof—The Four-Color Theorem](https://www.ams.org/notices/200811/tx081101382p.pdf)
Expand Down
5 changes: 3 additions & 2 deletions coq-fourcolor.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ basic plane topology definitions, and a theory of combinatorial hypermaps."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {(>= "8.16" & < "8.20~") | (= "dev")}
"coq-mathcomp-ssreflect" {(>= "2.1.0" & < "2.3~") | (= "dev")}
"coq" {>= "8.16"}
"coq-mathcomp-ssreflect" {>= "2.1.0"}
"coq-mathcomp-algebra"
"coq-hierarchy-builder" {>= "1.5.0"}
]

tags: [
Expand Down
15 changes: 10 additions & 5 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ license:

supported_coq_versions:
text: 8.16 or later
opam: '{(>= "8.16" & < "8.20~") | (= "dev")}'
opam: '{>= "8.16"}'

tested_coq_opam_versions:
- version: '2.1.0-coq-8.16'
Expand All @@ -55,20 +55,25 @@ tested_coq_opam_versions:
- version: 'coq-dev'
repo: 'mathcomp/mathcomp-dev'

# test master every day at 05:00 UTC
# test master every Sunday at 05:00 UTC
# (mathcomp/mathcomp-dev is rebuilt every day at 04:00 Paris time)
ci_cron_schedule: '0 5 * * *'
ci_cron_schedule: '0 5 * * 0'

dependencies:
- opam:
name: coq-mathcomp-ssreflect
version: '{(>= "2.1.0" & < "2.3~") | (= "dev")}'
version: '{>= "2.1.0"}'
description: |-
[MathComp ssreflect 2.1 or later](https://math-comp.github.io)
[MathComp ssreflect 2.1.0 or later](https://math-comp.github.io)
- opam:
name: coq-mathcomp-algebra
description: |-
[MathComp algebra](https://math-comp.github.io)
- opam:
name: coq-hierarchy-builder
version: '{>= "1.5.0"}'
description: |-
[Hierarchy Builder](https://github.com/math-comp/hierarchy-builder) 1.5.0 or later

namespace: fourcolor

Expand Down
Loading