this repo has no description
1opam-version: "2.0"
2synopsis: "Example pipelines for OCurrent"
3description: """\
4OCurrent provides an OCaml eDSL for writing CI/CD pipelines.
5
6This package provides some example pipelines.
7It exists mainly to test the integration of various OCurrent
8plugins."""
9maintainer: "Mark Elvers <mark.elvers@tunbury.org>"
10authors: [
11 "Thomas Leonard <talex5@gmail.com>"
12 "Antonin Décimo <antonin@tarides.com>"
13 "Tim McGilchrist <timmcgil@gmail.com>"
14 "Craig Ferguson <me@craigfe.io>"
15 "Etienne MARAIS <etienne@maiste.fr>"
16 "Anil Madhavapeddy <anil@recoil.org>"
17 "David Allsopp <david.allsopp@metastack.com>"
18 "Ewan Mellor <ewan@tarides.com>"
19 "Kate <kit.ty.kate@disroot.org>"
20 "Mark Elvers <mark.elvers@tunbury.org>"
21 "Puneeth Chaganti <punchagan@muse-amuse.in>"
22 "Lucas Pluvinage <lucas@tarides.com>"
23 "Navin Keswani <navin@novemberkilo.com>"
24 "Thomas Gazagnaire <thomas@gazagnaire.org>"
25 "Patrick Ferris <patrick@sirref.org>"
26 "Arthur Wendling <art.wendling@gmail.com>"
27 "Anurag Soni <anurag@sonianurag.com>"
28 "Ambre Austen Suhamy <ambre@tarides.com>"
29 "Ben Andrew <benmandrew@gmail.com>"
30 "Gargi Sharma <gs051095@gmail.com>"
31 "Jonathan Coates <git@squiddev.cc>"
32 "Jules Aguillon <juloo.dsi@gmail.com>"
33 "Magnus Skjegstad <magnus@skjegstad.com>"
34 "Shon Feder <shon.feder@gmail.com>"
35 "smolck <46855713+smolck@users.noreply.github.com>"
36 "tatchi <corentin.leruth@gmail.com>"
37]
38license: "Apache-2.0"
39homepage: "https://github.com/ocurrent/ocurrent"
40doc: "https://ocurrent.github.io/ocurrent/"
41bug-reports: "https://github.com/ocurrent/ocurrent/issues"
42depends: [
43 "dune" {>= "3.3"}
44 "current" {= version}
45 "current_docker" {= version}
46 "current_git" {= version}
47 "current_github" {= version}
48 "current_gitlab" {= version}
49 "current_rpc" {= version}
50 "current_web" {= version}
51 "current_ssh" {= version}
52 "ocaml" {>= "4.12.0"}
53 "capnp-rpc" {>= "1.2.3"}
54 "capnp-rpc-lwt" {>= "1.2.3"}
55 "capnp-rpc-net" {>= "1.2.3"}
56 "capnp-rpc-unix" {>= "1.2.3"}
57 "cmdliner" {>= "1.1.0"}
58 "duration"
59 "dockerfile" {>= "7.0.0"}
60 "fmt" {>= "0.8.9"}
61 "fpath" {>= "0.7.3"}
62 "logs" {>= "0.7.0"}
63 "lwt" {>= "5.7"}
64 "ppx_deriving" {>= "5.1"}
65 "ppx_deriving_yojson" {>= "3.6.1"}
66 "prometheus" {>= "0.7"}
67 "prometheus-app" {>= "1.2"}
68 "result" {>= "1.5"}
69 "routes" {>= "2.0.0"}
70 "uri" {>= "4.0.0"}
71 "yojson" {>= "1.7.0"}
72 "mdx" {with-test}
73 "odoc" {with-doc}
74]
75build: [
76 ["dune" "subst"] {dev}
77 [
78 "dune"
79 "build"
80 "-p"
81 name
82 "-j"
83 jobs
84 "@install"
85 "@runtest" {with-test}
86 "@doc" {with-doc}
87 ]
88]
89dev-repo: "git+https://github.com/ocurrent/ocurrent.git"
90url {
91 src:
92 "https://github.com/ocurrent/ocurrent/releases/download/v0.7.1/ocurrent-0.7.1.tbz"
93 checksum: [
94 "md5=8a60e0b0860f6353c0e001d8d74a88ca"
95 "sha512=fddde66e3390afa4d46e2d121f2b510358ef853b81b691dbf482b0cfc8f56b21f5a0c43618e1818e6378b8897eca5811af7a995b42e1cb955647727cad877e05"
96 ]
97}
98x-maintenance-intent: ["(latest)"]