-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuilder.opam
45 lines (42 loc) · 1.46 KB
/
builder.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
opam-version: "2.0"
maintainer: "Robur <[email protected]>"
authors: ["Robur <[email protected]>"]
homepage: "https://github.com/robur-coop/builder"
dev-repo: "git+https://github.com/robur-coop/builder.git"
bug-reports: "https://github.com/robur-coop/builder/issues"
license: "ISC"
depends: [
"ocaml" {>= "4.13.0"}
"dune" {>= "2.0.0"}
"asn1-combinators" {>= "0.3.0"}
"bheap" {>= "2.0.0"}
"bos"
"cmdliner" {>= "1.1.0"}
"duration"
"fmt" {>= "0.8.7"}
"fpath"
"logs"
"lwt"
"ptime"
"uuidm" {>= "0.9.9"}
"http-lwt-client" {>= "0.3.0"}
"base64"
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["sh" "-ex" "packaging/FreeBSD/create_package.sh"] {os = "freebsd"}
["sh" "-ex" "packaging/debian/create_package.sh"] {os-family = "debian"}
]
synopsis: "Scheduling and executing shell jobs"
description: """
The builder server has a schedule of jobs to be executed, stored persistently
on disk. Any number of workers can connect via TCP (using ASN.1 encoded
messages) that execute a single job -- usually contained in a sandbox (FreeBSD
jail or Docker container). A client is a command-line interface to modify the
schedule. Access control is out of scope - run it locally on your build host.
The server receives the output artifacts of each job, and either stores them
on the local file system or upload them to a remote server via http.
See https://builds.robur.coop for the live web frontend (builder-web).
"""
x-maintenance-intent: [ "(latest)" ]