Skip to content

Commit

Permalink
Merge pull request #61 from coq-community/ci-weekly
Browse files Browse the repository at this point in the history
switch Docker CI cron to weekly, explicit dependency on HB
  • Loading branch information
palmskog authored Jul 24, 2024
2 parents c9429eb + 832787e commit 1efde3a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
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

0 comments on commit 1efde3a

Please sign in to comment.