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: "talex5@gmail.com" 10authors: "talex5@gmail.com" 11homepage: "https://github.com/ocurrent/ocurrent" 12doc: "https://ocurrent.github.io/ocurrent/" 13bug-reports: "https://github.com/ocurrent/ocurrent/issues" 14depends: [ 15 "ocaml" {>= "4.08.0"} 16 "fmt" {>= "0.8.9"} 17 "lwt" 18 "cmdliner" 19 "duration" 20 "current" {= version} 21 "current_web" {= version} 22 "current_git" {= version} 23 "current_github" {= version} 24 "current_docker" {= version} 25 "current_rpc" {= version} 26 "capnp-rpc-unix" {>= "0.5" & < "2.0"} 27 "dune" {>= "2.0"} 28 "capnp-rpc" {>= "0.8.0"} 29 "capnp-rpc-lwt" {>= "0.8.0"} 30 "capnp-rpc-net" {>= "0.8.0" & < "2.0"} 31 "dockerfile" {>= "7.0.0"} 32 "fpath" {>= "0.7.3"} 33 "logs" {>= "0.7.0"} 34 "ppx_deriving" {>= "5.1"} 35 "ppx_deriving_yojson" {>= "3.6.1"} 36 "prometheus" {>= "0.7"} 37 "result" {>= "1.5"} 38 "routes" {>= "0.8.0"} 39 "uri" {>= "4.0.0"} 40 "yojson" {>= "1.7.0"} 41 "prometheus-app" {>= "1.0" & < "1.2"} 42] 43build: [ 44 ["dune" "build" "-p" name "-j" jobs] 45 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 46] 47dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 48x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" 49url { 50 src: 51 "https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" 52 checksum: [ 53 "sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" 54 "sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" 55 ] 56} 57license: "Apache-2.0"