this repo has no description
1opam-version: "2.0" 2synopsis: "Pipeline language for keeping things up-to-date" 3description: """ 4OCurrent provides an OCaml eDSL for writing CI/CD pipelines. 5 6It is used in ocaml-ci (which provides CI for OCaml projects on GitHub), 7and in docker-base-images (a pipeline that builds Docker images for various 8Linux distributions, OCaml compiler versions and CPU types, and pushes them 9to Docker Hub). 10 11A pipeline is written much like you would write a one-shot sequential script, 12but OCurrent will automatically re-run steps when the inputs change, and will 13run steps in parallel where possible.""" 14maintainer: ["Thomas Leonard <talex5@gmail.com>"] 15authors: ["Thomas Leonard <talex5@gmail.com>"] 16license: "Apache-2.0" 17homepage: "https://github.com/ocurrent/ocurrent" 18doc: "https://ocurrent.github.io/ocurrent/" 19bug-reports: "https://github.com/ocurrent/ocurrent/issues" 20depends: [ 21 "dune" {>= "3.3"} 22 "ocaml" {>= "4.08.0"} 23 "astring" {>= "0.8.5"} 24 "bos" 25 "cmdliner" {>= "1.1.0"} 26 "conf-libev" {os != "win32"} 27 "current_incr" {>= "0.6.1"} 28 "duration" 29 "fmt" {>= "0.8.9"} 30 "fpath" {>= "0.7.3"} 31 "logs" {>= "0.7.0"} 32 "lwt" {>= "5.6.1"} 33 "lwt-dllist" 34 "ppx_deriving" 35 "prometheus" 36 "re" {>= "1.9.0"} 37 "result" {>= "1.5"} 38 "sqlite3" 39 "alcotest" {with-test & >= "1.2.0"} 40 "alcotest-lwt" {with-test & >= "1.2.0"} 41 "prometheus-app" {with-test & >= "1.2"} 42 "odoc" {with-doc} 43] 44build: [ 45 ["dune" "subst"] {dev} 46 [ 47 "dune" 48 "build" 49 "-p" 50 name 51 "-j" 52 jobs 53 "@install" 54 "@runtest" {with-test} 55 "@doc" {with-doc} 56 ] 57] 58dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 59url { 60 src: 61 "https://github.com/ocurrent/ocurrent/releases/download/0.6.4/current-0.6.4.tbz" 62 checksum: [ 63 "sha256=e6cafa330166719e3f8bf30a4ffeec79b0f290e3dcd420c4a53d6a55912f961d" 64 "sha512=42d703a524ab61e3fd623ab4b1681bbe59c1d4426bebadb1bb50c3e6fcbb59d1aecb8041f2b6d09a9cb5eb5b6f79ec7b07eb4254ec39de30d406c20d4da7d664" 65 ] 66} 67x-commit-hash: "53fd3263d04407df6b7a627abe85667d011c0060"