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: ["Tim McGilchrist <timmcgil@gmail.com>"] 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 "Hannes Mehnert <hannes@mehnert.org>" 30 "Ben Andrew <benmandrew@gmail.com>" 31 "Gargi Sharma <gs051095@gmail.com>" 32 "Jonathan Coates <git@squiddev.cc>" 33 "Jules Aguillon <juloo.dsi@gmail.com>" 34 "Magnus Skjegstad <magnus@skjegstad.com>" 35 "Shon Feder <shon.feder@gmail.com>" 36 "smolck <46855713+smolck@users.noreply.github.com>" 37 "tatchi <corentin.leruth@gmail.com>" 38] 39license: "Apache-2.0" 40homepage: "https://github.com/ocurrent/ocurrent" 41doc: "https://ocurrent.github.io/ocurrent/" 42bug-reports: "https://github.com/ocurrent/ocurrent/issues" 43depends: [ 44 "dune" {>= "3.3"} 45 "current" {= version} 46 "current_docker" {= version} 47 "current_git" {= version} 48 "current_github" {= version} 49 "current_gitlab" {= version} 50 "current_rpc" {= version} 51 "current_web" {= version} 52 "current_ssh" {= version} 53 "ocaml" {>= "4.12.0"} 54 "capnp-rpc" {>= "1.2.3"} 55 "capnp-rpc-lwt" {>= "1.2.3"} 56 "capnp-rpc-net" {>= "1.2.3" & < "2.0"} 57 "capnp-rpc-unix" {>= "1.2.3" & < "2.0"} 58 "cmdliner" {>= "1.1.0"} 59 "duration" 60 "dockerfile" {>= "7.0.0"} 61 "fmt" {>= "0.8.9"} 62 "fpath" {>= "0.7.3"} 63 "logs" {>= "0.7.0"} 64 "lwt" {>= "5.6.1"} 65 "ppx_deriving" {>= "5.1"} 66 "ppx_deriving_yojson" {>= "3.6.1"} 67 "prometheus" {>= "0.7"} 68 "prometheus-app" {>= "1.2"} 69 "result" {>= "1.5"} 70 "routes" {>= "2.0.0"} 71 "uri" {>= "4.0.0"} 72 "yojson" {>= "1.7.0"} 73 "mdx" {with-test & < "2.4"} 74 "odoc" {with-doc} 75] 76build: [ 77 ["dune" "subst"] {dev} 78 [ 79 "dune" 80 "build" 81 "-p" 82 name 83 "-j" 84 jobs 85 "@install" 86 "@runtest" {with-test} 87 "@doc" {with-doc} 88 ] 89] 90dev-repo: "git+https://github.com/ocurrent/ocurrent.git" 91url { 92 src: 93 "https://github.com/ocurrent/ocurrent/releases/download/v0.6.6/current-0.6.6.tbz" 94 checksum: [ 95 "sha256=2329288bcbb455a3b8997f15d0090474e42274935379bc00d12abd22dcbf9990" 96 "sha512=27525c17c09fe90f2554701c60ef5d6f1d4b42f13f3c4245becbfecd0178f102739ec0a22732b2ed926510dd33d7d90a8f001df086e840279493182783d6c676" 97 ] 98} 99x-commit-hash: "bfc886e78e6da9e47904d2dfc7e11ad604af735f"