-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18804 from talex5/release-current-0.5
[new release] current_slack, current_rpc, current_examples, current_docker, current_incr, current_git, current_web, current_github and current (0.5)
- Loading branch information
Showing
9 changed files
with
448 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
opam-version: "2.0" | ||
synopsis: "Pipeline language for keeping things up-to-date" | ||
description: """\ | ||
OCurrent provides an OCaml eDSL for writing CI/CD pipelines. | ||
|
||
It is used in ocaml-ci (which provides CI for OCaml projects on GitHub), | ||
and in docker-base-images (a pipeline that builds Docker images for various | ||
Linux distributions, OCaml compiler versions and CPU types, and pushes them | ||
to Docker Hub). | ||
|
||
A pipeline is written much like you would write a one-shot sequential script, | ||
but OCurrent will automatically re-run steps when the inputs change, and will | ||
run steps in parallel where possible.""" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
homepage: "https://github.com/ocurrent/ocurrent" | ||
doc: "https://ocurrent.github.io/ocurrent/" | ||
bug-reports: "https://github.com/ocurrent/ocurrent/issues" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"current_incr" {= version} | ||
"fmt" {>= "0.8.9"} | ||
"bos" | ||
"ppx_deriving" | ||
"lwt" {>= "4.3.0"} | ||
"cmdliner" | ||
"sqlite3" | ||
"duration" | ||
"prometheus" | ||
"dune" {>= "2.0"} | ||
"re" {>= "1.9.0"} | ||
"lwt-dllist" | ||
"alcotest" {>= "1.2.0" & with-test} | ||
"alcotest-lwt" {>= "1.2.0" & with-test} | ||
"astring" {>= "0.8.5"} | ||
"fpath" {>= "0.7.3"} | ||
"logs" {>= "0.7.0"} | ||
"result" {>= "1.5"} | ||
"prometheus-app" {>= "0.7" & with-test} | ||
] | ||
conflicts: [ | ||
"seq" {< "base"} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/ocurrent.git" | ||
x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" | ||
url { | ||
src: | ||
"https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" | ||
checksum: [ | ||
"sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" | ||
"sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" | ||
] | ||
} | ||
license: "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
opam-version: "2.0" | ||
synopsis: "OCurrent Docker plugin" | ||
description: """\ | ||
OCurrent provides an OCaml eDSL for writing CI/CD pipelines. | ||
|
||
This package provides a plugin for interacting with Docker. | ||
It can pull, build, run and push images, and can coordinate | ||
multiple Docker Engine instances.""" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
homepage: "https://github.com/ocurrent/ocurrent" | ||
doc: "https://ocurrent.github.io/ocurrent/" | ||
bug-reports: "https://github.com/ocurrent/ocurrent/issues" | ||
depends: [ | ||
"current" {= version} | ||
"current_git" {= version} | ||
"ocaml" {>= "4.08.0"} | ||
"fmt" {>= "0.8.9"} | ||
"ppx_deriving" | ||
"lwt" | ||
"dockerfile" | ||
"ppx_deriving_yojson" {>= "3.5.1"} | ||
"yojson" | ||
"dune" {>= "2.0"} | ||
"astring" {>= "0.8.5"} | ||
"bos" {>= "0.2.0"} | ||
"duration" {>= "0.1.3"} | ||
"fpath" {>= "0.7.3"} | ||
"logs" {>= "0.7.0"} | ||
"result" {>= "1.5"} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/ocurrent.git" | ||
x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" | ||
url { | ||
src: | ||
"https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" | ||
checksum: [ | ||
"sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" | ||
"sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" | ||
] | ||
} | ||
license: "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
opam-version: "2.0" | ||
synopsis: "Example pipelines for OCurrent" | ||
description: """\ | ||
OCurrent provides an OCaml eDSL for writing CI/CD pipelines. | ||
|
||
This package provides some example pipelines. | ||
It exists mainly to test the integration of various OCurrent | ||
plugins.""" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
homepage: "https://github.com/ocurrent/ocurrent" | ||
doc: "https://ocurrent.github.io/ocurrent/" | ||
bug-reports: "https://github.com/ocurrent/ocurrent/issues" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"fmt" {>= "0.8.9"} | ||
"lwt" | ||
"cmdliner" | ||
"duration" | ||
"current" {= version} | ||
"current_web" {= version} | ||
"current_git" {= version} | ||
"current_github" {= version} | ||
"current_docker" {= version} | ||
"current_rpc" {= version} | ||
"capnp-rpc-unix" {>= "0.5"} | ||
"dune" {>= "2.0"} | ||
"capnp-rpc" {>= "0.8.0"} | ||
"capnp-rpc-lwt" {>= "0.8.0"} | ||
"capnp-rpc-net" {>= "0.8.0"} | ||
"dockerfile" {>= "7.0.0"} | ||
"fpath" {>= "0.7.3"} | ||
"logs" {>= "0.7.0"} | ||
"ppx_deriving" {>= "5.1"} | ||
"ppx_deriving_yojson" {>= "3.6.1"} | ||
"prometheus" {>= "0.7"} | ||
"result" {>= "1.5"} | ||
"routes" {>= "0.8.0"} | ||
"uri" {>= "4.0.0"} | ||
"yojson" {>= "1.7.0"} | ||
"prometheus-app" {>= "1.0"} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/ocurrent.git" | ||
x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" | ||
url { | ||
src: | ||
"https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" | ||
checksum: [ | ||
"sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" | ||
"sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" | ||
] | ||
} | ||
license: "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
opam-version: "2.0" | ||
synopsis: "Git plugin for OCurrent" | ||
description: """\ | ||
OCurrent provides an OCaml eDSL for writing CI/CD pipelines. | ||
|
||
This package provides primitives for interacting with Git. | ||
It can pull from remote repositories, or monitor local ones for changes.""" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
homepage: "https://github.com/ocurrent/ocurrent" | ||
doc: "https://ocurrent.github.io/ocurrent/" | ||
bug-reports: "https://github.com/ocurrent/ocurrent/issues" | ||
depends: [ | ||
"current" {= version} | ||
"ocaml" {>= "4.08.0"} | ||
"conf-git" | ||
"fmt" {>= "0.8.9"} | ||
"ppx_deriving" | ||
"lwt" | ||
"irmin-watcher" | ||
"ppx_deriving_yojson" {>= "3.5.1"} | ||
"yojson" | ||
"dune" {>= "2.0"} | ||
"astring" {>= "0.8.5"} | ||
"bos" {>= "0.2.0"} | ||
"fpath" {>= "0.7.3"} | ||
"logs" {>= "0.7.0"} | ||
"result" {>= "1.5"} | ||
"cstruct" {>= "5.0.0"} | ||
"mirage-crypto" {>= "0.8.0"} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/ocurrent.git" | ||
x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" | ||
url { | ||
src: | ||
"https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" | ||
checksum: [ | ||
"sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" | ||
"sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" | ||
] | ||
} | ||
license: "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
opam-version: "2.0" | ||
synopsis: "GitHub plugin for OCurrent" | ||
description: """\ | ||
OCurrent provides an OCaml eDSL for writing CI/CD pipelines. | ||
|
||
This package provides primitives for interacting with GitHub. | ||
It can monitor and clone remote GitHub repositories, and can | ||
push GitHub status messages to show the results of testing | ||
PRs and branches.""" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
homepage: "https://github.com/ocurrent/ocurrent" | ||
bug-reports: "https://github.com/ocurrent/ocurrent/issues" | ||
depends: [ | ||
"current" {= version} | ||
"current_git" {= version} | ||
"current_web" {= version} | ||
"ocaml" {>= "4.08.0"} | ||
"fmt" {>= "0.8.9"} | ||
"lwt" | ||
"duration" | ||
"ptime" | ||
"yojson" | ||
"cohttp-lwt-unix" {< "3.0.0"} | ||
"mirage-crypto" | ||
"mirage-crypto-pk" | ||
"x509" {>= "0.10.0"} | ||
"tls" {>= "0.11.0"} | ||
"dune" {>= "2.0"} | ||
"astring" {>= "0.8.5"} | ||
"base64" {>= "3.4.0"} | ||
"cmdliner" {>= "1.0.4"} | ||
"cohttp" {>= "2.5.4"} | ||
"cohttp-lwt" {>= "2.5.4"} | ||
"cstruct" {>= "5.2.0"} | ||
"logs" {>= "0.7.0"} | ||
"ppx_deriving_yojson" {>= "3.6.1"} | ||
"prometheus" {>= "0.7"} | ||
"result" {>= "1.5"} | ||
"rresult" {>= "0.6.0"} | ||
"tyxml" {>= "4.4.0"} | ||
"uri" {>= "4.0.0"} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/ocurrent.git" | ||
x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" | ||
url { | ||
src: | ||
"https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" | ||
checksum: [ | ||
"sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" | ||
"sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" | ||
] | ||
} | ||
license: "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
opam-version: "2.0" | ||
synopsis: "Self-adjusting computations" | ||
description: """\ | ||
This is a small, self-contained library for self-adjusting (incremental) computations. | ||
It was written for OCurrent, but can be used separately too. | ||
|
||
It is similar to Jane Street's incremental library, but much smaller and | ||
has no external dependencies. | ||
|
||
It is also similar to the react library, but the results do not depend on the | ||
behaviour of the garbage collector. In particular, functions stop being called | ||
as soon as they are no longer needed.""" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
homepage: "https://github.com/ocurrent/ocurrent" | ||
doc: "https://ocurrent.github.io/ocurrent/" | ||
bug-reports: "https://github.com/ocurrent/ocurrent/issues" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"dune" {>= "2.0"} | ||
"alcotest" {with-test} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/ocurrent.git" | ||
x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" | ||
url { | ||
src: | ||
"https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" | ||
checksum: [ | ||
"sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" | ||
"sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" | ||
] | ||
} | ||
license: "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
opam-version: "2.0" | ||
synopsis: "Cap'n Proto RPC plugin for OCurrent" | ||
description: """\ | ||
OCurrent provides an OCaml eDSL for writing CI/CD pipelines. | ||
|
||
This package provides a Cap'n Proto RPC interface, allowing | ||
an OCurrent engine to be controlled remotely.""" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
homepage: "https://github.com/ocurrent/ocurrent" | ||
bug-reports: "https://github.com/ocurrent/ocurrent/issues" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"capnp" {>= "3.4.0"} | ||
"capnp-rpc" {>= "0.8.0"} | ||
"capnp-rpc-lwt" {>= "0.4"} | ||
"fpath" | ||
"dune" {>= "2.0"} | ||
"fmt" {>= "0.8.9"} | ||
"logs" {>= "0.7.0"} | ||
"lwt" {>= "5.3.0"} | ||
"result" {>= "1.5"} | ||
"stdint" {>= "0.7.0"} | ||
] | ||
conflicts: [ | ||
"x509" {= "0.11.0"} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/ocurrent.git" | ||
x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" | ||
url { | ||
src: | ||
"https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" | ||
checksum: [ | ||
"sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" | ||
"sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" | ||
] | ||
} | ||
license: "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
opam-version: "2.0" | ||
synopsis: "Slack plugin for OCurrent" | ||
description: """\ | ||
OCurrent provides an OCaml eDSL for writing CI/CD pipelines. | ||
|
||
This package provides primitives for interacting with Slack. | ||
It can post messages to slack channels.""" | ||
maintainer: "[email protected]" | ||
authors: "[email protected]" | ||
homepage: "https://github.com/ocurrent/ocurrent" | ||
bug-reports: "https://github.com/ocurrent/ocurrent/issues" | ||
depends: [ | ||
"current" {= version} | ||
"ocaml" {>= "4.08.0"} | ||
"fmt" {>= "0.8.9"} | ||
"yojson" | ||
"lwt" | ||
"tls" {>= "0.12.0"} | ||
"cohttp" {>= "2.2.0" & < "3.0.0"} | ||
"cohttp-lwt" {>= "2.2.0" & < "3.0.0"} | ||
"cohttp-lwt-unix" {>= "2.2.0" & < "3.0.0"} | ||
"dune" {>= "2.0"} | ||
"logs" {>= "0.7.0"} | ||
"uri" {>= "4.0.0"} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/ocurrent/ocurrent.git" | ||
x-commit-hash: "439d1b539335ee3aa974ff6c02e09885f40056b5" | ||
url { | ||
src: | ||
"https://github.com/ocurrent/ocurrent/releases/download/v0.5/current-v0.5.tbz" | ||
checksum: [ | ||
"sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca" | ||
"sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64" | ||
] | ||
} | ||
license: "Apache-2.0" |
Oops, something went wrong.