OrganisationsTheLortexdream8bd9b9 (mirage-alpha4)opensuse-15.6-4.14_opam-2.5

opensuse-15.6-4.14_opam-2.5

Link Copied
Code Copied

Logs

2026-03-28 07:30.03: New job: test TheLortex/dream https://github.com/TheLortex/dream.git#refs/heads/mirage-alpha4 (8bd9b9aa0640d15a94b9610709bf9ee24d70e8f0) (linux-x86_64:opensuse-15.6-4.14_opam-2.5)
Base: ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/TheLortex/dream.git" -b "mirage-alpha4" && cd "dream" && git reset --hard 8bd9b9aa
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67
# opensuse-15.6-4.14_opam-2.5
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.5 /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 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef || git fetch origin master) && git reset -q --hard 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef && git log --no-decorate -n1 --oneline && opam update -u
RUN mkdir -p 'src/vendor/websocketaf/' 'src/vendor/paf/' 'src/vendor/httpaf/' 'src/vendor/h2/' 'src/vendor/gluten/' 'example/z-playground/runtime/' 'example/z-playground/' 'example/z-docker-opam/' 'docs/web/'
COPY --chown=1000:1000 src/vendor/websocketaf/websocketaf.opam src/vendor/websocketaf/websocketaf-mirage.opam src/vendor/websocketaf/websocketaf-lwt.opam src/vendor/websocketaf/websocketaf-lwt-unix.opam src/vendor/websocketaf/websocketaf-eio.opam src/vendor/websocketaf/websocketaf-async.opam src/vendor/websocketaf/
COPY --chown=1000:1000 src/vendor/paf/paf.opam src/vendor/paf/paf-le.opam src/vendor/paf/paf-cohttp.opam src/vendor/paf/
COPY --chown=1000:1000 src/vendor/httpaf/httpaf.opam src/vendor/httpaf/httpaf-mirage.opam src/vendor/httpaf/httpaf-lwt.opam src/vendor/httpaf/httpaf-lwt-unix.opam src/vendor/httpaf/httpaf-eio.opam src/vendor/httpaf/httpaf-async.opam src/vendor/httpaf/
COPY --chown=1000:1000 src/vendor/h2/hpack.opam src/vendor/h2/h2.opam src/vendor/h2/h2-mirage.opam src/vendor/h2/h2-lwt.opam src/vendor/h2/h2-lwt-unix.opam src/vendor/h2/h2-async.opam src/vendor/h2/
COPY --chown=1000:1000 src/vendor/gluten/gluten.opam src/vendor/gluten/gluten-mirage.opam src/vendor/gluten/gluten-lwt.opam src/vendor/gluten/gluten-lwt-unix.opam src/vendor/gluten/gluten-eio.opam src/vendor/gluten/gluten-async.opam src/vendor/gluten/
COPY --chown=1000:1000 example/z-playground/runtime/runtime.opam example/z-playground/runtime/
COPY --chown=1000:1000 example/z-playground/playground.opam example/z-playground/
COPY --chown=1000:1000 example/z-docker-opam/hello.opam example/z-docker-opam/
COPY --chown=1000:1000 dream.opam dream-pure.opam dream-mirage.opam dream-httpaf.opam ./
COPY --chown=1000:1000 docs/web/web.opam docs/web/
RUN opam pin add -yn websocketaf.dev 'src/vendor/websocketaf/' && \
opam pin add -yn websocketaf-mirage.dev 'src/vendor/websocketaf/' && \
opam pin add -yn websocketaf-lwt.dev 'src/vendor/websocketaf/' && \
opam pin add -yn websocketaf-lwt-unix.dev 'src/vendor/websocketaf/' && \
opam pin add -yn websocketaf-eio.dev 'src/vendor/websocketaf/' && \
opam pin add -yn websocketaf-async.dev 'src/vendor/websocketaf/' && \
opam pin add -yn paf.dev 'src/vendor/paf/' && \
opam pin add -yn paf-le.dev 'src/vendor/paf/' && \
opam pin add -yn paf-cohttp.dev 'src/vendor/paf/' && \
opam pin add -yn httpaf.dev 'src/vendor/httpaf/' && \
opam pin add -yn httpaf-mirage.dev 'src/vendor/httpaf/' && \
opam pin add -yn httpaf-lwt.dev 'src/vendor/httpaf/' && \
opam pin add -yn httpaf-lwt-unix.dev 'src/vendor/httpaf/' && \
opam pin add -yn httpaf-eio.dev 'src/vendor/httpaf/' && \
opam pin add -yn httpaf-async.dev 'src/vendor/httpaf/' && \
opam pin add -yn hpack.dev 'src/vendor/h2/' && \
opam pin add -yn h2.dev 'src/vendor/h2/' && \
opam pin add -yn h2-mirage.dev 'src/vendor/h2/' && \
opam pin add -yn h2-lwt.dev 'src/vendor/h2/' && \
opam pin add -yn h2-lwt-unix.dev 'src/vendor/h2/' && \
opam pin add -yn h2-async.dev 'src/vendor/h2/' && \
opam pin add -yn gluten.dev 'src/vendor/gluten/' && \
opam pin add -yn gluten-mirage.dev 'src/vendor/gluten/' && \
opam pin add -yn gluten-lwt.dev 'src/vendor/gluten/' && \
opam pin add -yn gluten-lwt-unix.dev 'src/vendor/gluten/' && \
opam pin add -yn gluten-eio.dev 'src/vendor/gluten/' && \
opam pin add -yn gluten-async.dev 'src/vendor/gluten/' && \
opam pin add -yn runtime.dev 'example/z-playground/runtime/' && \
opam pin add -yn playground.dev 'example/z-playground/' && \
opam pin add -yn hello.dev 'example/z-docker-opam/' && \
opam pin add -yn dream.dev './' && \
opam pin add -yn dream-pure.dev './' && \
opam pin add -yn dream-mirage.dev './' && \
opam pin add -yn dream-httpaf.dev './' && \
opam pin add -yn web.dev 'docs/web/'
RUN echo '(lang dune 3.0)' > 'src/vendor/websocketaf/dune-project' && \
echo '(lang dune 3.0)' > 'src/vendor/paf/dune-project' && \
echo '(lang dune 3.0)' > 'src/vendor/httpaf/dune-project' && \
echo '(lang dune 3.0)' > 'src/vendor/h2/dune-project' && \
echo '(lang dune 3.0)' > 'src/vendor/gluten/dune-project' && \
echo '(lang dune 3.0)' > 'example/z-playground/runtime/dune-project' && \
echo '(lang dune 3.0)' > 'example/z-playground/dune-project' && \
echo '(lang dune 3.0)' > 'example/z-docker-opam/dune-project' && \
echo '(lang dune 3.0)' > './dune-project' && \
echo '(lang dune 3.0)' > 'docs/web/dune-project'
ENV DEPS="alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigarray-compat.1.1.0 bigstringaf.0.10.0 bisect_ppx.2.8.3 bstr.0.0.4 camlp-streams.5.0.1 caqti.2.2.4 caqti-driver-postgresql.2.2.4 caqti-driver-sqlite3.2.2.4 caqti-lwt.2.2.4 cmdliner.1.3.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libev.4-13 conf-libssl.4 conf-pkg-config.4 conf-postgresql.2 conf-sqlite3.1 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 cstruct.6.2.0 digestif.1.3.0 domain-name.0.5.0 dune.3.22.0 dune-build-info.3.22.0 dune-compiledb.0.6.0 dune-configurator.3.22.0 dune-private-libs.3.22.0 dune-site.3.22.0 duration.0.2.1 dyn.3.22.0 emile.1.1 eqaf.0.10 ezjsonm.1.3.0 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fix.20250919 fmt.0.11.0 fpath.0.7.3 fs-io.3.22.0 gen.1.1 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 hex.1.5.0 hmap.0.8.1 ipaddr.5.6.2 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 jst-config.v0.16.0 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 letsencrypt.1.1.0 logs.0.10.0 lru.0.3.1 lwt.5.9.2 lwt-dllist.1.1.0 lwt_ppx.5.9.1 lwt_ssl.1.2.0 macaddr.5.6.2 magic-mime.1.3.1 markup.1.0.3 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 merlin-extend.0.6.2 mimic.0.0.9 mirage-clock.4.2.0 mirage-crypto.1.2.0 mirage-crypto-ec.1.2.0 mirage-crypto-pk.1.2.0 mirage-crypto-rng.1.2.0 mirage-crypto-rng-lwt.1.2.0 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-protocols.7.0.0 mirage-ptime.5.2.0 mirage-stack.3.0.0 mtime.2.1.0 multipart_form.0.8.0 multipart_form-lwt.0.8.0 num.1.6 ocaml.4.14.3 ocaml-base-compiler.4.14.3 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 octavius.1.2.2 ohex.0.2.0 optint.0.3.0 ordering.3.22.0 parsexp.v0.16.0 pecu.0.7 postgresql.5.2.0 pp.2.0.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_derivers.1.2.1 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_inline_test.v0.16.1 ppx_js_style.v0.16.0 ppx_optcomp.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_yojson_conv.v0.16.0 ppx_yojson_conv_lib.v0.16.0 ppxlib.0.35.0 prettym.0.0.4 psq.0.2.1 ptime.1.2.0 re.1.14.0 reason.3.15.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 sqlite3.5.4.0 ssl.0.7.0 stdio.v0.16.0 stdlib-shims.0.3.0 stdune.3.22.0 stringext.1.6.0 time_now.v0.16.0 tls.2.0.4 tls-mirage.2.0.4 top-closure.3.22.0 topkg.1.1.1 tyxml.4.6.0 tyxml-jsx.4.6.0 tyxml-ppx.4.6.0 tyxml-syntax.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.5 --depext-only -y dream.dev dream-pure.dev dream-mirage.dev dream-httpaf.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


