-
Notifications
You must be signed in to change notification settings - Fork 22
/
opam-ci-check.opam
48 lines (48 loc) · 1.27 KB
/
opam-ci-check.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
44
45
46
47
48
opam-version: "2.0"
synopsis:
"CLI tool that tests whether packages are publishable on the opam repository"
description:
"opam-ci-check is used in the opam repo CI and can be used locally and in other CI pipelines to test the deliverability of packages."
maintainer: [
"Puneeth Chaganti <[email protected]>"
"Shon Feder <[email protected]>"
]
authors: [
"Puneeth Chaganti <[email protected]>"
"Shon Feder <[email protected]>"
]
license: "Apache-2.0"
tags: ["opam" "ci" "lint" "reverse dependency"]
homepage: "https://github.com/ocurrent/opam-repo-ci/tree/master/opam-ci-check"
doc: "https://www.ocurrent.org/opam-repo-ci/opam-ci-check/index.html"
bug-reports: "https://github.com/ocurrent/opam-repo-ci/issues"
depends: [
"ocaml" {>= "4.14.0"}
"dune" {>= "3.16"}
"sexplib"
"bos" {>= "0.2.1"}
"fpath" {>= "0.7.3"}
"cmdliner" {>= "1.1.1"}
"opam-client" {>= "2.3.0~alpha1"}
"ocaml-version" {>= "3.6.9"}
"dockerfile-opam" {>= "6.3.0"}
"obuilder-spec"
"odoc" {with-doc}
"ppx_deriving" {>= "5.2.1"}
"ppx_deriving_yojson"
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/opam-repo-ci.git"