-
Notifications
You must be signed in to change notification settings - Fork 8
/
obi.opam
43 lines (41 loc) · 1.42 KB
/
obi.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
opam-version: "2.0"
maintainer: "Anil Madhavapeddy <[email protected]>"
authors: "Anil Madhavapeddy <[email protected]>"
license: "ISC"
tags: ["org:mirage" "org:ocamllabs"]
homepage: "https://github.com/ocaml/obi"
doc: "https://ocaml.github.io/obi/"
bug-reports: "https://github.com/ocaml/obi/issues"
depends: [
"ocaml" {>= "4.05.0"}
"dune" {build}
"dockerfile-opam" {>= "6.0.0"}
"dockerfile-cmd" {>= "6.0.0"}
"ocaml-version" {>= "1.0.0"}
"yaml" {>= "0.2.0"}
"uri"
"ezjsonm"
"opam-core"
"ptime"
"textwrap"
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
dev-repo: "git+https://github.com/ocaml/obi.git"
synopsis: "Interface to OCaml Build Infrastructure"
description: """
This package contains the OCaml libraries to access the opam2 bulk build
infrastructure that checks on the health of the [opam](https://opam.ocaml.org)
package manager.
The main services and repositories associates with this infrastructure are:
- **Documentation:**
- <https://github.com/ocaml/infrastructure/wiki>
- <https://github.com/ocaml/infrastructure/wiki/Containers> is rebuilt automatically with the latest information
- **GitHub:** Git repositories
- <https://github.com/ocaml/obi>: for the source code
- **Docker Hub:** container images
- <https://hub.docker.com/r/ocaml/opam2>: opam2 and OCaml compiler images
- <https://hub.docker.com/r/ocaml/opam2-staging>: intermediate container images for bulk builds
"""