2026-03-28 07:30.03: Using cache hint "TheLortex/dream-ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67-opensuse-15.6-4.14_opam-2.5-0248a60e904b37f55fbaf6324580e484"
2026-03-28 07:30.03: Using OBuilder spec:
((from ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67)
(comment opensuse-15.6-4.14_opam-2.5)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/bin/opam-2.5 /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 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef || git fetch origin master) && git reset -q --hard 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef && git log --no-decorate -n1 --oneline && opam update -u"))
(run (shell "mkdir -p 'src/vendor/websocketaf/' 'src/vendor/paf/' 'src/vendor/httpaf/' 'src/vendor/h2/' 'src/vendor/gluten/' 'example/z-playground/runtime/' 'example/z-playground/' 'example/z-docker-opam/' 'docs/web/'"))
(copy (src src/vendor/websocketaf/websocketaf.opam src/vendor/websocketaf/websocketaf-mirage.opam src/vendor/websocketaf/websocketaf-lwt.opam src/vendor/websocketaf/websocketaf-lwt-unix.opam src/vendor/websocketaf/websocketaf-eio.opam src/vendor/websocketaf/websocketaf-async.opam)
(dst src/vendor/websocketaf/))
(copy (src src/vendor/paf/paf.opam src/vendor/paf/paf-le.opam src/vendor/paf/paf-cohttp.opam)
(dst src/vendor/paf/))
(copy (src src/vendor/httpaf/httpaf.opam src/vendor/httpaf/httpaf-mirage.opam src/vendor/httpaf/httpaf-lwt.opam src/vendor/httpaf/httpaf-lwt-unix.opam src/vendor/httpaf/httpaf-eio.opam src/vendor/httpaf/httpaf-async.opam)
(dst src/vendor/httpaf/))
(copy (src src/vendor/h2/hpack.opam src/vendor/h2/h2.opam src/vendor/h2/h2-mirage.opam src/vendor/h2/h2-lwt.opam src/vendor/h2/h2-lwt-unix.opam src/vendor/h2/h2-async.opam)
(dst src/vendor/h2/))
(copy (src src/vendor/gluten/gluten.opam src/vendor/gluten/gluten-mirage.opam src/vendor/gluten/gluten-lwt.opam src/vendor/gluten/gluten-lwt-unix.opam src/vendor/gluten/gluten-eio.opam src/vendor/gluten/gluten-async.opam)
(dst src/vendor/gluten/))
(copy (src example/z-playground/runtime/runtime.opam)
(dst example/z-playground/runtime/))
(copy (src example/z-playground/playground.opam) (dst example/z-playground/))
(copy (src example/z-docker-opam/hello.opam) (dst example/z-docker-opam/))
(copy (src dream.opam dream-pure.opam dream-mirage.opam dream-httpaf.opam)
(dst ./))
(copy (src docs/web/web.opam) (dst docs/web/))
(run (network host)
(shell  "opam pin add -yn websocketaf.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-mirage.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-lwt.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-lwt-unix.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-eio.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-async.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn paf.dev 'src/vendor/paf/' && \
\nopam pin add -yn paf-le.dev 'src/vendor/paf/' && \
\nopam pin add -yn paf-cohttp.dev 'src/vendor/paf/' && \
\nopam pin add -yn httpaf.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-mirage.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-lwt.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-lwt-unix.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-eio.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-async.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn hpack.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2-mirage.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2-lwt.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2-lwt-unix.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2-async.dev 'src/vendor/h2/' && \
\nopam pin add -yn gluten.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-mirage.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-lwt.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-lwt-unix.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-eio.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-async.dev 'src/vendor/gluten/' && \
\nopam pin add -yn runtime.dev 'example/z-playground/runtime/' && \
\nopam pin add -yn playground.dev 'example/z-playground/' && \
\nopam pin add -yn hello.dev 'example/z-docker-opam/' && \
\nopam pin add -yn dream.dev './' && \
\nopam pin add -yn dream-pure.dev './' && \
\nopam pin add -yn dream-mirage.dev './' && \
\nopam pin add -yn dream-httpaf.dev './' && \
\nopam pin add -yn web.dev 'docs/web/'"))
(run (shell  "echo '(lang dune 3.0)' > 'src/vendor/websocketaf/dune-project' && \
\necho '(lang dune 3.0)' > 'src/vendor/paf/dune-project' && \
\necho '(lang dune 3.0)' > 'src/vendor/httpaf/dune-project' && \
\necho '(lang dune 3.0)' > 'src/vendor/h2/dune-project' && \
\necho '(lang dune 3.0)' > 'src/vendor/gluten/dune-project' && \
\necho '(lang dune 3.0)' > 'example/z-playground/runtime/dune-project' && \
\necho '(lang dune 3.0)' > 'example/z-playground/dune-project' && \
\necho '(lang dune 3.0)' > 'example/z-docker-opam/dune-project' && \
\necho '(lang dune 3.0)' > './dune-project' && \
\necho '(lang dune 3.0)' > 'docs/web/dune-project'"))
(env DEPS "alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigarray-compat.1.1.0 bigstringaf.0.10.0 bisect_ppx.2.8.3 bstr.0.0.4 camlp-streams.5.0.1 caqti.2.2.4 caqti-driver-postgresql.2.2.4 caqti-driver-sqlite3.2.2.4 caqti-lwt.2.2.4 cmdliner.1.3.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libev.4-13 conf-libssl.4 conf-pkg-config.4 conf-postgresql.2 conf-sqlite3.1 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 cstruct.6.2.0 digestif.1.3.0 domain-name.0.5.0 dune.3.22.0 dune-build-info.3.22.0 dune-compiledb.0.6.0 dune-configurator.3.22.0 dune-private-libs.3.22.0 dune-site.3.22.0 duration.0.2.1 dyn.3.22.0 emile.1.1 eqaf.0.10 ezjsonm.1.3.0 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fix.20250919 fmt.0.11.0 fpath.0.7.3 fs-io.3.22.0 gen.1.1 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 hex.1.5.0 hmap.0.8.1 ipaddr.5.6.2 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 jst-config.v0.16.0 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 letsencrypt.1.1.0 logs.0.10.0 lru.0.3.1 lwt.5.9.2 lwt-dllist.1.1.0 lwt_ppx.5.9.1 lwt_ssl.1.2.0 macaddr.5.6.2 magic-mime.1.3.1 markup.1.0.3 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 merlin-extend.0.6.2 mimic.0.0.9 mirage-clock.4.2.0 mirage-crypto.1.2.0 mirage-crypto-ec.1.2.0 mirage-crypto-pk.1.2.0 mirage-crypto-rng.1.2.0 mirage-crypto-rng-lwt.1.2.0 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-protocols.7.0.0 mirage-ptime.5.2.0 mirage-stack.3.0.0 mtime.2.1.0 multipart_form.0.8.0 multipart_form-lwt.0.8.0 num.1.6 ocaml.4.14.3 ocaml-base-compiler.4.14.3 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 octavius.1.2.2 ohex.0.2.0 optint.0.3.0 ordering.3.22.0 parsexp.v0.16.0 pecu.0.7 postgresql.5.2.0 pp.2.0.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_derivers.1.2.1 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_inline_test.v0.16.1 ppx_js_style.v0.16.0 ppx_optcomp.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_yojson_conv.v0.16.0 ppx_yojson_conv_lib.v0.16.0 ppxlib.0.35.0 prettym.0.0.4 psq.0.2.1 ptime.1.2.0 re.1.14.0 reason.3.15.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 sqlite3.5.4.0 ssl.0.7.0 stdio.v0.16.0 stdlib-shims.0.3.0 stdune.3.22.0 stringext.1.6.0 time_now.v0.16.0 tls.2.0.4 tls-mirage.2.0.4 top-closure.3.22.0 topkg.1.1.1 tyxml.4.6.0 tyxml-jsx.4.6.0 tyxml-ppx.4.6.0 tyxml-syntax.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14")
(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.5 --depext-only -y dream.dev dream-pure.dev dream-mirage.dev dream-httpaf.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"))
)


