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.1"} 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/obuilder-0.5.tbz" 48 checksum: [ 49 "sha256=3d317a28079ca83d372675732fe04b5ed865efad1f3439e97fe20d96fa72bae5" 50 "sha512=52fa409cfe9c5b90841802004de7d4fbf7d0dc81900e0ad871a85a67bde7e3572a3cc9e13facc3d0933ed61eefd9d84e83ff613d6515c550978ad55ab03b14d2" 51 ] 52} 53x-commit-hash: "1022ec8318dacc05c63ab1a7968f43af2fe970d1"