this repo has no description
1opam-version: "2.0" 2license: "Apache-2.0" 3synopsis: "Run build scripts for CI" 4description: 5 "OBuilder takes a build script (similar to a Dockerfile) and performs the steps in it in a sandboxed environment." 6maintainer: ["talex5@gmail.com"] 7authors: ["talex5@gmail.com"] 8homepage: "https://github.com/ocurrent/obuilder" 9doc: "https://ocurrent.github.io/obuilder/" 10bug-reports: "https://github.com/ocurrent/obuilder/issues" 11depends: [ 12 "dune" {>= "2.7"} 13 "lwt" {>= "5.5.0"} 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" 24 "sqlite3" 25 "obuilder-spec" {= version} 26 "ocaml" {>= "4.10.0"} 27 "alcotest-lwt" {with-test} 28 "odoc" {with-doc} 29] 30conflicts: [ "result" {< "1.5"} ] 31build: [ 32 ["dune" "subst"] {dev} 33 [ 34 "dune" 35 "build" 36 "-p" 37 name 38 "-j" 39 jobs 40 "@install" 41 "@runtest" {with-test} 42 "@doc" {with-doc} 43 ] 44] 45dev-repo: "git+https://github.com/ocurrent/obuilder.git" 46url { 47 src: 48 "https://github.com/ocurrent/obuilder/releases/download/v0.4/obuilder-0.4.tbz" 49 checksum: [ 50 "sha256=b50d35dac6fe69cbb6a07bd82e922cb0fd842d7d70c60d74001491becdb18b13" 51 "sha512=1eb006a9bba83bf1f6006082cf313b03d1b9f6af6ee1faecdcb987731809e7e8f301f8373a02158c81017411f6d18f917b77b320ce78c7a9357175003c77d5d5" 52 ] 53} 54x-commit-hash: "ad84405ec45ed79a4b3a52051a2981068d992768"