Organisationstalex5cuekeeper7825ec ()(lower-bound)

(lower-bound)

Logs

Show full logs
2025-01-21 14:23.14: New job: test talex5/cuekeeper https://github.com/talex5/cuekeeper.git#refs/pull/47/head (7825ec8c070f525416a5622bb2fc902cd25bc52b) (linux-x86_64:(lower-bound))
Base: ocaml/opam:debian-12-ocaml-4.13@sha256:4990a3dd64b41f8b4dffb53846152e2521d3acfc19986faacd875e322b906947
Opam project build

To reproduce locally:

git clone --recursive "https://github.com/talex5/cuekeeper.git" && cd "cuekeeper" && git fetch origin "refs/pull/47/head" && git reset --hard 7825ec8c
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.13@sha256:4990a3dd64b41f8b4dffb53846152e2521d3acfc19986faacd875e322b906947
# debian-12-4.13_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e b41fc63234d56d04112634b1ea9121f12caf9794 || git fetch origin master) && git reset -q --hard b41fc63234d56d04112634b1ea9121f12caf9794 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 cuekeeper.opam ./
RUN opam pin add -yn cuekeeper.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="angstrom.0.14.0 asn1-combinators.0.3.1 astring.0.8.5 base.v0.14.1 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.3.0 bheap.2.0.0 bigarray-compat.1.0.0 bigstringaf.0.7.0 biniou.1.2.0 bos.0.1.0 ca-certs.1.0.0 carton.0.4.3 carton-git.0.4.3 carton-lwt.0.4.3 checkseum.0.3.2 cmdliner.1.3.0 cohttp.4.1.2 cohttp-lwt.4.1.2 cohttp-lwt-jsoo.4.1.2 cohttp-lwt-unix.4.1.2 conduit.7.0.0 conduit-lwt.7.0.0 conduit-lwt-unix.7.0.0 conf-gmp.1 conf-gmp-powm-sec.1 conf-pkg-config.1.0 conf-which.1 cppo.1.6.1 crunch.1.4.0 cstruct.6.0.0 decompress.1.4.1 digestif.1.2.0 domain-name.0.3.0 duff.0.3 dune.3.2.0 dune-configurator.2.7.0 duration.0.1.0 easy-format.1.0.1 either.1.0.0 emile.1.1 encore.0.8 eqaf.0.8 fmt.0.8.9 fpath.0.7.3 git.3.7.0 gmap.0.3.0 hkdf.2.0.0 hxd.0.3.2 ipaddr.5.2.0 ipaddr-sexp.5.2.0 irmin.2.10.0 irmin-git.2.10.0 irmin-indexeddb.2.6.0 jbuilder.1.0+beta20.1 js_of_ocaml.4.0.0 js_of_ocaml-compiler.4.0.0 js_of_ocaml-lwt.4.0.0 js_of_ocaml-ppx.4.0.0 js_of_ocaml-tyxml.4.0.0 jsonm.1.0.1 ke.0.4 logs.0.7.0 lwt.5.7.0 macaddr.5.2.0 magic-mime.1.0.0 menhir.20200123 menhirLib.20200123 menhirSdk.20200123 mimic.0.0.4 mirage-crypto.1.1.0 mirage-crypto-ec.1.1.0 mirage-crypto-pk.1.1.0 mirage-crypto-rng.1.1.0 mirage-crypto-rng-lwt.1.1.0 mirage-flow.2.0.1 mmap.1.0.2 mtime.1.2.0 num.1.0 ocaml.4.13.1 ocaml-base-compiler.4.13.1 ocaml-compiler-libs.v0.11.0 ocaml-config.2 ocaml-migrate-parsetree.2.2.0 ocaml-options-vanilla.1 ocamlbuild.0.14.0 ocamlfind.1.9.1 ocamlgraph.1.8.8 ocplib-endian.1.0 ohex.0.2.0 omd.1.3.1 optint.0.1.0 ounit.2.0.0 parsexp.v0.14.1 pbkdf.2.0.0 pecu.0.4 ppx_cstruct.6.0.0 ppx_derivers.1.0 ppx_deriving.5.2 ppx_irmin.2.10.0 ppx_repr.0.5.0 ppx_sexp_conv.v0.14.3 ppxlib.0.22.2 psq.0.2.0 ptime.0.8.6 re.1.9.0 react.1.2.1 reactiveData.0.2 repr.0.5.0 result.1.5 rresult.0.4.0 seq.0.2.2 sexplib.v0.14.0 sexplib0.v0.14.0 stdlib-shims.0.1.0 stringext.1.4.0 tar.2.0.0 tls.1.0.0 tls-lwt.1.0.0 topkg.1.0.3 tyxml.4.6.0 uchar.0.0.2 uri.4.1.0 uri-sexp.4.1.0 uuidm.0.9.7 uutf.1.0.1 x509.1.0.2 yojson.1.5.0 zarith.1.13"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --depext-only -y cuekeeper.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build

END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK

