-
Notifications
You must be signed in to change notification settings - Fork 22
/
opam-repo-ci-service.opam
75 lines (74 loc) · 1.92 KB
/
opam-repo-ci-service.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
opam-version: "2.0"
synopsis: "Test OCaml projects on GitHub"
maintainer: "Tim McGilchrist <[email protected]>"
authors: [
"Kate <[email protected]>"
"Thomas Leonard <[email protected]>"
"Craig Ferguson <[email protected]>"
"Anil Madhavapeddy <[email protected]>"
]
license: "Apache-2.0"
homepage: "https://github.com/ocurrent/opam-repo-ci"
bug-reports: "https://github.com/ocurrent/opam-repo-ci/issues"
depends: [
"routes" {>= "2.0.0"} # needed for ocurrent
"prometheus-app" {>= "1.2"} # needed for ocurrent
"prometheus" {>= "1.2"} # needed for ocurrent
"ppx_sexp_conv"
"ppx_deriving_yojson"
"ppx_deriving" {with-test}
"mirage-crypto-rng" {>= "0.11.0"}
"logs"
"fmt" {>= "0.8.7"}
"dune" {>= "3.16"}
"ocaml" {>= "4.14.1"}
"current_incr" {>= "0.6.0"} # see https://github.com/ocurrent/opam-repo-ci/pull/161
"current" {>= "0.6.6"}
"current_git"
"current_github"
"current_docker"
"current_web"
"current_rpc"
"current_ocluster"
"obuilder-spec"
"ocluster-api"
"memtrace" {>= "0.1.1"}
"capnp-rpc-lwt" {>= "0.8.0"}
"capnp-rpc-unix" {>= "0.8.0"}
"opam-state" {>= "2.3.0~alpha1"}
"opam-format" {>= "2.3.0~alpha1"}
"opam-file-format" {>= "2.1.2"}
"sexplib" {>= "v0.14.0"}
"conf-libev"
"dockerfile" {>= "6.3.0"}
"dockerfile-opam" {>= "6.3.0"}
"ocaml-version" {>= "3.6.9"}
"mula" {>= "0.1.2"}
"alcotest" {>= "1.0.0" & with-test}
"alcotest-lwt" {>= "1.0.1" & with-test}
"odoc" {with-doc}
# Internal dependencies
"opam-ci-check"
"opam-repo-ci-api"
]
conflicts: [
"ocaml-migrate-parsetree" {= "1.7.1"}
"conduit-lwt-unix" {< "4.0.1"}
]
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"
# See https://github.com/ocurrent/ocaml-ci/issues/931
available: !(os-distribution = "debian" & os-version = "12" & arch = "x86_32")