this repo has no description
1opam-version: "2.0"
2synopsis: "Run build scripts for CI"
3description:
4 "OBuilder takes a build script (similar to a Dockerfile) and performs the steps in it in a sandboxed environment."
5maintainer: ["talex5@gmail.com"]
6authors: ["talex5@gmail.com"]
7homepage: "https://github.com/ocurrent/obuilder"
8doc: "https://ocurrent.github.io/obuilder/"
9bug-reports: "https://github.com/ocurrent/obuilder/issues"
10depends: [
11 "dune" {>= "2.7"}
12 "lwt"
13 "astring"
14 "fmt" {>= "0.8.9"}
15 "logs"
16 "cmdliner"
17 "tar-unix" {< "3.0.0"}
18 "yojson"
19 "sexplib"
20 "ppx_deriving"
21 "ppx_sexp_conv"
22 "sha"
23 "sqlite3"
24 "obuilder-spec" {= version}
25 "ocaml" {>= "4.10.0"}
26 "alcotest-lwt" {with-test}
27 "odoc" {with-doc}
28]
29build: [
30 ["dune" "subst"] {dev}
31 [
32 "dune"
33 "build"
34 "-p"
35 name
36 "-j"
37 jobs
38 "@install"
39 "@runtest" {with-test}
40 "@doc" {with-doc}
41 ]
42]
43dev-repo: "git+https://github.com/ocurrent/obuilder.git"
44x-commit-hash: "036ef1f21518ccdabdef05fd304298bc4e36ee7a"
45url {
46 src:
47 "https://github.com/ocurrent/obuilder/releases/download/v0.3/obuilder-spec-v0.3.tbz"
48 checksum: [
49 "sha256=43473944fefea40e80cfa18461e23e69b5c3b81add828a70250d085bc794d62d"
50 "sha512=4c523440945f69552d7defd0f453777b4f7204b17ec67de366ad8f77efdc3e08c938beda117d5b8585fea4767a2c95a52f48939024ae8d811af8a16e85d84646"
51 ]
52}