2025-01-21 14:23.14: Using cache hint "talex5/cuekeeper-ocaml/opam:debian-12-ocaml-4.13@sha256:4990a3dd64b41f8b4dffb53846152e2521d3acfc19986faacd875e322b906947-debian-12-4.13_opam-2.3-ff14b653ffaaccac900f91a436bd821c"
2025-01-21 14:23.14: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.13@sha256:4990a3dd64b41f8b4dffb53846152e2521d3acfc19986faacd875e322b906947)
 (comment debian-12-4.13_opam-2.3)
 (user (uid 1000) (gid 1000))
 (env CLICOLOR_FORCE 1)
 (env OPAMCOLOR always)
 (workdir /src)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
 (run (shell "opam init --reinit -ni"))
 (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
 (workdir /src)
 (run (shell "sudo chown opam /src"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "cd ~/opam-repository && (git cat-file -e b41fc63234d56d04112634b1ea9121f12caf9794 || git fetch origin master) && git reset -q --hard b41fc63234d56d04112634b1ea9121f12caf9794 && git log --no-decorate -n1 --oneline && opam update -u"))
 (copy (src cuekeeper.opam) (dst ./))
 (run (network host)
      (shell "opam pin add -yn cuekeeper.dev './'"))
 (run (network host)
      (shell "echo '(lang dune 3.0)' > './dune-project'"))
 (env DEPS "angstrom.0.14.0 asn1-combinators.0.3.1 astring.0.8.5 base.v0.14.1 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.3.0 bheap.2.0.0 bigarray-compat.1.0.0 bigstringaf.0.7.0 biniou.1.2.0 bos.0.1.0 ca-certs.1.0.0 carton.0.4.3 carton-git.0.4.3 carton-lwt.0.4.3 checkseum.0.3.2 cmdliner.1.3.0 cohttp.4.1.2 cohttp-lwt.4.1.2 cohttp-lwt-jsoo.4.1.2 cohttp-lwt-unix.4.1.2 conduit.7.0.0 conduit-lwt.7.0.0 conduit-lwt-unix.7.0.0 conf-gmp.1 conf-gmp-powm-sec.1 conf-pkg-config.1.0 conf-which.1 cppo.1.6.1 crunch.1.4.0 cstruct.6.0.0 decompress.1.4.1 digestif.1.2.0 domain-name.0.3.0 duff.0.3 dune.3.2.0 dune-configurator.2.7.0 duration.0.1.0 easy-format.1.0.1 either.1.0.0 emile.1.1 encore.0.8 eqaf.0.8 fmt.0.8.9 fpath.0.7.3 git.3.7.0 gmap.0.3.0 hkdf.2.0.0 hxd.0.3.2 ipaddr.5.2.0 ipaddr-sexp.5.2.0 irmin.2.10.0 irmin-git.2.10.0 irmin-indexeddb.2.6.0 jbuilder.1.0+beta20.1 js_of_ocaml.4.0.0 js_of_ocaml-compiler.4.0.0 js_of_ocaml-lwt.4.0.0 js_of_ocaml-ppx.4.0.0 js_of_ocaml-tyxml.4.0.0 jsonm.1.0.1 ke.0.4 logs.0.7.0 lwt.5.7.0 macaddr.5.2.0 magic-mime.1.0.0 menhir.20200123 menhirLib.20200123 menhirSdk.20200123 mimic.0.0.4 mirage-crypto.1.1.0 mirage-crypto-ec.1.1.0 mirage-crypto-pk.1.1.0 mirage-crypto-rng.1.1.0 mirage-crypto-rng-lwt.1.1.0 mirage-flow.2.0.1 mmap.1.0.2 mtime.1.2.0 num.1.0 ocaml.4.13.1 ocaml-base-compiler.4.13.1 ocaml-compiler-libs.v0.11.0 ocaml-config.2 ocaml-migrate-parsetree.2.2.0 ocaml-options-vanilla.1 ocamlbuild.0.14.0 ocamlfind.1.9.1 ocamlgraph.1.8.8 ocplib-endian.1.0 ohex.0.2.0 omd.1.3.1 optint.0.1.0 ounit.2.0.0 parsexp.v0.14.1 pbkdf.2.0.0 pecu.0.4 ppx_cstruct.6.0.0 ppx_derivers.1.0 ppx_deriving.5.2 ppx_irmin.2.10.0 ppx_repr.0.5.0 ppx_sexp_conv.v0.14.3 ppxlib.0.22.2 psq.0.2.0 ptime.0.8.6 re.1.9.0 react.1.2.1 reactiveData.0.2 repr.0.5.0 result.1.5 rresult.0.4.0 seq.0.2.2 sexplib.v0.14.0 sexplib0.v0.14.0 stdlib-shims.0.1.0 stringext.1.4.0 tar.2.0.0 tls.1.0.0 tls-lwt.1.0.0 topkg.1.0.3 tyxml.4.6.0 uchar.0.0.2 uri.4.1.0 uri-sexp.4.1.0 uuidm.0.9.7 uutf.1.0.1 x509.1.0.2 yojson.1.5.0 zarith.1.13")
 (env CI true)
 (env OCAMLCI true)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y cuekeeper.dev $DEPS"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "opam install $DEPS"))
 (copy (src .) (dst /src))
 (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)

2025-01-21 14:23.14: Waiting for resource in pool OCluster
2025-01-21 14:44.08: Cancelling: Auto-cancelling job because it is no longer needed