-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from coq-community/coq-v8.14+ci
add meta.yml and generate boilerplate for 8.14
- Loading branch information
Showing
7 changed files
with
480 additions
and
70 deletions.
There are no files selected for viewing
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,31 @@ | ||
# 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: | ||
- coq-v8.14 | ||
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: | ||
- 'coqorg/coq:8.14' | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: coq-community/docker-coq-action@v1 | ||
with: | ||
opam_file: 'coq-dpdgraph.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 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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# 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: "palmskog@gmail.com" | ||
version: "8.14.dev" | ||
|
||
homepage: "https://github.com/coq-community/coq-dpdgraph" | ||
dev-repo: "git+https://github.com/coq-community/coq-dpdgraph.git" | ||
bug-reports: "https://github.com/coq-community/coq-dpdgraph/issues" | ||
license: "LGPL-2.1-only" | ||
|
||
synopsis: "Compute dependencies between Coq objects (definitions, theorems) and produce graphs" | ||
description: """ | ||
Coq plugin that extracts the dependencies between Coq objects, | ||
and produces files with dependency information. Includes tools | ||
to visualize dependency graphs and find unused definitions.""" | ||
|
||
build: [ | ||
["autoconf"] {dev} | ||
["./configure"] | ||
[make "-j%{jobs}%" "WARN_ERR="] | ||
] | ||
install: [make "install" "BINDIR=%{bin}%"] | ||
depends: [ | ||
"ocaml" {>= "4.05.0"} | ||
"coq" {>= "8.14" & < "8.15~"} | ||
"conf-autoconf" {build & dev} | ||
"ocamlgraph" | ||
] | ||
|
||
tags: [ | ||
"category:Miscellaneous/Coq Extensions" | ||
"keyword:dependency graph" | ||
"keyword:dependency analysis" | ||
"logpath:dpdgraph" | ||
] | ||
authors: [ | ||
"Anne Pacalet" | ||
"Yves Bertot" | ||
"Olivier Pons" | ||
] |
Oops, something went wrong.