-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump MathComp version to >= 1.12.0 (#3)
* Bump MathComp version to 1.12.0 * Cleanup
- Loading branch information
Showing
49 changed files
with
1,508 additions
and
2,432 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# This file was generated from `meta.yml`, please do not edit manually. | ||
# Follow the instructions on https://github.com/coq-community/templates to regenerate. | ||
name: Docker CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
# the OS must be GNU/Linux to be able to use the docker-coq-action | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
image: | ||
- 'mathcomp/mathcomp:1.12.0-coq-8.11' | ||
- 'mathcomp/mathcomp:1.12.0-coq-8.12' | ||
- 'mathcomp/mathcomp:1.12.0-coq-8.13' | ||
- 'mathcomp/mathcomp:1.12.0-coq-8.14' | ||
- 'mathcomp/mathcomp:1.13.0-coq-8.11' | ||
- 'mathcomp/mathcomp:1.13.0-coq-8.12' | ||
- 'mathcomp/mathcomp:1.13.0-coq-8.13' | ||
- 'mathcomp/mathcomp:1.13.0-coq-8.14' | ||
- 'mathcomp/mathcomp:1.13.0-coq-dev' | ||
- 'mathcomp/mathcomp-dev:coq-8.11' | ||
- 'mathcomp/mathcomp-dev:coq-8.12' | ||
- 'mathcomp/mathcomp-dev:coq-8.13' | ||
- 'mathcomp/mathcomp-dev:coq-8.14' | ||
- 'mathcomp/mathcomp-dev:coq-dev' | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: coq-community/docker-coq-action@v1 | ||
with: | ||
opam_file: 'coq-mathcomp-apery.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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# This file was generated from `meta.yml`, please do not edit manually. | ||
# Follow the instructions on https://github.com/coq-community/templates to regenerate. | ||
|
||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
version: "dev" | ||
|
@@ -17,15 +20,15 @@ computer algebra program (in this case in Maple/Algolib). These | |
relations are formally checked a posteriori, so that Coq's kernel | ||
remains the sole trusted code base.""" | ||
|
||
build: [make "-j%{jobs}%" ] | ||
build: [make "-j%{jobs}%"] | ||
install: [make "install"] | ||
depends: [ | ||
"coq" {>= "8.11" & < "8.12~"} | ||
"coq-mathcomp-ssreflect" {>= "1.10" & < "1.11~"} | ||
"coq" {(>= "8.11" & < "8.15~") | (= "dev")} | ||
"coq-mathcomp-ssreflect" {(>= "1.12" & < "1.14~") | (= "dev")} | ||
"coq-mathcomp-algebra" | ||
"coq-mathcomp-field" | ||
"coq-coqeal" {>= "1.0.3"} | ||
"coq-mathcomp-real-closed" {>= "1.0.4"} | ||
"coq-coqeal" {>= "1.0.5"} | ||
"coq-mathcomp-real-closed" {>= "1.1.2"} | ||
"coq-mathcomp-bigenough" {>= "1.0.0"} | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.