this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] builder (0.4.0)

CHANGES:

* improve documentation (robur-coop/builder#37 et al, fixes robur-coop/builder#27)
* adapt to asn1-combinators 0.3.0 API: remove cstruct (robur-coop/builder#49 @hannesm)
* queue up observe messages (robur-coop/builder#48 @reynir)
* use "/job/_/build/_/main-binary" alias - eases bootstrapping (robur-coop/builder#42 @reynir)
* drop platform: advice to shutdown workers (robur-coop/builder#39 @reynir)
* FreeBSD: add builder_worker service script (robur-coop/builder#37 @hannesm)
* client: enumerate valid periods in `--help` (robur-coop/builder#36 @reynir)
* add an interval of "never" to never schedule a job (robur-coop/builder#34 @hannesm, fixes robur-coop/builder#32)
* client: observe omit the UUID (robur-coop/builder#33 @hannesm)

authored by

Hannes Mehnert and committed by
Anil Madhavapeddy
6a5ec0d7 31df4bad

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