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"]
7license: "Apache-2.0"
8homepage: "https://github.com/ocurrent/obuilder"
9doc: "https://ocurrent.github.io/obuilder/"
10bug-reports: "https://github.com/ocurrent/obuilder/issues"
11depends: [
12 "dune" {>= "3.3"}
13 "lwt" {>= "5.6.1"}
14 "astring"
15 "fmt" {>= "0.8.9"}
16 "logs"
17 "cmdliner" {>= "1.1.0"}
18 "tar-unix" {>= "2.0.0" & < "3.0.0"}
19 "yojson" {>= "1.6.0"}
20 "sexplib"
21 "ppx_deriving"
22 "ppx_sexp_conv"
23 "sha" {>= "1.15.4"}
24 "sqlite3"
25 "obuilder-spec" {= version}
26 "ocaml" {>= "4.14.0"}
27 "alcotest-lwt" {with-test}
28 "odoc" {with-doc}
29]
30build: [
31 ["dune" "subst"] {dev}
32 [
33 "dune"
34 "build"
35 "-p"
36 name
37 "-j"
38 jobs
39 "@install"
40 "@runtest" {with-test}
41 "@doc" {with-doc}
42 ]
43]
44dev-repo: "git+https://github.com/ocurrent/obuilder.git"
45url {
46 src:
47 "https://github.com/ocurrent/obuilder/releases/download/v0.5.1/obuilder-0.5.1.tbz"
48 checksum: [
49 "sha256=9de36c0a7f3df94bbe6ae3fa8c77ab31cf0c890a7580cbcf4c9f522d896594d7"
50 "sha512=d6c98d7e44f5d877fd77af29c16129cc57f7fcbe0161a48441ca38c4a73d15d319d41065ffe24f42430a5c733c088c65bfc4a4b50b92bf1b3a204f72bc580d49"
51 ]
52}
53x-commit-hash: "7015f4f00ac5183c70b27d044e8582b6c33105bd"