Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions packages/current_ocluster/current_ocluster.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
opam-version: "2.0"
synopsis: "OCurrent plugin for OCluster builds"
description:
"Creates a stage in an OCurrent pipeline for submitting jobs to OCluster."
maintainer: ["talex5@gmail.com"]
authors: ["talex5@gmail.com"]
homepage: "https://github.com/ocurrent/ocluster"
bug-reports: "https://github.com/ocurrent/ocluster/issues"
depends: [
"dune" {>= "3.3"}
"ppx_deriving"
"ocluster-api" {= version}
"lwt" {>= "5.6.1"}
"current" {>= "0.3"}
"current_git" {>= "0.3"}
"current_web" {>= "0.3" & with-test}
"current_github" {>= "0.3" & with-test}
"capnp-rpc-unix" {>= "1.2"}
"duration"
"logs"
"fmt"
"prometheus"
"ppx_deriving_yojson"
"ocaml" {>= "4.12.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/ocluster.git"
url {
src:
"https://github.com/ocurrent/ocluster/releases/download/v0.2/ocluster-0.2.tbz"
checksum: [
"sha256=a6245d78f1f2b4b431596cfe167dfe18497b72c2844b8b7fb99603731eda4192"
"sha512=477f16a1abc7de7c8e807ac1b8e33a461865e20358734716707874af2e6fec47f7fe24753cd88d520fe94921d9f1f8da63d96c41ab1dfae9f86be85dd4098c7d"
]
}
x-commit-hash: "222011c2ef5100f9ed43234c59d215dc2430bfca"
41 changes: 41 additions & 0 deletions packages/ocluster-api/ocluster-api.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
opam-version: "2.0"
synopsis: "Cap'n Proto API for OCluster"
description: "OCaml bindings for the OCluster Cap'n Proto API."
maintainer: ["talex5@gmail.com"]
authors: ["talex5@gmail.com"]
homepage: "https://github.com/ocurrent/ocluster"
bug-reports: "https://github.com/ocurrent/ocluster/issues"
depends: [
"dune" {>= "3.3"}
"ppx_deriving"
"lwt" {>= "5.6.1"}
"capnp-rpc-lwt" {>= "1.2"}
"fmt"
"ppx_deriving_yojson"
"ocaml" {>= "4.12.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/ocluster.git"
url {
src:
"https://github.com/ocurrent/ocluster/releases/download/v0.2/ocluster-0.2.tbz"
checksum: [
"sha256=a6245d78f1f2b4b431596cfe167dfe18497b72c2844b8b7fb99603731eda4192"
"sha512=477f16a1abc7de7c8e807ac1b8e33a461865e20358734716707874af2e6fec47f7fe24753cd88d520fe94921d9f1f8da63d96c41ab1dfae9f86be85dd4098c7d"
]
}
x-commit-hash: "222011c2ef5100f9ed43234c59d215dc2430bfca"
72 changes: 72 additions & 0 deletions packages/ocluster/ocluster.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
opam-version: "2.0"
synopsis: "Distribute build jobs to workers"
description: """
OCluster manages a pool of build workers.
A build scheduler service accepts build jobs from clients and distributes them to worker machines using Cap'n Proto.
Workers register themselves by connecting to the scheduler (and workers do not need to be able to accept incoming network connections).

The scheduler can manage multiple pools (e.g. `linux-x86_64` and `linux-arm32`).
Clients say which pool should handle their requests.
At the moment, two build types are provided: building a Dockerfile, or building an OBuilder spec.
In either case, the build may done in the context of some Git commit.
The scheduler tries to schedule similar builds on the same machine, to benefit from caching."""
maintainer: ["talex5@gmail.com"]
authors: ["talex5@gmail.com"]
homepage: "https://github.com/ocurrent/ocluster"
bug-reports: "https://github.com/ocurrent/ocluster/issues"
depends: [
"dune" {>= "3.3"}
"ppx_expect" {>= "v0.14.1"}
"prometheus"
"ppx_sexp_conv"
"dune-build-info"
"ocluster-api" {= version}
"lwt" {>= "5.6.1"}
"capnp-rpc-lwt"
"capnp-rpc-net"
"capnp-rpc-unix" {>= "1.2"}
"extunix" {>= "0.3.2"}
"winsvc" {>= "1.0.1" & os = "win32"}
"cmdliner" {>= "1.1.0"}
"logs"
"fmt"
"conf-libev" {os != "win32"}
"digestif" {>= "0.8"}
"fpath"
"lwt-dllist"
"prometheus-app" {>= "1.2"}
"cohttp-lwt-unix"
"sqlite3"
"obuilder"
"psq"
"mirage-crypto" {>= "0.8.5"}
"ocaml" {>= "4.12.0"}
"current_ocluster" {= version & with-test}
"alcotest" {>= "1.0.0" & with-test}
"alcotest-lwt" {>= "1.0.1" & with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/ocluster.git"
url {
src:
"https://github.com/ocurrent/ocluster/releases/download/v0.2/ocluster-0.2.tbz"
checksum: [
"sha256=a6245d78f1f2b4b431596cfe167dfe18497b72c2844b8b7fb99603731eda4192"
"sha512=477f16a1abc7de7c8e807ac1b8e33a461865e20358734716707874af2e6fec47f7fe24753cd88d520fe94921d9f1f8da63d96c41ab1dfae9f86be85dd4098c7d"
]
}
x-commit-hash: "222011c2ef5100f9ed43234c59d215dc2430bfca"