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: ["Thomas Leonard <talex5@gmail.com>"] 10authors: ["Thomas Leonard <talex5@gmail.com>"] 11license: "Apache-2.0" 12homepage: "https://github.com/ocurrent/ocurrent" 13doc: "https://ocurrent.github.io/ocurrent/" 14bug-reports: "https://github.com/ocurrent/ocurrent/issues" 15depends: [ 16 "dune" {>= "3.3"} 17 "current" {= version} 18 "current_docker" {= version} 19 "current_git" {= version} 20 "current_github" {= version} 21 "current_gitlab" {= version} 22 "current_rpc" {= version} 23 "current_web" {= version} 24 "current_ssh" {= version} 25 "ocaml" {>= "4.08.0"} 26 "capnp-rpc" {>= "1.2.3"} 27 "capnp-rpc-lwt" {>= "1.2.3"} 28 "capnp-rpc-net" {>= "1.2.3" & < "2.0"} 29 "capnp-rpc-unix" {>= "1.2.3" & < "2.0"} 30 "cmdliner" {>= "1.1.0"} 31 "duration" 32 "dockerfile" {>= "7.0.0"} 33 "fmt" {>= "0.8.9"} 34 "fpath" {>= "0.7.3"} 35 "logs" {>= "0.7.0"} 36 "lwt" {>= "5.6.1"} 37 "ppx_deriving" {>= "5.1"} 38 "ppx_deriving_yojson" {>= "3.6.1"} 39 "prometheus" {>= "0.7"} 40 "prometheus-app" {>= "1.2"} 41 "result" {>= "1.5"} 42 "routes" {>= "2.0.0"} 43 "uri" {>= "4.0.0"} 44 "yojson" {>= "1.7.0"} 45 "mdx" {with-test & < "2.4"} 46 "odoc" {with-doc} 47] 48build: [ 49 ["dune" "subst"] {dev} 50 [ 51 "dune" 52 "build" 53 "-p" 54 name 55 "-j" 56 jobs 57 "@install" 58 "@runtest" {with-test} 59 "@doc" {with-doc} 60 ] 61] 62dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 63url { 64 src: 65 "https://github.com/ocurrent/ocurrent/releases/download/0.6.4/current-0.6.4.tbz" 66 checksum: [ 67 "sha256=e6cafa330166719e3f8bf30a4ffeec79b0f290e3dcd420c4a53d6a55912f961d" 68 "sha512=42d703a524ab61e3fd623ab4b1681bbe59c1d4426bebadb1bb50c3e6fcbb59d1aecb8041f2b6d09a9cb5eb5b6f79ec7b07eb4254ec39de30d406c20d4da7d664" 69 ] 70} 71x-commit-hash: "53fd3263d04407df6b7a627abe85667d011c0060"