2026-03-28 07:30.03: Waiting for resource in pool OCluster
2026-03-28 07:52.02: Waiting for worker…
2026-03-28 07:54.19: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Submodule path 'src/vendor/gluten': checked out 'f8b88c485beb473af97de7b39461fb60a56cff3f'
Submodule path 'src/vendor/h2': checked out '8ad7db35248e2d321b993fc60390ccfdd54cb096'
Submodule path 'src/vendor/httpaf': checked out '7189cd28e21203117f0c8e2347ae9a2fe0e0c157'
Submodule path 'src/vendor/paf': checked out '873e7b3b00d60ac6d6b1a59c3e867f27f357369b'
Submodule path 'src/vendor/websocketaf': checked out '44c54291a09ec271b256cdce3b3999315131c750'
HEAD is now at 8bd9b9a CI: pass opam file lint
Synchronizing submodule url for 'src/vendor/gluten'
Synchronizing submodule url for 'src/vendor/h2'
Synchronizing submodule url for 'src/vendor/httpaf'
Synchronizing submodule url for 'src/vendor/paf'
Synchronizing submodule url for 'src/vendor/websocketaf'
Cleared directory 'src/vendor/gluten'
Submodule 'src/vendor/gluten' (https://github.com/anmonteiro/gluten.git) unregistered for path 'src/vendor/gluten'
Cleared directory 'src/vendor/h2'
Submodule 'src/vendor/h2' (https://github.com/anmonteiro/ocaml-h2.git) unregistered for path 'src/vendor/h2'
Cleared directory 'src/vendor/httpaf'
Submodule 'src/vendor/httpaf' (https://github.com/anmonteiro/httpaf.git) unregistered for path 'src/vendor/httpaf'
Cleared directory 'src/vendor/paf'
Submodule 'src/vendor/paf' (https://github.com/TheLortex/paf-le-chien.git) unregistered for path 'src/vendor/paf'
Cleared directory 'src/vendor/websocketaf'
Submodule 'src/vendor/websocketaf' (https://github.com/anmonteiro/websocketaf.git) unregistered for path 'src/vendor/websocketaf'
Submodule 'src/vendor/gluten' (https://github.com/anmonteiro/gluten.git) registered for path 'src/vendor/gluten'
Submodule 'src/vendor/h2' (https://github.com/anmonteiro/ocaml-h2.git) registered for path 'src/vendor/h2'
Submodule 'src/vendor/httpaf' (https://github.com/anmonteiro/httpaf.git) registered for path 'src/vendor/httpaf'
Submodule 'src/vendor/paf' (https://github.com/TheLortex/paf-le-chien.git) registered for path 'src/vendor/paf'
Submodule 'src/vendor/websocketaf' (https://github.com/anmonteiro/websocketaf.git) registered for path 'src/vendor/websocketaf'
Submodule path 'src/vendor/gluten': checked out 'f8b88c485beb473af97de7b39461fb60a56cff3f'
Submodule path 'src/vendor/h2': checked out '8ad7db35248e2d321b993fc60390ccfdd54cb096'
Submodule path 'src/vendor/h2/hpack/test/hpack-test-case': checked out 'b2a1664b43dc520a4bbff2e7db1b7e7af4fb43f4'
Submodule path 'src/vendor/h2/lib_test/http2-frame-test-case': checked out '5c67db0d4d68e1fb7d3a241d6e01fc04d981f465'
Submodule path 'src/vendor/httpaf': checked out '7189cd28e21203117f0c8e2347ae9a2fe0e0c157'
Submodule path 'src/vendor/paf': checked out '873e7b3b00d60ac6d6b1a59c3e867f27f357369b'
Submodule path 'src/vendor/websocketaf': checked out '44c54291a09ec271b256cdce3b3999315131c750'


(from ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67)
Unable to find image 'ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67' locally
docker.io/ocaml/opam@sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67: Pulling from ocaml/opam
cf0250ddcb79: Already exists
54ef38c3c526: Already exists
aefa76fd54e9: Already exists
5160a68bee03: Already exists
dff8487ca90e: Already exists
b5251e6ddd43: Already exists
d04e35b39212: Already exists
8a2c8750a65d: Already exists
c2bd98b2043f: Already exists
92d1ca2d50ad: Already exists
0c6bc91a1b86: Already exists
d401ac8151ea: Already exists
fecb8eb50ef9: Already exists
994c30767800: Already exists
373c0f192c59: Already exists
2ab629b957a4: Already exists
547301ca33cf: Already exists
45dd79c31b90: Already exists
45dd79c31b90: Already exists
4f4fb700ef54: Already exists
bbf088cc8b89: Already exists
7d084657d09b: Already exists
2f7fdd47d012: Already exists
bacfe3fbab4c: Already exists
8dd3fdf6dbcc: Already exists
178679eaaecc: Already exists
833aa5f3f1e1: Already exists
3fe068bfdf2c: Already exists
49b5535fa493: Already exists
e5952018833a: Already exists
525eae7302cc: Already exists
4f96601806d7: Already exists
ad34c1ad9b31: Already exists
cd5ff2180057: Already exists
dd297f4c55fb: Already exists
291468184bd2: Already exists
1fbd20167461: Already exists
d39c1baaf8e5: Already exists
17b7502e279e: Pulling fs layer
1a08779b4d9e: Pulling fs layer
0d2853b618f6: Pulling fs layer
5ee207db47eb: Pulling fs layer
5a776fd8eb40: Pulling fs layer
5ee207db47eb: Waiting
5a776fd8eb40: Waiting
0d2853b618f6: Verifying Checksum
0d2853b618f6: Download complete
5ee207db47eb: Verifying Checksum
5ee207db47eb: Download complete
5a776fd8eb40: Verifying Checksum
5a776fd8eb40: Download complete
17b7502e279e: Verifying Checksum
17b7502e279e: Download complete
1a08779b4d9e: Verifying Checksum
1a08779b4d9e: Download complete
17b7502e279e: Pull complete
1a08779b4d9e: Pull complete
0d2853b618f6: Pull complete
5ee207db47eb: Pull complete
5a776fd8eb40: Pull complete
Digest: sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67
Status: Downloaded newer image for ocaml/opam@sha256:ea7df7b97205b48d47783accd725289689add0bdd28c25efd13baad8a7f63e67
2026-03-28 07:54.48 ---> using "cd5ffe9eb783a234fb2269492629f1d7ab95728a3b4bc5415fbf3c844d82edbb" from cache


/: (comment opensuse-15.6-4.14_opam-2.5)


/: (user (uid 1000) (gid 1000))


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam"))
2026-03-28 07:54.48 ---> using "b38dc0966963e77ed21e23d461bad85d02565fcf67a50922c57e4b2af9540307" from cache


/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.


Continue? [Y/n] y
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.


[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] Could not update repository "ocaml-patches-overlay": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocurrent/opam-repository/': Could not resolve host: github.com"
[default] Initialised
2026-03-28 07:54.48 ---> using "ef396fa5a5d7537257565a5bcbb59afbf4aa6b15b8cafed6c6e5e61b84ec6690" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-106-generic
The OCaml toplevel, version 4.14.3
2.5.0
2026-03-28 07:54.48 ---> using "ddd4f8b68bc9f8bc2defa466f036f815b09acabb6864105826cee62ba3597dbf" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2026-03-28 07:54.48 ---> using "9e9ba07ed62b7ce49d36fe4d5f009843b66191bf327353bcaf40035913d106a4" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef || git fetch origin master) && git reset -q --hard 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef && git log --no-decorate -n1 --oneline && opam update -u"))
9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] no changes from git+https://github.com/ocurrent/opam-repository#patches
[default] synchronised from git+file:///home/opam/opam-repository


Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.5.0"), which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2026-03-28 07:54.48 ---> using "61137f6566d8d3a4762072b3a2a198dfaade98317b0123e86a9e7612aa44ebcb" from cache


/src: (run (shell "mkdir -p 'src/vendor/websocketaf/' 'src/vendor/paf/' 'src/vendor/httpaf/' 'src/vendor/h2/' 'src/vendor/gluten/' 'example/z-playground/runtime/' 'example/z-playground/' 'example/z-docker-opam/' 'docs/web/'"))
2026-03-28 07:54.49 ---> saved as "047230d2a46005f4df2264970710ed7394abddd3b750600f6f83b91ba4558346"


/src: (copy (src src/vendor/websocketaf/websocketaf.opam src/vendor/websocketaf/websocketaf-mirage.opam src/vendor/websocketaf/websocketaf-lwt.opam src/vendor/websocketaf/websocketaf-lwt-unix.opam src/vendor/websocketaf/websocketaf-eio.opam src/vendor/websocketaf/websocketaf-async.opam)
(dst src/vendor/websocketaf/))
2026-03-28 07:54.49 ---> saved as "2165d41613666e1adf164b878c3807c9c871395ba2b8ecba7d056c34a0737af6"


/src: (copy (src src/vendor/paf/paf.opam src/vendor/paf/paf-le.opam src/vendor/paf/paf-cohttp.opam)
(dst src/vendor/paf/))
2026-03-28 07:54.50 ---> saved as "30690c297ec5201f21b55fb70e5a367e5a2818150e7882441ff64387a4267214"


/src: (copy (src src/vendor/httpaf/httpaf.opam src/vendor/httpaf/httpaf-mirage.opam src/vendor/httpaf/httpaf-lwt.opam src/vendor/httpaf/httpaf-lwt-unix.opam src/vendor/httpaf/httpaf-eio.opam src/vendor/httpaf/httpaf-async.opam)
(dst src/vendor/httpaf/))
2026-03-28 07:54.51 ---> saved as "2c70a0a30daa75938c0095bcec9cf4a8a8508a8d80d87fee066a2dfb7f2c070c"


/src: (copy (src src/vendor/h2/hpack.opam src/vendor/h2/h2.opam src/vendor/h2/h2-mirage.opam src/vendor/h2/h2-lwt.opam src/vendor/h2/h2-lwt-unix.opam src/vendor/h2/h2-async.opam)
(dst src/vendor/h2/))
2026-03-28 07:54.52 ---> saved as "1f4b3647993b6a02ba82c5e9205896035a597da70b30b7319d9354a185a0bf57"


/src: (copy (src src/vendor/gluten/gluten.opam src/vendor/gluten/gluten-mirage.opam src/vendor/gluten/gluten-lwt.opam src/vendor/gluten/gluten-lwt-unix.opam src/vendor/gluten/gluten-eio.opam src/vendor/gluten/gluten-async.opam)
(dst src/vendor/gluten/))
2026-03-28 07:54.52 ---> saved as "90fa89669edac1b2bc0708b151fb2f45e77baf232e725245943828f58af5771a"


/src: (copy (src example/z-playground/runtime/runtime.opam)
(dst example/z-playground/runtime/))
2026-03-28 07:54.53 ---> saved as "5fa528f1486c391d7074109dc4d793b8428ef0a30082b472ae61cb6e380775cd"


/src: (copy (src example/z-playground/playground.opam)
(dst example/z-playground/))
2026-03-28 07:54.54 ---> saved as "6ee29d5d0c93342e915f3180199ae03b40d490525c85a2cd0b50d6b4c35a743b"


/src: (copy (src example/z-docker-opam/hello.opam)
(dst example/z-docker-opam/))
2026-03-28 07:54.55 ---> saved as "52571b198abca273a22617947d0675beea32eb68405217a16d8edfbe082f7646"


/src: (copy (src dream.opam dream-pure.opam dream-mirage.opam dream-httpaf.opam)
(dst ./))
2026-03-28 07:54.55 ---> saved as "ddbc12958cd6fd5db9fd13d1e0cec2bedad0170764502e6e34353aeb3a8b3be9"


/src: (copy (src docs/web/web.opam) (dst docs/web/))
2026-03-28 07:54.56 ---> saved as "d8893d804fa2556ae8ba580ee465dc07e5fec5f6ccd2c795e6934eb7bed27afc"


/src: (run (network host)
(shell  "opam pin add -yn websocketaf.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-mirage.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-lwt.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-lwt-unix.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-eio.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn websocketaf-async.dev 'src/vendor/websocketaf/' && \
\nopam pin add -yn paf.dev 'src/vendor/paf/' && \
\nopam pin add -yn paf-le.dev 'src/vendor/paf/' && \
\nopam pin add -yn paf-cohttp.dev 'src/vendor/paf/' && \
\nopam pin add -yn httpaf.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-mirage.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-lwt.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-lwt-unix.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-eio.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn httpaf-async.dev 'src/vendor/httpaf/' && \
\nopam pin add -yn hpack.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2-mirage.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2-lwt.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2-lwt-unix.dev 'src/vendor/h2/' && \
\nopam pin add -yn h2-async.dev 'src/vendor/h2/' && \
\nopam pin add -yn gluten.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-mirage.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-lwt.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-lwt-unix.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-eio.dev 'src/vendor/gluten/' && \
\nopam pin add -yn gluten-async.dev 'src/vendor/gluten/' && \
\nopam pin add -yn runtime.dev 'example/z-playground/runtime/' && \
\nopam pin add -yn playground.dev 'example/z-playground/' && \
\nopam pin add -yn hello.dev 'example/z-docker-opam/' && \
\nopam pin add -yn dream.dev './' && \
\nopam pin add -yn dream-pure.dev './' && \
\nopam pin add -yn dream-mirage.dev './' && \
\nopam pin add -yn dream-httpaf.dev './' && \
\nopam pin add -yn web.dev 'docs/web/'"))
[websocketaf.dev] synchronised (file:///src/src/vendor/websocketaf)
websocketaf is now pinned to file:///src/src/vendor/websocketaf (version dev)
[NOTE] Package websocketaf-mirage does not exist in opam repositories registered in the current switch.
[websocketaf-mirage.dev] synchronised (file:///src/src/vendor/websocketaf)
[WARNING] Failed checks on websocketaf-mirage package definition from source at file:///src/src/vendor/websocketaf:
warning 74: Field 'pin-depends' contains packages that are neither in 'depends' nor in 'depopts': "httpaf-lwt", "httpaf"
The following additional pinnings are required by websocketaf-mirage.dev:
- httpaf.dev at git+https://github.com/anmonteiro/httpaf.git#fork
- httpaf-lwt.dev at git+https://github.com/anmonteiro/httpaf.git#fork
Pin and install them? [Y/n] y
[httpaf.dev] synchronised (no changes)
httpaf is now pinned to git+https://github.com/anmonteiro/httpaf.git#fork (version dev)
[NOTE] Package httpaf-lwt does not exist in opam repositories registered in the current switch.
[httpaf-lwt.dev] synchronised (no changes)
httpaf-lwt is now pinned to git+https://github.com/anmonteiro/httpaf.git#fork (version dev)
websocketaf-mirage is now pinned to file:///src/src/vendor/websocketaf (version dev)
[NOTE] Package websocketaf-lwt does not exist in opam repositories registered in the current switch.
[WARNING] Failed checks on websocketaf-lwt package definition from source at file:///src/src/vendor/websocketaf:
warning 74: Field 'pin-depends' contains packages that are neither in 'depends' nor in 'depopts': "httpaf-lwt", "httpaf"
[websocketaf-lwt.dev] synchronised (file:///src/src/vendor/websocketaf)
The following additional pinnings are required by websocketaf-lwt.dev:
- websocketaf.dev at git+https://github.com/anmonteiro/websocketaf.git#fork
Pin and install them? [Y/n] y
[NOTE] Package websocketaf is currently pinned to file:///src/src/vendor/websocketaf (version dev).
[websocketaf.dev] synchronised (git+https://github.com/anmonteiro/websocketaf.git#fork)
websocketaf is now pinned to git+https://github.com/anmonteiro/websocketaf.git#fork (version dev)
websocketaf-lwt is now pinned to file:///src/src/vendor/websocketaf (version dev)
[NOTE] Package websocketaf-lwt-unix does not exist in opam repositories registered in the current switch.
[WARNING] Failed checks on websocketaf-lwt-unix package definition from source at file:///src/src/vendor/websocketaf:
warning 74: Field 'pin-depends' contains packages that are neither in 'depends' nor in 'depopts': "httpaf-lwt", "httpaf"
[websocketaf-lwt-unix.dev] synchronised (file:///src/src/vendor/websocketaf)
The following additional pinnings are required by websocketaf-lwt-unix.dev:
- websocketaf-lwt.dev at git+https://github.com/anmonteiro/websocketaf.git#fork
Pin and install them? [Y/n] y
[NOTE] Package websocketaf-lwt is currently pinned to file:///src/src/vendor/websocketaf (version dev).
[websocketaf-lwt.dev] synchronised (git+https://github.com/anmonteiro/websocketaf.git#fork)
[WARNING] Failed checks on websocketaf-lwt package definition from source at git+https://github.com/anmonteiro/websocketaf.git#fork:
warning 74: Field 'pin-depends' contains packages that are neither in 'depends' nor in 'depopts': "httpaf-lwt", "httpaf"
websocketaf-lwt is now pinned to git+https://github.com/anmonteiro/websocketaf.git#fork (version dev)
websocketaf-lwt-unix is now pinned to file:///src/src/vendor/websocketaf (version dev)
[NOTE] Package websocketaf-eio does not exist in opam repositories registered in the current switch.
[websocketaf-eio.dev] synchronised (file:///src/src/vendor/websocketaf)
[WARNING] Failed checks on websocketaf-eio package definition from source at file:///src/src/vendor/websocketaf:
warning 74: Field 'pin-depends' contains packages that are neither in 'depends' nor in 'depopts': "httpaf-lwt", "httpaf"
websocketaf-eio is now pinned to file:///src/src/vendor/websocketaf (version dev)
[NOTE] Package websocketaf-async does not exist in opam repositories registered in the current switch.
[websocketaf-async.dev] synchronised (file:///src/src/vendor/websocketaf)
websocketaf-async is now pinned to file:///src/src/vendor/websocketaf (version dev)
[paf.dev] synchronised (file:///src/src/vendor/paf)
paf is now pinned to file:///src/src/vendor/paf (version dev)
[NOTE] Package paf-le does not exist in opam repositories registered in the current switch.
[paf-le.dev] synchronised (file:///src/src/vendor/paf)
paf-le is now pinned to file:///src/src/vendor/paf (version dev)
[paf-cohttp.dev] synchronised (file:///src/src/vendor/paf)
paf-cohttp is now pinned to file:///src/src/vendor/paf (version dev)
[NOTE] Package httpaf is currently pinned to git+https://github.com/anmonteiro/httpaf.git#fork (version dev).
[httpaf.dev] synchronised (file:///src/src/vendor/httpaf)
httpaf is now pinned to file:///src/src/vendor/httpaf (version dev)
[NOTE] Package httpaf-mirage does not exist in opam repositories registered in the current switch.
[httpaf-mirage.dev] synchronised (file:///src/src/vendor/httpaf)
[WARNING] Failed checks on httpaf-mirage package definition from source at file:///src/src/vendor/httpaf:
warning 74: Field 'pin-depends' contains packages that are neither in 'depends' nor in 'depopts': "httpaf-lwt"
The following additional pinnings are required by httpaf-mirage.dev:
- httpaf.dev at git+https://github.com/anmonteiro/httpaf.git#fork
Pin and install them? [Y/n] y
[NOTE] Package httpaf is currently pinned to file:///src/src/vendor/httpaf (version dev).
[httpaf.dev] synchronised (git+https://github.com/anmonteiro/httpaf.git#fork)
httpaf is now pinned to git+https://github.com/anmonteiro/httpaf.git#fork (version dev)
httpaf-mirage is now pinned to file:///src/src/vendor/httpaf (version dev)
[NOTE] Package httpaf-lwt is currently pinned to git+https://github.com/anmonteiro/httpaf.git#fork (version dev).
[httpaf-lwt.dev] synchronised (file:///src/src/vendor/httpaf)
httpaf-lwt is now pinned to file:///src/src/vendor/httpaf (version dev)
[httpaf-lwt-unix.dev] synchronised (file:///src/src/vendor/httpaf)
The following additional pinnings are required by httpaf-lwt-unix.dev:
- httpaf-lwt.dev at git+https://github.com/anmonteiro/httpaf.git#fork
Pin and install them? [Y/n] y
[NOTE] Package httpaf-lwt is currently pinned to file:///src/src/vendor/httpaf (version dev).
[httpaf-lwt.dev] synchronised (git+https://github.com/anmonteiro/httpaf.git#fork)
httpaf-lwt is now pinned to git+https://github.com/anmonteiro/httpaf.git#fork (version dev)
httpaf-lwt-unix is now pinned to file:///src/src/vendor/httpaf (version dev)
[NOTE] Package httpaf-eio does not exist in opam repositories registered in the current switch.
[httpaf-eio.dev] synchronised (file:///src/src/vendor/httpaf)
httpaf-eio is now pinned to file:///src/src/vendor/httpaf (version dev)
[httpaf-async.dev] synchronised (file:///src/src/vendor/httpaf)
httpaf-async is now pinned to file:///src/src/vendor/httpaf (version dev)
[hpack.dev] synchronised (file:///src/src/vendor/h2)
hpack is now pinned to file:///src/src/vendor/h2 (version dev)
[h2.dev] synchronised (file:///src/src/vendor/h2)
h2 is now pinned to file:///src/src/vendor/h2 (version dev)
[h2-mirage.dev] synchronised (file:///src/src/vendor/h2)
h2-mirage is now pinned to file:///src/src/vendor/h2 (version dev)
[h2-lwt.dev] synchronised (file:///src/src/vendor/h2)
h2-lwt is now pinned to file:///src/src/vendor/h2 (version dev)
[h2-lwt-unix.dev] synchronised (file:///src/src/vendor/h2)
h2-lwt-unix is now pinned to file:///src/src/vendor/h2 (version dev)
[h2-async.dev] synchronised (file:///src/src/vendor/h2)
h2-async is now pinned to file:///src/src/vendor/h2 (version dev)
[gluten.dev] synchronised (file:///src/src/vendor/gluten)
gluten is now pinned to file:///src/src/vendor/gluten (version dev)
[gluten-mirage.dev] synchronised (file:///src/src/vendor/gluten)
gluten-mirage is now pinned to file:///src/src/vendor/gluten (version dev)
[gluten-lwt.dev] synchronised (file:///src/src/vendor/gluten)
gluten-lwt is now pinned to file:///src/src/vendor/gluten (version dev)
[gluten-lwt-unix.dev] synchronised (file:///src/src/vendor/gluten)
gluten-lwt-unix is now pinned to file:///src/src/vendor/gluten (version dev)
[gluten-eio.dev] synchronised (file:///src/src/vendor/gluten)
gluten-eio is now pinned to file:///src/src/vendor/gluten (version dev)
[gluten-async.dev] synchronised (file:///src/src/vendor/gluten)
gluten-async is now pinned to file:///src/src/vendor/gluten (version dev)
[NOTE] Package runtime does not exist in opam repositories registered in the current switch.
[runtime.dev] synchronised (file:///src/example/z-playground/runtime)
[WARNING] Failed checks on runtime package definition from source at file:///src/example/z-playground/runtime:
warning 25: Missing field 'authors'
warning 35: Missing field 'homepage'
warning 36: Missing field 'bug-reports'
warning 68: Missing field 'license'
runtime is now pinned to file:///src/example/z-playground/runtime (version dev)
[NOTE] Package playground does not exist in opam repositories registered in the current switch.
[playground.dev] synchronised (file:///src/example/z-playground)
playground is now pinned to file:///src/example/z-playground (version dev)
[WARNING] Failed checks on playground package definition from source at file:///src/example/z-playground:
warning 25: Missing field 'authors'
warning 35: Missing field 'homepage'
warning 36: Missing field 'bug-reports'
warning 68: Missing field 'license'
[NOTE] Package hello does not exist in opam repositories registered in the current switch.
[WARNING] Failed checks on hello package definition from source at file:///src/example/z-docker-opam:
[hello.dev] synchronised (file:///src/example/z-docker-opam)
warning 25: Missing field 'authors'
warning 35: Missing field 'homepage'
warning 36: Missing field 'bug-reports'
warning 68: Missing field 'license'
hello is now pinned to file:///src/example/z-docker-opam (version dev)
[dream.dev] synchronised (file:///src)
dream is now pinned to file:///src (version dev)
[dream-pure.dev] synchronised (file:///src)
dream-pure is now pinned to file:///src (version dev)
[NOTE] Package dream-mirage does not exist in opam repositories registered in the current switch.
[dream-mirage.dev] synchronised (file:///src)
dream-mirage is now pinned to file:///src (version dev)
[dream-httpaf.dev] synchronised (file:///src)
dream-httpaf is now pinned to file:///src (version dev)
[NOTE] Package web does not exist in opam repositories registered in the current switch.
[web.dev] synchronised (file:///src/docs/web)
[WARNING] Failed checks on web package definition from source at file:///src/docs/web:
warning 25: Missing field 'authors'
warning 35: Missing field 'homepage'
warning 36: Missing field 'bug-reports'
warning 68: Missing field 'license'
The following additional pinnings are required by web.dev:
- odoc.2.0.0~master at git+https://github.com/aantron/odoc.git#dbb37e20717985edfd8f734e00b9ab6f705d81a4
Pin and install them? [Y/n] y
[odoc.2.0.0~master] synchronised (no changes)
odoc is now pinned to git+https://github.com/aantron/odoc.git#dbb37e20717985edfd8f734e00b9ab6f705d81a4 (version 2.0.0~master)
web is now pinned to file:///src/docs/web (version dev)
2026-03-28 07:56.19 ---> saved as "748fe9ed6acb093c817dff71fc123494d7e13a80bf13873739c0f5783de94ab4"


/src: (run (shell  "echo '(lang dune 3.0)' > 'src/vendor/websocketaf/dune-project' && \
\necho '(lang dune 3.0)' > 'src/vendor/paf/dune-project' && \
\necho '(lang dune 3.0)' > 'src/vendor/httpaf/dune-project' && \
\necho '(lang dune 3.0)' > 'src/vendor/h2/dune-project' && \
\necho '(lang dune 3.0)' > 'src/vendor/gluten/dune-project' && \
\necho '(lang dune 3.0)' > 'example/z-playground/runtime/dune-project' && \
\necho '(lang dune 3.0)' > 'example/z-playground/dune-project' && \
\necho '(lang dune 3.0)' > 'example/z-docker-opam/dune-project' && \
\necho '(lang dune 3.0)' > './dune-project' && \
\necho '(lang dune 3.0)' > 'docs/web/dune-project'"))
2026-03-28 07:56.19 ---> saved as "4b2eca7db78dd3caac486e9c027586599938a13cbd17b003dd8039839008b0fa"


/src: (env DEPS "alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigarray-compat.1.1.0 bigstringaf.0.10.0 bisect_ppx.2.8.3 bstr.0.0.4 camlp-streams.5.0.1 caqti.2.2.4 caqti-driver-postgresql.2.2.4 caqti-driver-sqlite3.2.2.4 caqti-lwt.2.2.4 cmdliner.1.3.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-libev.4-13 conf-libssl.4 conf-pkg-config.4 conf-postgresql.2 conf-sqlite3.1 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 cstruct.6.2.0 digestif.1.3.0 domain-name.0.5.0 dune.3.22.0 dune-build-info.3.22.0 dune-compiledb.0.6.0 dune-configurator.3.22.0 dune-private-libs.3.22.0 dune-site.3.22.0 duration.0.2.1 dyn.3.22.0 emile.1.1 eqaf.0.10 ezjsonm.1.3.0 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fix.20250919 fmt.0.11.0 fpath.0.7.3 fs-io.3.22.0 gen.1.1 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 hex.1.5.0 hmap.0.8.1 ipaddr.5.6.2 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-ppx.6.2.0 jsonm.1.0.2 jst-config.v0.16.0 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 letsencrypt.1.1.0 logs.0.10.0 lru.0.3.1 lwt.5.9.2 lwt-dllist.1.1.0 lwt_ppx.5.9.1 lwt_ssl.1.2.0 macaddr.5.6.2 magic-mime.1.3.1 markup.1.0.3 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 merlin-extend.0.6.2 mimic.0.0.9 mirage-clock.4.2.0 mirage-crypto.1.2.0 mirage-crypto-ec.1.2.0 mirage-crypto-pk.1.2.0 mirage-crypto-rng.1.2.0 mirage-crypto-rng-lwt.1.2.0 mirage-flow.5.0.0 mirage-kv.6.1.1 mirage-protocols.7.0.0 mirage-ptime.5.2.0 mirage-stack.3.0.0 mtime.2.1.0 multipart_form.0.8.0 multipart_form-lwt.0.8.0 num.1.6 ocaml.4.14.3 ocaml-base-compiler.4.14.3 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 octavius.1.2.2 ohex.0.2.0 optint.0.3.0 ordering.3.22.0 parsexp.v0.16.0 pecu.0.7 postgresql.5.2.0 pp.2.0.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_derivers.1.2.1 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_inline_test.v0.16.1 ppx_js_style.v0.16.0 ppx_optcomp.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_yojson_conv.v0.16.0 ppx_yojson_conv_lib.v0.16.0 ppxlib.0.35.0 prettym.0.0.4 psq.0.2.1 ptime.1.2.0 re.1.14.0 reason.3.15.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 sqlite3.5.4.0 ssl.0.7.0 stdio.v0.16.0 stdlib-shims.0.3.0 stdune.3.22.0 stringext.1.6.0 time_now.v0.16.0 tls.2.0.4 tls-mirage.2.0.4 top-closure.3.22.0 topkg.1.1.1 tyxml.4.6.0 tyxml-jsx.4.6.0 tyxml-ppx.4.6.0 tyxml-syntax.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14")


/src: (env CI true)


/src: (env OCAMLCI true)


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.5 --depext-only -y dream.dev dream-pure.dev dream-mirage.dev dream-httpaf.dev $DEPS"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Retrieving repository 'Update repository of openSUSE Backports' metadata [.
- .
- Looking for gpg keys in repository Update repository of openSUSE Backports.
-   gpgkey=http://download.opensuse.org/update/leap/15.6/backports/repodata/repomd.xml.key
- .
- .....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- .......
- ............
- ......done]
- Building repository 'Update repository of openSUSE Backports' cache [..
- ..done]
- Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [.
- .
- Looking for gpg keys in repository Update repository with updates from SUSE Linux Enterprise 15.
-   gpgkey=http://download.opensuse.org/update/leap/15.6/sle/repodata/repomd.xml.key
- ......
- ....
- ....
- ....
- ..........
- ..........
- ..........
- .........
- ........
- .........
- ..........
- .........
- ..........
- ..........
- ........
- .........
- ..........
- ..........
- .........
- ..........
- ..........
- ..........
- .........
- ..........
- .........
- ..........
- ..........
- .........
- .........
- ..........
- ..........
- .........
- ..........
- ..........
- .........
- ..........
- ........
- .........
- ..........
- .........
- ........
- .........
- ..........
- .........
- ..........
- ........
- ..........
- .........
- ..........
- ........
- .........
- ..........
- .........
- .........
- ..........
- .........
- ..........
- ........
- .........
- ..........
- .........
- ..........
- .........
- ..........
- ..........
- .........
- ..........
- .........
- ..........
- .........
- ..........
- ..........
- .........
- ..........
- ..........
- .........
- ..........
- ..........
- ......
- ....
- ....
- ....
- ....
- ....
- ............
- .........
- .......done]
- Building repository 'Update repository with updates from SUSE Linux Enterprise 15' cache [..
- ..done]
- Repository 'Main Update Repository' is up to date.
- Repository 'Update Repository (Non-Oss)' is up to date.
- Repository 'Non-OSS Repository' is up to date.
- Repository 'Main Repository' is up to date.
- All repositories have been refreshed.


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[dream.dev] synchronised (file:///src)
[dream-httpaf.dev] synchronised (file:///src)
[dream-mirage.dev] synchronised (file:///src)
[dream-pure.dev] synchronised (file:///src)


[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.3).
[NOTE] Package ocaml is already installed (current version is 4.14.3).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).


The following system packages will first need to be installed:
gmp-devel libev-devel libopenssl-devel postgresql-server-devel sqlite3-devel


<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>


+ /usr/bin/sudo "zypper" "--non-interactive" "install" "gmp-devel" "libev-devel" "libopenssl-devel" "postgresql-server-devel" "sqlite3-devel"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following package is going to be upgraded:
-   libsqlite3-0
- 
- The following 42 NEW packages are going to be installed:
-   glibc-locale glibc-locale-base gmp-devel jitterentropy-devel keyutils-devel krb5-devel libcom_err-devel libecpg6 libev-devel libev4 libgcrypt-devel libgmpxx4 libgpg-error-devel libicu-suse65_1 libicu65_1-ledata libopenssl-3-devel libopenssl-devel libpcre2-16-0 libpcre2-32-0 libpcre2-posix3 libpq5 libselinux-devel libsepol-devel libverto-devel libxml2-devel libxml2-tools libxslt-devel libxslt-tools libxslt1 pam-devel pcre2-devel postgresql postgresql-devel postgresql-server postgresql-server-devel postgresql16 postgresql16-devel postgresql16-server postgresql16-server-devel readline-devel sqlite3-devel xz-devel
- 
- 1 package to upgrade, 42 new.
- 
- Package download size:    37.5 MiB
- 
- Package install size change:
-               |     318.9 MiB  required by packages that will be installed
-    317.5 MiB  |  -    1.4 MiB  released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Retrieving: keyutils-devel-1.6.3-5.6.1.x86_64 (Main Repository) (1/43),  13.8 KiB
- Retrieving: keyutils-devel-1.6.3-5.6.1.x86_64.rpm [.
- .....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- .done]
- Retrieving: libev4-4.33-150600.1.3.x86_64 (Main Repository) (2/43),  37.8 KiB
- Retrieving: libev4-4.33-150600.1.3.x86_64.rpm [.done]
- Retrieving: libgmpxx4-6.1.2-4.9.1.x86_64 (Main Repository) (3/43),  17.1 KiB
- Retrieving: libgmpxx4-6.1.2-4.9.1.x86_64.rpm [.done]
- Retrieving: libgpg-error-devel-1.47-150600.1.3.x86_64 (Main Repository) (4/43),  93.8 KiB
- Retrieving: libgpg-error-devel-1.47-150600.1.3.x86_64.rpm [.done]
- Retrieving: libpcre2-16-0-10.42-150600.1.26.x86_64 (Main Repository) (5/43), 282.8 KiB
- Retrieving: libpcre2-16-0-10.42-150600.1.26.x86_64.rpm [...done (216.2 KiB/s)]
- Retrieving: libpcre2-32-0-10.42-150600.1.26.x86_64 (Main Repository) (6/43), 269.6 KiB
- Retrieving: libpcre2-32-0-10.42-150600.1.26.x86_64.rpm [.
- .done (168.1 KiB/s)]
- Retrieving: libpcre2-posix3-10.42-150600.1.26.x86_64 (Main Repository) (7/43),  30.1 KiB
- Retrieving: libpcre2-posix3-10.42-150600.1.26.x86_64.rpm [.done]
- Retrieving: libsepol-devel-3.5-150600.1.49.x86_64 (Main Repository) (8/43),  46.5 KiB
- Retrieving: libsepol-devel-3.5-150600.1.49.x86_64.rpm [.done]
- Retrieving: libverto-devel-0.2.6-3.20.x86_64 (Main Repository) (9/43),  14.4 KiB
- Retrieving: libverto-devel-0.2.6-3.20.x86_64.rpm [.done]
- Retrieving: libev-devel-4.33-150600.1.3.x86_64 (Main Repository) (10/43), 180.7 KiB
- Retrieving: libev-devel-4.33-150600.1.3.x86_64.rpm [..done (133.3 KiB/s)]
- Retrieving: gmp-devel-6.1.2-4.9.1.x86_64 (Main Repository) (11/43),   2.2 MiB
- Retrieving: gmp-devel-6.1.2-4.9.1.x86_64.rpm [....done (1.6 MiB/s)]
- Retrieving: pcre2-devel-10.42-150600.1.26.x86_64 (Main Repository) (12/43), 275.7 KiB
- Retrieving: pcre2-devel-10.42-150600.1.26.x86_64.rpm [.
- done]
- Retrieving: glibc-locale-base-2.38-150600.14.43.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (13/43),   1.4 MiB
- Retrieving: glibc-locale-base-2.38-150600.14.43.1.x86_64.rpm [.....
- ....
- ....
- ....
- ....
- ...not found]
- Retrieving: glibc-locale-base-2.38-150600.14.43.1.x86_64.rpm [.not found]
- Retrieving: glibc-locale-base-2.38-150600.14.43.1.x86_64.rpm [..done (674.7 KiB/s)]
- Retrieving: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (14/43),  29.5 KiB
- Retrieving: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64.rpm [.done]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (15/43),  39.6 KiB
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [.not found]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [.not found]
- Retrieving: libcom_err-devel-1.47.0-150600.4.6.2.x86_64.rpm [.done]
- Retrieving: libicu65_1-ledata-65.1-150200.4.15.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (16/43),   6.5 MiB
- Retrieving: libicu65_1-ledata-65.1-150200.4.15.1.noarch.rpm [.not found]
- Retrieving: libicu65_1-ledata-65.1-150200.4.15.1.noarch.rpm [.not found]
- Retrieving: libicu65_1-ledata-65.1-150200.4.15.1.noarch.rpm [..
- .........
- ..........
- ........done (2.1 MiB/s)]
- Retrieving: libpq5-18.3-150600.13.8.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (17/43), 275.6 KiB
- Retrieving: libpq5-18.3-150600.13.8.1.x86_64.rpm [.
- not found]
- Retrieving: libpq5-18.3-150600.13.8.1.x86_64.rpm [.not found]
- Retrieving: libpq5-18.3-150600.13.8.1.x86_64.rpm [..done (238.2 KiB/s)]
- Retrieving: libsqlite3-0-3.51.3-150000.3.39.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (18/43), 715.5 KiB
- Retrieving: libsqlite3-0-3.51.3-150000.3.39.1.x86_64.rpm [.not found]
- Retrieving: libsqlite3-0-3.51.3-150000.3.39.1.x86_64.rpm [.not found]
- Retrieving: libsqlite3-0-3.51.3-150000.3.39.1.x86_64.rpm [...done (529.7 KiB/s)]
- Retrieving: libxml2-tools-2.10.3-150500.5.38.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (19/43),  76.7 KiB
- Retrieving: libxml2-tools-2.10.3-150500.5.38.1.x86_64.rpm [.not found]
- Retrieving: libxml2-tools-2.10.3-150500.5.38.1.x86_64.rpm [.not found]
- Retrieving: libxml2-tools-2.10.3-150500.5.38.1.x86_64.rpm [.done]
- Retrieving: libxslt1-1.1.34-150400.3.16.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (20/43), 145.5 KiB
- Retrieving: libxslt1-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt1-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt1-1.1.34-150400.3.16.1.x86_64.rpm [..done (126.6 KiB/s)]
- Retrieving: pam-devel-1.3.0-150000.6.86.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (21/43),  83.4 KiB
- Retrieving: pam-devel-1.3.0-150000.6.86.1.x86_64.rpm [.not found]
- Retrieving: pam-devel-1.3.0-150000.6.86.1.x86_64.rpm [.not found]
- Retrieving: pam-devel-1.3.0-150000.6.86.1.x86_64.rpm [.
- .done (83.4 KiB/s)]
- Retrieving: readline-devel-7.0-150400.27.6.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (22/43),  48.3 KiB
- Retrieving: readline-devel-7.0-150400.27.6.1.x86_64.rpm [.not found]
- Retrieving: readline-devel-7.0-150400.27.6.1.x86_64.rpm [.not found]
- Retrieving: readline-devel-7.0-150400.27.6.1.x86_64.rpm [.done]
- Retrieving: xz-devel-5.4.1-150600.3.3.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (23/43),  73.7 KiB
- Retrieving: xz-devel-5.4.1-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: xz-devel-5.4.1-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: xz-devel-5.4.1-150600.3.3.1.x86_64.rpm [.done]
- Retrieving: libselinux-devel-3.5-150600.3.3.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (24/43), 120.3 KiB
- Retrieving: libselinux-devel-3.5-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: libselinux-devel-3.5-150600.3.3.1.x86_64.rpm [.not found]
- Retrieving: libselinux-devel-3.5-150600.3.3.1.x86_64.rpm [..done (120.3 KiB/s)]
- Retrieving: glibc-locale-2.38-150600.14.43.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (25/43),  12.1 MiB
- Retrieving: glibc-locale-2.38-150600.14.43.1.x86_64.rpm [.not found]
- Retrieving: glibc-locale-2.38-150600.14.43.1.x86_64.rpm [.not found]
- Retrieving: glibc-locale-2.38-150600.14.43.1.x86_64.rpm [.....
- .........
- .........
- ..........
- ..........
- .........
- ..........
- .........done (1.7 MiB/s)]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (26/43), 378.7 KiB
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64.rpm [.not found]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64.rpm [.not found]
- Retrieving: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64.rpm [...done (281.4 KiB/s)]
- Retrieving: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (27/43), 190.4 KiB
- Retrieving: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64.rpm [.not found]
- Retrieving: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64.rpm [.not found]
- Retrieving: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64.rpm [..done (132.2 KiB/s)]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (28/43), 166.9 KiB
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [.not found]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [.not found]
- Retrieving: krb5-devel-1.20.1-150600.11.14.1.x86_64.rpm [..done (166.9 KiB/s)]
- Retrieving: libicu-suse65_1-65.1-150200.4.15.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (29/43),   1.6 MiB
- Retrieving: libicu-suse65_1-65.1-150200.4.15.1.x86_64.rpm [.not found]
- Retrieving: libicu-suse65_1-65.1-150200.4.15.1.x86_64.rpm [.not found]
- Retrieving: libicu-suse65_1-65.1-150200.4.15.1.x86_64.rpm [..
- ........done (1.5 MiB/s)]
- Retrieving: postgresql-18-150600.17.9.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (30/43),  18.4 KiB
- Retrieving: postgresql-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-18-150600.17.9.1.noarch.rpm [.done]
- Retrieving: postgresql16-16.13-150600.16.30.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (31/43),   1.9 MiB
- Retrieving: postgresql16-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-16.13-150600.16.30.1.x86_64.rpm [..........
- .done (1.7 MiB/s)]
- Retrieving: libecpg6-18.3-150600.13.8.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (32/43), 113.8 KiB
- Retrieving: libecpg6-18.3-150600.13.8.1.x86_64.rpm [.not found]
- Retrieving: libecpg6-18.3-150600.13.8.1.x86_64.rpm [.not found]
- Retrieving: libecpg6-18.3-150600.13.8.1.x86_64.rpm [.done]
- Retrieving: sqlite3-devel-3.51.3-150000.3.39.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (33/43), 211.0 KiB
- Retrieving: sqlite3-devel-3.51.3-150000.3.39.1.x86_64.rpm [.not found]
- Retrieving: sqlite3-devel-3.51.3-150000.3.39.1.x86_64.rpm [.not found]
- Retrieving: sqlite3-devel-3.51.3-150000.3.39.1.x86_64.rpm [.done]
- Retrieving: libxslt-tools-1.1.34-150400.3.16.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (34/43),  54.2 KiB
- Retrieving: libxslt-tools-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt-tools-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt-tools-1.1.34-150400.3.16.1.x86_64.rpm [.done]
- Retrieving: libxml2-devel-2.10.3-150500.5.38.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (35/43), 119.7 KiB
- Retrieving: libxml2-devel-2.10.3-150500.5.38.1.x86_64.rpm [.not found]
- Retrieving: libxml2-devel-2.10.3-150500.5.38.1.x86_64.rpm [.not found]
- Retrieving: libxml2-devel-2.10.3-150500.5.38.1.x86_64.rpm [.done]
- Retrieving: postgresql-server-18-150600.17.9.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (36/43),  24.4 KiB
- Retrieving: postgresql-server-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-server-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-server-18-150600.17.9.1.noarch.rpm [.done]
- Retrieving: postgresql16-server-16.13-150600.16.30.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (37/43),   5.5 MiB
- Retrieving: postgresql16-server-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-server-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-server-16.13-150600.16.30.1.x86_64.rpm [..
- ..........
- .........
- ..........
- ...done (1.4 MiB/s)]
- Retrieving: libxslt-devel-1.1.34-150400.3.16.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (38/43), 230.3 KiB
- Retrieving: libxslt-devel-1.1.34-150400.3.16.1.x86_64.rpm [.
- .not found]
- Retrieving: libxslt-devel-1.1.34-150400.3.16.1.x86_64.rpm [.not found]
- Retrieving: libxslt-devel-1.1.34-150400.3.16.1.x86_64.rpm [..done (130.8 KiB/s)]
- Retrieving: libopenssl-devel-3.1.4-150600.2.1.noarch (Main Repository) (39/43),  26.6 KiB
- Retrieving: libopenssl-devel-3.1.4-150600.2.1.noarch.rpm [.done]
- Retrieving: postgresql16-devel-16.13-150600.16.30.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (40/43), 296.7 KiB
- Retrieving: postgresql16-devel-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-devel-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-devel-16.13-150600.16.30.1.x86_64.rpm [..
- .done (202.0 KiB/s)]
- Retrieving: postgresql-devel-18-150600.17.9.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (41/43),  15.7 KiB
- Retrieving: postgresql-devel-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-devel-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-devel-18-150600.17.9.1.noarch.rpm [.done]
- Retrieving: postgresql-server-devel-18-150600.17.9.1.noarch (Update repository with updates from SUSE Linux Enterprise 15) (42/43),  16.2 KiB
- Retrieving: postgresql-server-devel-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-server-devel-18-150600.17.9.1.noarch.rpm [.not found]
- Retrieving: postgresql-server-devel-18-150600.17.9.1.noarch.rpm [.done]
- Retrieving: postgresql16-server-devel-16.13-150600.16.30.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (43/43),   1.7 MiB
- Retrieving: postgresql16-server-devel-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-server-devel-16.13-150600.16.30.1.x86_64.rpm [.not found]
- Retrieving: postgresql16-server-devel-16.13-150600.16.30.1.x86_64.rpm [......
- ...done (1.7 MiB/s)]
- 
- Checking for file conflicts: [......done]
- ( 1/43) Installing: keyutils-devel-1.6.3-5.6.1.x86_64 [..done]
- ( 2/43) Installing: libev4-4.33-150600.1.3.x86_64 [..done]
- ( 3/43) Installing: libgmpxx4-6.1.2-4.9.1.x86_64 [..done]
- ( 4/43) Installing: libgpg-error-devel-1.47-150600.1.3.x86_64 [.
- .done]
- ( 5/43) Installing: libpcre2-16-0-10.42-150600.1.26.x86_64 [..done]
- ( 6/43) Installing: libpcre2-32-0-10.42-150600.1.26.x86_64 [..done]
- ( 7/43) Installing: libpcre2-posix3-10.42-150600.1.26.x86_64 [..done]
- ( 8/43) Installing: libsepol-devel-3.5-150600.1.49.x86_64 [..done]
- ( 9/43) Installing: libverto-devel-0.2.6-3.20.x86_64 [..done]
- (10/43) Installing: libev-devel-4.33-150600.1.3.x86_64 [..done]
- (11/43) Installing: gmp-devel-6.1.2-4.9.1.x86_64 [.....
- .done]
- (12/43) Installing: pcre2-devel-10.42-150600.1.26.x86_64 [..done]
- (13/43) Installing: glibc-locale-base-2.38-150600.14.43.1.x86_64 [......done]
- (14/43) Installing: jitterentropy-devel-3.4.1-150000.1.12.1.x86_64 [..done]
- (15/43) Installing: libcom_err-devel-1.47.0-150600.4.6.2.x86_64 [..done]
- (16/43) Installing: libicu65_1-ledata-65.1-150200.4.15.1.noarch [..
- ..........
- ....done]
- (17/43) Installing: libpq5-18.3-150600.13.8.1.x86_64 [..done]
- (18/43) Installing: libsqlite3-0-3.51.3-150000.3.39.1.x86_64 [...done]
- (19/43) Installing: libxml2-tools-2.10.3-150500.5.38.1.x86_64 [..done]
- (20/43) Installing: libxslt1-1.1.34-150400.3.16.1.x86_64 [..done]
- (21/43) Installing: pam-devel-1.3.0-150000.6.86.1.x86_64 [..
- done]
- (22/43) Installing: readline-devel-7.0-150400.27.6.1.x86_64 [..done]
- (23/43) Installing: xz-devel-5.4.1-150600.3.3.1.x86_64 [..done]
- (24/43) Installing: libselinux-devel-3.5-150600.3.3.1.x86_64 [..done]
- (25/43) Installing: glibc-locale-2.38-150600.14.43.1.x86_64 [.......
- .........
- ..........
- ..........
- ..........
- ..........
- .........
- ..........
- .........done]
- (26/43) Installing: libopenssl-3-devel-3.1.4-150600.5.42.1.x86_64 [.
- ..done]
- (27/43) Installing: libgcrypt-devel-1.10.3-150600.3.9.1.x86_64 [..done]
- (28/43) Installing: krb5-devel-1.20.1-150600.11.14.1.x86_64 [..done]
- (29/43) Installing: libicu-suse65_1-65.1-150200.4.15.1.x86_64 [.....done]
- (30/43) Installing: postgresql-18-150600.17.9.1.noarch [..done]
- (31/43) Installing: postgresql16-16.13-150600.16.30.1.x86_64 [...
- ....done]
- (32/43) Installing: libecpg6-18.3-150600.13.8.1.x86_64 [..done]
- (33/43) Installing: sqlite3-devel-3.51.3-150000.3.39.1.x86_64 [..done]
- (34/43) Installing: libxslt-tools-1.1.34-150400.3.16.1.x86_64 [..done]
- (35/43) Installing: libxml2-devel-2.10.3-150500.5.38.1.x86_64 [..done]
- (36/43) Installing: postgresql-server-18-150600.17.9.1.noarch [..
- 
- /usr/sbin/useradd -r -c PostgreSQL Server -d /var/lib/pgsql -U postgres -s /bin/bash
- .
- Updating /etc/sysconfig/postgresql ...
- System has not been booted with systemd as init system (PID 1). Can't operate.
- Failed to connect to bus: Host is down
- done]
- (37/43) Installing: postgresql16-server-16.13-150600.16.30.1.x86_64 [.........
- .......done]
- (38/43) Installing: libxslt-devel-1.1.34-150400.3.16.1.x86_64 [..done]
- (39/43) Installing: libopenssl-devel-3.1.4-150600.2.1.noarch [..done]
- (40/43) Installing: postgresql16-devel-16.13-150600.16.30.1.x86_64 [.
- .done]
- (41/43) Installing: postgresql-devel-18-150600.17.9.1.noarch [..done]
- (42/43) Installing: postgresql-server-devel-18-150600.17.9.1.noarch [..done]
- (43/43) Installing: postgresql16-server-devel-16.13-150600.16.30.1.x86_64 [........done]
- Running post-transaction scripts [..
- .done]
- 
# To update the current shell environment, run: eval $(opam env)
2026-03-28 08:00.32 ---> saved as "637707e0ca6904a6d4d345d3fb042151dae456240e20e35475aeb16f3321e645"


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.3).
[NOTE] Package ocaml is already installed (current version is 4.14.3).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 160 packages
- install alcotest                1.9.1
- install angstrom                0.16.1
- install asn1-combinators        0.3.2
- install astring                 0.8.5
- install base                    v0.16.4
- install base-bytes              base
- install base64                  3.5.2
- install bigarray-compat         1.1.0
- install bigstringaf             0.10.0
- install bisect_ppx              2.8.3
- install bstr                    0.0.4
- install camlp-streams           5.0.1
- install caqti                   2.2.4
- install caqti-driver-postgresql 2.2.4
- install caqti-driver-sqlite3    2.2.4
- install caqti-lwt               2.2.4
- install cmdliner                1.3.0
- install conf-gmp                5
- install conf-gmp-powm-sec       4
- install conf-libev              4-13
- install conf-libssl             4
- install conf-pkg-config         4
- install conf-postgresql         2
- install conf-sqlite3            1
- install cppo                    1.8.0
- install crunch                  4.0.0
- install csexp                   1.5.2
- install cstruct                 6.2.0
- install digestif                1.3.0
- install domain-name             0.5.0
- install dune                    3.22.0
- install dune-build-info         3.22.0
- install dune-compiledb          0.6.0
- install dune-configurator       3.22.0
- install dune-private-libs       3.22.0
- install dune-site               3.22.0
- install duration                0.2.1
- install dyn                     3.22.0
- install emile                   1.1
- install eqaf                    0.10
- install ezjsonm                 1.3.0
- install faraday                 0.8.2
- install faraday-lwt             0.8.2
- install faraday-lwt-unix        0.8.2
- install fix                     20250919
- install fmt                     0.11.0
- install fpath                   0.7.3
- install fs-io                   3.22.0
- install gen                     1.1
- install gmap                    0.3.0
- install graphql                 0.14.0
- install graphql-lwt             0.14.0
- install graphql_parser          0.14.0
- install hex                     1.5.0
- install hmap                    0.8.1
- install ipaddr                  5.6.2
- install jane-street-headers     v0.16.0
- install js_of_ocaml             6.2.0
- install js_of_ocaml-compiler    6.2.0
- install js_of_ocaml-ppx         6.2.0
- install jsonm                   1.0.2
- install jst-config              v0.16.0
- install kdf                     1.0.0
- install ke                      0.6
- install lambdasoup              1.1.1
- install letsencrypt             1.1.0
- install logs                    0.10.0
- install lru                     0.3.1
- install lwt                     5.9.2
- install lwt-dllist              1.1.0
- install lwt_ppx                 5.9.1
- install lwt_ssl                 1.2.0
- install macaddr                 5.6.2
- install magic-mime              1.3.1
- install markup                  1.0.3
- install menhir                  20260209
- install menhirCST               20260209
- install menhirGLR               20260209
- install menhirLib               20260209
- install menhirSdk               20260209
- install merlin-extend           0.6.2
- install mimic                   0.0.9
- install mirage-clock            4.2.0
- install mirage-crypto           1.2.0
- install mirage-crypto-ec        1.2.0
- install mirage-crypto-pk        1.2.0
- install mirage-crypto-rng       1.2.0
- install mirage-crypto-rng-lwt   1.2.0
- install mirage-flow             5.0.0
- install mirage-kv               6.1.1
- install mirage-protocols        7.0.0 (deprecated)
- install mirage-ptime            5.2.0
- install mirage-stack            3.0.0 (deprecated)
- install mtime                   2.1.0
- install multipart_form          0.8.0
- install multipart_form-lwt      0.8.0
- install num                     1.6
- install ocaml-compiler-libs     v0.12.4
- install ocaml-syntax-shims      1.0.0
- install ocamlbuild              0.16.1
- install ocamlfind               1.9.8
- install ocplib-endian           1.2
- install octavius                1.2.2
- install ohex                    0.2.0
- install optint                  0.3.0
- install ordering                3.22.0
- install parsexp                 v0.16.0
- install pecu                    0.7
- install postgresql              5.2.0
- install pp                      2.0.0
- install ppx_assert              v0.16.0
- install ppx_base                v0.16.0
- install ppx_cold                v0.16.0
- install ppx_compare             v0.16.0
- install ppx_derivers            1.2.1
- install ppx_enumerate           v0.16.0
- install ppx_expect              v0.16.2
- install ppx_globalize           v0.16.0
- install ppx_hash                v0.16.0
- install ppx_here                v0.16.0
- install ppx_inline_test         v0.16.1
- install ppx_js_style            v0.16.0
- install ppx_optcomp             v0.16.0
- install ppx_sexp_conv           v0.16.0
- install ppx_yojson_conv         v0.16.0
- install ppx_yojson_conv_lib     v0.16.0
- install ppxlib                  0.35.0
- install prettym                 0.0.4
- install psq                     0.2.1
- install ptime                   1.2.0
- install re                      1.14.0
- install reason                  3.15.0
- install result                  1.5
- install rresult                 0.7.0
- install sedlex                  3.7
- install seq                     base
- install sexplib                 v0.16.0
- install sexplib0                v0.16.0
- install sqlite3                 5.4.0
- install ssl                     0.7.0
- install stdio                   v0.16.0
- install stdlib-shims            0.3.0
- install stdune                  3.22.0
- install stringext               1.6.0
- install time_now                v0.16.0
- install tls                     2.0.4
- install tls-mirage              2.0.4
- install top-closure             3.22.0
- install topkg                   1.1.1
- install tyxml                   4.6.0
- install tyxml-jsx               4.6.0
- install tyxml-ppx               4.6.0
- install tyxml-syntax            4.6.0
- install uchar                   0.0.2
- install unstrctrd               0.4
- install uri                     4.4.0
- install uutf                    1.0.4
- install x509                    1.0.6
- install yojson                  3.0.0
- install zarith                  1.14


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bisect_ppx.2.8.3  (cached)
-> retrieved bstr.0.0.4  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved conf-libev.4-13  (cached)
-> retrieved conf-libssl.4  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved caqti.2.2.4, caqti-driver-postgresql.2.2.4, caqti-driver-sqlite3.2.2.4, caqti-lwt.2.2.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved crunch.4.0.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> installed conf-libev.4-13
-> installed conf-gmp-powm-sec.4
-> installed conf-libssl.4
-> installed conf-postgresql.2
-> installed conf-sqlite3.1
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved emile.1.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved faraday.0.8.2, faraday-lwt.0.8.2, faraday-lwt-unix.0.8.2  (cached)
-> retrieved fix.20250919  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved graphql.0.14.0, graphql-lwt.0.14.0, graphql_parser.0.14.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2  (cached)
-> retrieved jane-street-headers.v0.16.0  (cached)
-> retrieved digestif.1.3.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved jst-config.v0.16.0  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved ke.0.6  (cached)
-> retrieved lambdasoup.1.1.1  (cached)
-> retrieved letsencrypt.1.1.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved lwt_ppx.5.9.1  (cached)
-> retrieved lwt_ssl.1.2.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved markup.1.0.3  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved dune.3.22.0, dune-build-info.3.22.0, dune-configurator.3.22.0, dune-private-libs.3.22.0, dune-site.3.22.0, dyn.3.22.0, fs-io.3.22.0, ordering.3.22.0, stdune.3.22.0, top-closure.3.22.0  (cached)
-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0, js_of_ocaml-ppx.6.2.0  (cached)
-> retrieved merlin-extend.0.6.2  (cached)
-> retrieved mimic.0.0.9  (cached)
-> retrieved mirage-clock.4.2.0  (cached)
-> retrieved mirage-flow.5.0.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved mirage-kv.6.1.1  (cached)
-> retrieved mirage-protocols.7.0.0  (cached)
-> retrieved mirage-ptime.5.2.0  (cached)
-> retrieved mirage-stack.3.0.0  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved multipart_form.0.8.0, multipart_form-lwt.0.8.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved pecu.0.7  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved postgresql.5.2.0  (cached)
-> retrieved ppx_assert.v0.16.0  (cached)
-> retrieved ppx_base.v0.16.0  (cached)
-> retrieved ppx_cold.v0.16.0  (cached)
-> retrieved ppx_compare.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> retrieved ppx_expect.v0.16.2  (cached)
-> retrieved ppx_globalize.v0.16.0  (cached)
-> retrieved ppx_hash.v0.16.0  (cached)
-> retrieved ppx_here.v0.16.0  (cached)
-> retrieved ppx_inline_test.v0.16.1  (cached)
-> retrieved ppx_js_style.v0.16.0  (cached)
-> retrieved ppx_optcomp.v0.16.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppx_yojson_conv.v0.16.0  (cached)
-> retrieved mirage-crypto.1.2.0, mirage-crypto-ec.1.2.0, mirage-crypto-pk.1.2.0, mirage-crypto-rng.1.2.0, mirage-crypto-rng-lwt.1.2.0  (cached)
-> retrieved ppx_yojson_conv_lib.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved prettym.0.0.4  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sedlex.3.7  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved sqlite3.5.4.0  (cached)
-> retrieved ssl.0.7.0  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved time_now.v0.16.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved reason.3.15.0  (cached)
-> retrieved tls.2.0.4, tls-mirage.2.0.4  (cached)
-> retrieved tyxml.4.6.0, tyxml-jsx.4.6.0, tyxml-ppx.4.6.0, tyxml-syntax.4.6.0  (cached)
-> retrieved uchar.0.0.2  (cached)
-> retrieved unstrctrd.0.4  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved zarith.1.14  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed uchar.0.0.2
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed rresult.0.7.0
-> installed mtime.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed jsonm.1.0.2
-> installed dune.3.22.0
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.2
-> installed bigarray-compat.1.1.0
-> installed bstr.0.0.4
-> installed camlp-streams.5.0.1
-> installed cppo.1.8.0
-> installed crunch.4.0.0
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed dune-build-info.3.22.0
-> installed duration.0.2.1
-> installed eqaf.0.10
-> installed fix.20250919
-> installed fs-io.3.22.0
-> installed gen.1.1
-> installed gmap.0.3.0
-> installed jane-street-headers.v0.16.0
-> installed ke.0.6
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed markup.1.0.3
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed mirage-clock.4.2.0
-> installed mirage-ptime.5.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed octavius.1.2.2
-> installed ohex.0.2.0
-> installed optint.0.3.0
-> installed ordering.3.22.0
-> installed pecu.0.7
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed psq.0.2.1
-> installed re.1.14.0
-> installed result.1.5
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed top-closure.3.22.0
-> installed yojson.3.0.0
-> installed merlin-extend.0.6.2
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.22.0
-> installed hex.1.5.0
-> installed digestif.1.3.0
-> installed prettym.0.0.4
-> installed ipaddr.5.6.2
-> installed lambdasoup.1.1.1
-> installed lru.0.3.1
-> installed ppx_yojson_conv_lib.v0.16.0
-> installed ezjsonm.1.3.0
-> installed dyn.3.22.0
-> installed parsexp.v0.16.0
-> installed alcotest.1.9.1
-> installed bigstringaf.0.10.0
-> installed mirage-crypto.1.2.0
-> installed postgresql.5.2.0
-> installed ssl.0.7.0
-> installed faraday.0.8.2
-> installed kdf.1.0.0
-> installed angstrom.0.16.1
-> installed unstrctrd.0.4
-> installed sexplib.v0.16.0
-> installed emile.1.1
-> installed tyxml.4.6.0
-> installed dune-compiledb.0.6.0
-> installed uri.4.4.0
-> installed lwt.5.9.2
-> installed sqlite3.5.4.0
-> installed mirage-flow.5.0.0
-> installed faraday-lwt.0.8.2
-> installed lwt_ssl.1.2.0
-> installed mirage-kv.6.1.1
-> installed mirage-protocols.7.0.0
-> installed faraday-lwt-unix.0.8.2
-> installed mirage-stack.3.0.0
-> installed stdune.3.22.0
-> installed menhir.20260209
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed graphql_parser.0.14.0
-> installed dune-private-libs.3.22.0
-> installed graphql.0.14.0
-> installed graphql-lwt.0.14.0
-> installed dune-site.3.22.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_js_style.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed lwt_ppx.5.9.1
-> installed bisect_ppx.2.8.3
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.7
-> installed tyxml-syntax.4.6.0
-> installed ppx_yojson_conv.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed tyxml-jsx.4.6.0
-> installed tyxml-ppx.4.6.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.2
-> installed js_of_ocaml-compiler.6.2.0
-> installed reason.3.15.0
-> installed logs.0.10.0
-> installed mimic.0.0.9
-> installed mirage-crypto-rng.1.2.0
-> installed multipart_form.0.8.0
-> installed mirage-crypto-rng-lwt.1.2.0
-> installed mirage-crypto-pk.1.2.0
-> installed multipart_form-lwt.0.8.0
-> installed mirage-crypto-ec.1.2.0
-> installed x509.1.0.6
-> installed letsencrypt.1.1.0
-> installed tls.2.0.4
-> installed tls-mirage.2.0.4
-> installed caqti.2.2.4
-> installed caqti-driver-sqlite3.2.2.4
-> installed caqti-lwt.2.2.4
-> installed caqti-driver-postgresql.2.2.4
-> installed js_of_ocaml.6.2.0
-> installed js_of_ocaml-ppx.6.2.0
Done.


<><> mirage-stack.3.0.0 installed successfully ><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-stack is deprecated


<><> mirage-protocols.7.0.0 installed successfully ><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
=> mirage-protocols is deprecated
# To update the current shell environment, run: eval $(opam env)
2026-03-28 08:04.50 ---> saved as "86026f6eb5b33515dbec8d0d3a2c878ea9735114906c82257df31651127534d7"


/src: (copy (src .) (dst /src))
2026-03-28 08:04.53 ---> saved as "8a3424c64fb31edaee9842056ce1af9ce7be25a9c6594294f8c1664660e16bf3"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -I docs/web/postprocess/.index.eobjs/byte -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/lambdasoup -I /home/opam/.opam/4.14/lib/markup -I /home/opam/.opam/4.14/lib/uutf -I docs/web/postprocess/.common.objs/byte -intf-suffix .ml -no-alias-deps -opaque -o docs/web/postprocess/.index.eobjs/byte/dune__exe__Index.cmo -c -impl docs/web/postprocess/index.ml)
File "docs/web/postprocess/index.ml", line 898, characters 4-25:
898 | let upload_event_expected = {|<div class="spec type" id="type-upload_event">
^^^^^^^^^^^^^^^^^^^^^
Error (warning 32 [unused-value-declaration]): unused value upload_event_expected.
File "docs/web/postprocess/index.ml", line 928, characters 4-28:
928 | let upload_event_replacement = {|
^^^^^^^^^^^^^^^^^^^^^^^^
Error (warning 32 [unused-value-declaration]): unused value upload_event_replacement.
File "docs/web/postprocess/index.ml", line 1445, characters 4-23:
1445 | let new_global_expected = {|<div class="spec value" id="val-new_global">
^^^^^^^^^^^^^^^^^^^
Error (warning 32 [unused-value-declaration]): unused value new_global_expected.
File "docs/web/postprocess/index.ml", line 1450, characters 4-26:
1450 | let new_global_replacement = {|
^^^^^^^^^^^^^^^^^^^^^^
Error (warning 32 [unused-value-declaration]): unused value new_global_replacement.
File "src/mirage/dune", line 14, characters 2-7:
14 |   tcpip
^^^^^
Error: Library "tcpip" not found.
-> required by library "dream-mirage" in _build/default/src/mirage
-> required by
_build/default/src/mirage/.dream__mirage.objs/byte/dream__mirage__Adapt.cmi
-> required by aias src/mirage/check
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -I src/vendor/gluten/lwt-unix/.gluten_lwt_unix.objs/byte -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/ssl -I src/vendor/gluten/lib/.gluten.objs/byte -I src/vendor/gluten/lwt/.gluten_lwt.objs/byte -no-alias-deps -opaque -open Gluten_lwt_unix__ -o src/vendor/gluten/lwt-unix/.gluten_lwt_unix.objs/byte/gluten_lwt_unix__Ssl_io.cmo -c -impl src/vendor/gluten/lwt-unix/ssl_io.ml)
File "src/vendor/gluten/lwt-unix/ssl_io.real.ml", line 93, characters 38-48:
Error (alert deprecated): SSLv23
SSL 2.0 was deprecated in 2011 by RFC 6176.
File "src/vendor/gluten/lwt-unix/ssl_io.real.ml", line 94, characters 37-47:
Error (alert deprecated): SSLv23
SSL 2.0 was deprecated in 2011 by RFC 6176.
File "src/vendor/gluten/lwt-unix/ssl_io.real.ml", line 107, characters 38-48:
Error (alert deprecated): SSLv23
SSL 2.0 was deprecated in 2011 by RFC 6176.
File "src/vendor/gluten/lwt-unix/ssl_io.real.ml", line 108, characters 37-47:
Error (alert deprecated): SSLv23
SSL 2.0 was deprecated in 2011 by RFC 6176.
File "src/vendor/dune", line 32, characters 56-67:
32 |   (libraries tcpip dream-httpaf.httpaf dream-mirage.paf mirage-time duration tls-mirage emile
^^^^^^^^^^^
Error: Library "mirage-time" not found.
-> required by library "dream-mirage.paf.le" in
_build/default/src/vendor/paf/lib
-> required by _build/default/META.dream-mirage
-> required by _build/install/default/lib/dream-mirage/META
-> required by _build/default/dream-mirage.install
-> required by alias install
File "src/vendor/dune", line 24, characters 47-58:
24 |   (libraries tcpip dream-mirage.paf tls-mirage mirage-time dream-mirage.paf.alpn)))
^^^^^^^^^^^
Error: Library "mirage-time" not found.
-> required by library "dream-mirage.paf.mirage" in
_build/default/src/vendor/paf/lib
-> required by _build/default/META.dream-mirage
-> required by _build/install/default/lib/dream-mirage/META
-> required by _build/default/dream-mirage.install
-> required by alias install
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -I src/vendor/paf/lib/.paf.objs/byte -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/mimic -I /home/opam/.opam/4.14/lib/mirage-flow -intf-suffix .ml -no-alias-deps -opaque -o src/vendor/paf/lib/.paf.objs/byte/paf.cmo -c -impl src/vendor/paf/lib/paf.ml)
File "src/vendor/paf/lib/paf.ml", line 131, characters 10-22:
131 |           Cstruct.copy (Cstruct.of_bigarray buffer ~off ~len) 0 len)
^^^^^^^^^^^^
Error (alert deprecated): Cstruct.copy
this is just like [to_string] without defaults, were you looking for [sub_copy]?
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/vendor/paf/lib/.paf.objs/byte -I src/vendor/paf/lib/.paf.objs/native -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/mimic -I /home/opam/.opam/4.14/lib/mirage-flow -intf-suffix .ml -no-alias-deps -opaque -o src/vendor/paf/lib/.paf.objs/native/paf.cmx -c -impl src/vendor/paf/lib/paf.ml)
File "src/vendor/paf/lib/paf.ml", line 131, characters 10-22:
131 |           Cstruct.copy (Cstruct.of_bigarray buffer ~off ~len) 0 len)
^^^^^^^^^^^^
Error (alert deprecated): Cstruct.copy
this is just like [to_string] without defaults, were you looking for [sub_copy]?
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -I src/cipher/.dream__cipher.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/hmap -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/mirage-crypto -I /home/opam/.opam/4.14/lib/mirage-crypto-rng -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I src/pure/.dream_pure.objs/byte -no-alias-deps -opaque -open Dream__cipher -o src/cipher/.dream__cipher.objs/byte/dream__cipher__Random.cmo -c -impl src/cipher/random.pp.ml)
File "src/cipher/random.ml", line 25, characters 20-37:
25 |   Cstruct.to_string (random_buffer n)
^^^^^^^^^^^^^^^^^
Error: This expression has type string but an expression was expected of type
Cstruct.t
"/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1
2026-03-28 08:05.02: Job failed: Failed: Build failed