2025-03-09 18:13.38: New job: test emillon/caniuse-ocaml https://github.com/emillon/caniuse-ocaml.git#refs/heads/main (da4419abea07414574dd37dcf762952fe33f02c5) (linux-s390x:debian-12-5.3_s390x_opam-2.3) Base: ocaml/opam:debian-12-ocaml-5.3@sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61 Opam project build To reproduce locally: git clone --recursive "https://github.com/emillon/caniuse-ocaml.git" -b "main" && cd "caniuse-ocaml" && git reset --hard da4419ab cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-5.3@sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61 # debian-12-5.3_s390x_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e 152dc7d1b8bbf870dc6c68b12700e4c4d64193e2 || git fetch origin master) && git reset -q --hard 152dc7d1b8bbf870dc6c68b12700e4c4d64193e2 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 caniuse.opam ./ RUN opam pin add -yn caniuse.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.1 bigarray-compat.1.1.0 bigarray-overlap.0.2.1 bigstringaf.0.10.0 bos.0.2.1 camlp-streams.5.0.1 caqti.2.1.2 caqti-lwt.2.1.1 cmarkit.0.3.0 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-libev.4-12 conf-libssl.4 conf-oniguruma.1 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 ctypes.0.23.0 digestif.1.2.0 domain-name.0.4.1 dream.1.0.0~alpha8 dream-httpaf.1.0.0~alpha4 dream-pure.1.0.0~alpha2 dune.3.17.2 dune-build-info.3.17.2 dune-configurator.3.17.2 dune-private-libs.3.17.2 dune-site.3.17.2 duration.0.2.1 dyn.3.17.2 eqaf.0.10 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fmt.0.9.0 fpath.0.7.3 gluten.0.5.2 gluten-lwt.0.5.2 gluten-lwt-unix.0.5.2 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 h2.0.10.0 h2-lwt.0.10.0 h2-lwt-unix.0.10.0 hilite.0.4.0 hmap.0.8.1 hpack.0.13.0 httpaf.0.7.1 httpun.0.1.0 httpun-lwt.0.1.0 httpun-lwt-unix.0.1.0 httpun-types.0.1.0 httpun-ws.0.2.0 integers.0.7.0 ipaddr.5.6.0 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 logs.0.7.0 lwt.5.9.0 lwt-dllist.1.0.1 lwt_ppx.5.8.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 markup.1.0.3 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 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 mtime.2.1.0 multipart_form.0.6.0 multipart_form-lwt.0.6.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 omd.2.0.0~alpha4 oniguruma.0.1.2 ordering.3.17.2 pecu.0.7 pp.2.0.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppxlib.0.35.0 prettym.0.0.3 psq.0.2.1 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 seq.base sexplib0.v0.17.0 ssl.0.7.0 stdlib-shims.0.3.0 stdune.3.17.2 stringext.1.6.0 textmate-language.0.4.0 tls.2.0.0 topkg.1.0.7 tyxml.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uucp.16.0.0 uunf.16.0.0 uutf.1.0.3 x509.1.0.5 yaml.3.2.0 yojson.2.2.2 zarith.1.14" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y caniuse.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-03-09 18:13.38: Using cache hint "emillon/caniuse-ocaml-ocaml/opam:debian-12-ocaml-5.3@sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61-debian-12-5.3_s390x_opam-2.3-3d6fa11613584843d30dbd74089e01f3" 2025-03-09 18:13.38: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-5.3@sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61) (comment debian-12-5.3_s390x_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 152dc7d1b8bbf870dc6c68b12700e4c4d64193e2 || git fetch origin master) && git reset -q --hard 152dc7d1b8bbf870dc6c68b12700e4c4d64193e2 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src caniuse.opam) (dst ./)) (run (network host) (shell "opam pin add -yn caniuse.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.1 bigarray-compat.1.1.0 bigarray-overlap.0.2.1 bigstringaf.0.10.0 bos.0.2.1 camlp-streams.5.0.1 caqti.2.1.2 caqti-lwt.2.1.1 cmarkit.0.3.0 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-libev.4-12 conf-libssl.4 conf-oniguruma.1 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 ctypes.0.23.0 digestif.1.2.0 domain-name.0.4.1 dream.1.0.0~alpha8 dream-httpaf.1.0.0~alpha4 dream-pure.1.0.0~alpha2 dune.3.17.2 dune-build-info.3.17.2 dune-configurator.3.17.2 dune-private-libs.3.17.2 dune-site.3.17.2 duration.0.2.1 dyn.3.17.2 eqaf.0.10 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fmt.0.9.0 fpath.0.7.3 gluten.0.5.2 gluten-lwt.0.5.2 gluten-lwt-unix.0.5.2 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 h2.0.10.0 h2-lwt.0.10.0 h2-lwt-unix.0.10.0 hilite.0.4.0 hmap.0.8.1 hpack.0.13.0 httpaf.0.7.1 httpun.0.1.0 httpun-lwt.0.1.0 httpun-lwt-unix.0.1.0 httpun-types.0.1.0 httpun-ws.0.2.0 integers.0.7.0 ipaddr.5.6.0 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 logs.0.7.0 lwt.5.9.0 lwt-dllist.1.0.1 lwt_ppx.5.8.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 markup.1.0.3 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 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 mtime.2.1.0 multipart_form.0.6.0 multipart_form-lwt.0.6.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 omd.2.0.0~alpha4 oniguruma.0.1.2 ordering.3.17.2 pecu.0.7 pp.2.0.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppxlib.0.35.0 prettym.0.0.3 psq.0.2.1 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 seq.base sexplib0.v0.17.0 ssl.0.7.0 stdlib-shims.0.3.0 stdune.3.17.2 stringext.1.6.0 textmate-language.0.4.0 tls.2.0.0 topkg.1.0.7 tyxml.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uucp.16.0.0 uunf.16.0.0 uutf.1.0.3 x509.1.0.5 yaml.3.2.0 yojson.2.2.2 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.3 --depext-only -y caniuse.dev $DEPS")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) ) 2025-03-09 18:13.38: Waiting for resource in pool OCluster 2025-03-09 18:13.38: Waiting for worker… 2025-03-09 18:30.11: Got resource from pool OCluster Building on s390x-worker-01.marist.ci.dev All commits already cached HEAD is now at da4419a version filter (from ocaml/opam:debian-12-ocaml-5.3@sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61) Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61' locally docker.io/ocaml/opam@sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61: Pulling from ocaml/opam Digest: sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61 Status: Downloaded newer image for ocaml/opam@sha256:a9a9ff7905ca9afd487cc0f94e6216b5e4827ac8739454d2998241ef953ecd61 2025-03-09 18:30.11 ---> using "3be7b8cb249cd42c3fdd8e7ea8ea582efe192d9955706a1afe4432b778f72af5" from cache /: (comment debian-12-5.3_s390x_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-03-09 18:30.11 ---> using "e34e4aa156738b9ee3297f959ce436753b53dd1242325d03fd593543ef07fb20" 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 development 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. Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [ERROR] Could not update repository "opam-repository-archive": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocaml/opam-repository-archive/': Could not resolve host: github.com" [default] synchronised from file:///home/opam/opam-repository 2025-03-09 18:30.11 ---> using "5e2dd3613f91c4da6b1f7f3a43a11b7af0470f841cdc152633e50947dc2c11f7" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-52-generic The OCaml toplevel, version 5.3.0 2.3.0 2025-03-09 18:30.11 ---> using "b3695288ad439a6341727c4071d53da54c8b51a43056f7292666d4b1e443fde1" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-03-09 18:30.11 ---> using "f882bbd5d67fa8025911bc9e9073ca90a3cadde787d4944afe11049cd4ef62aa" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 152dc7d1b8bbf870dc6c68b12700e4c4d64193e2 || git fetch origin master) && git reset -q --hard 152dc7d1b8bbf870dc6c68b12700e4c4d64193e2 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 38fed1a4c7..11f12fbcd0 master -> origin/master 152dc7d1b8 Merge pull request #27204 from raphael-proust/opam-publish-lwt.5.8.1 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive [default] synchronised from 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, which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-03-09 18:30.11 ---> using "98b73375ba9be563b279c18b0a4456de3f958c0f2ca3a8ecf9066b167a00b412" from cache /src: (copy (src caniuse.opam) (dst ./)) 2025-03-09 18:30.12 ---> saved as "000d916ca9e9ce06ef3120079ae1264aaacbf6269a7dac39350bbb5bf732695c" /src: (run (network host) (shell "opam pin add -yn caniuse.dev './'")) Package caniuse does not exist, create as a NEW package? [y/n] y [caniuse.dev] synchronised (file:///src) [WARNING] Failed checks on caniuse package definition from source at file:///src: warning 68: Missing field 'license' caniuse is now pinned to file:///src (version dev) 2025-03-09 18:30.24 ---> saved as "d8d63fb1dc8a259d30edac281e3da16215605c4288ca909bda12fd7c4078637a" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-03-09 18:30.29 ---> saved as "fb574aa754ff226b43df6549cdac29481f1b3263c88053c04f10450ba42ce41b" /src: (env DEPS "angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base64.3.5.1 bigarray-compat.1.1.0 bigarray-overlap.0.2.1 bigstringaf.0.10.0 bos.0.2.1 camlp-streams.5.0.1 caqti.2.1.2 caqti-lwt.2.1.1 cmarkit.0.3.0 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-libev.4-12 conf-libssl.4 conf-oniguruma.1 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 ctypes.0.23.0 digestif.1.2.0 domain-name.0.4.1 dream.1.0.0~alpha8 dream-httpaf.1.0.0~alpha4 dream-pure.1.0.0~alpha2 dune.3.17.2 dune-build-info.3.17.2 dune-configurator.3.17.2 dune-private-libs.3.17.2 dune-site.3.17.2 duration.0.2.1 dyn.3.17.2 eqaf.0.10 faraday.0.8.2 faraday-lwt.0.8.2 faraday-lwt-unix.0.8.2 fmt.0.9.0 fpath.0.7.3 gluten.0.5.2 gluten-lwt.0.5.2 gluten-lwt-unix.0.5.2 gmap.0.3.0 graphql.0.14.0 graphql-lwt.0.14.0 graphql_parser.0.14.0 h2.0.10.0 h2-lwt.0.10.0 h2-lwt-unix.0.10.0 hilite.0.4.0 hmap.0.8.1 hpack.0.13.0 httpaf.0.7.1 httpun.0.1.0 httpun-lwt.0.1.0 httpun-lwt-unix.0.1.0 httpun-types.0.1.0 httpun-ws.0.2.0 integers.0.7.0 ipaddr.5.6.0 kdf.1.0.0 ke.0.6 lambdasoup.1.1.1 logs.0.7.0 lwt.5.9.0 lwt-dllist.1.0.1 lwt_ppx.5.8.1 lwt_ssl.1.2.0 macaddr.5.6.0 magic-mime.1.3.1 markup.1.0.3 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 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 mtime.2.1.0 multipart_form.0.6.0 multipart_form-lwt.0.6.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 omd.2.0.0~alpha4 oniguruma.0.1.2 ordering.3.17.2 pecu.0.7 pp.2.0.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppxlib.0.35.0 prettym.0.0.3 psq.0.2.1 ptime.1.2.0 re.1.12.0 result.1.5 rresult.0.7.0 seq.base sexplib0.v0.17.0 ssl.0.7.0 stdlib-shims.0.3.0 stdune.3.17.2 stringext.1.6.0 textmate-language.0.4.0 tls.2.0.0 topkg.1.0.7 tyxml.4.6.0 uchar.0.0.2 unstrctrd.0.4 uri.4.4.0 uucp.16.0.0 uunf.16.0.0 uutf.1.0.3 x509.1.0.5 yaml.3.2.0 yojson.2.2.2 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.3 --depext-only -y caniuse.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian bookworm InRelease - Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] - Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] - Get:4 http://deb.debian.org/debian-security bookworm-security/main s390x Packages [212 kB] - Fetched 316 kB in 1s (630 kB/s) - Reading package lists... <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [caniuse.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 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.0). [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-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains 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: libev-dev libgmp-dev libonig-dev libssl-dev pkg-config <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libev-dev" "libgmp-dev" "libonig-dev" "libssl-dev" "pkg-config" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libev4:s390x. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18549 files and directories currently installed.) - Preparing to unpack .../00-libev4_1%3a4.33-1_s390x.deb ... - Unpacking libev4:s390x (1:4.33-1) ... - Selecting previously unselected package libev-dev:s390x. - Preparing to unpack .../01-libev-dev_1%3a4.33-1_s390x.deb ... - Unpacking libev-dev:s390x (1:4.33-1) ... - Selecting previously unselected package libgmpxx4ldbl:s390x. - Preparing to unpack .../02-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_s390x.deb ... - Unpacking libgmpxx4ldbl:s390x (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libgmp-dev:s390x. - Preparing to unpack .../03-libgmp-dev_2%3a6.2.1+dfsg1-1.1_s390x.deb ... - Unpacking libgmp-dev:s390x (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libonig5:s390x. - Preparing to unpack .../04-libonig5_6.9.8-1_s390x.deb ... - Unpacking libonig5:s390x (6.9.8-1) ... - Selecting previously unselected package libonig-dev. - Preparing to unpack .../05-libonig-dev_6.9.8-1_s390x.deb ... - Unpacking libonig-dev (6.9.8-1) ... - Selecting previously unselected package libpkgconf3:s390x. - Preparing to unpack .../06-libpkgconf3_1.8.1-1_s390x.deb ... - Unpacking libpkgconf3:s390x (1.8.1-1) ... - Selecting previously unselected package libssl-dev:s390x. - Preparing to unpack .../07-libssl-dev_3.0.15-1~deb12u1_s390x.deb ... - Unpacking libssl-dev:s390x (3.0.15-1~deb12u1) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../08-pkgconf-bin_1.8.1-1_s390x.deb ... - Unpacking pkgconf-bin (1.8.1-1) ... - Selecting previously unselected package pkgconf:s390x. - Preparing to unpack .../09-pkgconf_1.8.1-1_s390x.deb ... - Unpacking pkgconf:s390x (1.8.1-1) ... - Selecting previously unselected package pkg-config:s390x. - Preparing to unpack .../10-pkg-config_1.8.1-1_s390x.deb ... - Unpacking pkg-config:s390x (1.8.1-1) ... - Setting up libev4:s390x (1:4.33-1) ... - Setting up libpkgconf3:s390x (1.8.1-1) ... - Setting up libgmpxx4ldbl:s390x (2:6.2.1+dfsg1-1.1) ... - Setting up libssl-dev:s390x (3.0.15-1~deb12u1) ... - Setting up pkgconf-bin (1.8.1-1) ... - Setting up libev-dev:s390x (1:4.33-1) ... - Setting up libonig5:s390x (6.9.8-1) ... - Setting up libgmp-dev:s390x (2:6.2.1+dfsg1-1.1) ... - Setting up libonig-dev (6.9.8-1) ... - Setting up pkgconf:s390x (1.8.1-1) ... - Setting up pkg-config:s390x (1.8.1-1) ... - Processing triggers for libc-bin (2.36-9+deb12u9) ... 2025-03-09 18:31.02 ---> saved as "974b3f6cc9d866b2458ed0f48eed185cc2bdf5a2fe986bb3395b496d32cf5905" /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 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.0). [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-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains 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 127 packages - install angstrom 0.16.1 - install asn1-combinators 0.3.2 - install astring 0.8.5 - install base-bytes base - install base64 3.5.1 - install bigarray-compat 1.1.0 - install bigarray-overlap 0.2.1 - install bigstringaf 0.10.0 - install bos 0.2.1 - install camlp-streams 5.0.1 - install caqti 2.1.2 - install caqti-lwt 2.1.1 - install cmarkit 0.3.0 - install cmdliner 1.3.0 - install conf-gmp 4 - install conf-gmp-powm-sec 3 - install conf-libev 4-12 - install conf-libssl 4 - install conf-oniguruma 1 - install conf-pkg-config 4 - install cppo 1.8.0 - install csexp 1.5.2 - install cstruct 6.2.0 - install ctypes 0.23.0 - install digestif 1.2.0 - install domain-name 0.4.1 - install dream 1.0.0~alpha8 - install dream-httpaf 1.0.0~alpha4 - install dream-pure 1.0.0~alpha2 - install dune 3.17.2 - install dune-build-info 3.17.2 - install dune-configurator 3.17.2 - install dune-private-libs 3.17.2 - install dune-site 3.17.2 - install duration 0.2.1 - install dyn 3.17.2 - install eqaf 0.10 - install faraday 0.8.2 - install faraday-lwt 0.8.2 - install faraday-lwt-unix 0.8.2 - install fmt 0.9.0 - install fpath 0.7.3 - install gluten 0.5.2 - install gluten-lwt 0.5.2 - install gluten-lwt-unix 0.5.2 - install gmap 0.3.0 - install graphql 0.14.0 - install graphql-lwt 0.14.0 - install graphql_parser 0.14.0 - install h2 0.10.0 - install h2-lwt 0.10.0 - install h2-lwt-unix 0.10.0 - install hilite 0.4.0 - install hmap 0.8.1 - install hpack 0.13.0 - install httpaf 0.7.1 - install httpun 0.1.0 - install httpun-lwt 0.1.0 - install httpun-lwt-unix 0.1.0 - install httpun-types 0.1.0 - install httpun-ws 0.2.0 - install integers 0.7.0 - install ipaddr 5.6.0 - install kdf 1.0.0 - install ke 0.6 - install lambdasoup 1.1.1 - install logs 0.7.0 - install lwt 5.9.0 - install lwt-dllist 1.0.1 - install lwt_ppx 5.8.1 - install lwt_ssl 1.2.0 - install macaddr 5.6.0 - install magic-mime 1.3.1 - install markup 1.0.3 - install menhir 20240715 - install menhirCST 20240715 - install menhirLib 20240715 - install menhirSdk 20240715 - 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 mtime 2.1.0 - install multipart_form 0.6.0 - install multipart_form-lwt 0.6.0 - install ocaml-compiler-libs v0.17.0 - install ocaml-syntax-shims 1.0.0 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ocplib-endian 1.2 - install ohex 0.2.0 - install omd 2.0.0~alpha4 - install oniguruma 0.1.2 - install ordering 3.17.2 - install pecu 0.7 - install pp 2.0.0 - install ppx_derivers 1.2.1 - install ppx_deriving 6.0.3 - install ppxlib 0.35.0 - install prettym 0.0.3 - install psq 0.2.1 - install ptime 1.2.0 - install re 1.12.0 - install result 1.5 - install rresult 0.7.0 - install seq base - install sexplib0 v0.17.0 - install ssl 0.7.0 - install stdlib-shims 0.3.0 - install stdune 3.17.2 - install stringext 1.6.0 - install textmate-language 0.4.0 - install tls 2.0.0 - install topkg 1.0.7 - install tyxml 4.6.0 - install uchar 0.0.2 - install unstrctrd 0.4 - install uri 4.4.0 - install uucp 16.0.0 - install uunf 16.0.0 - install uutf 1.0.3 - install x509 1.0.5 - install yaml 3.2.0 - install yojson 2.2.2 - install zarith 1.14 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved asn1-combinators.0.3.2 (cached) -> retrieved base64.3.5.1 (cached) -> retrieved angstrom.0.16.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved bigarray-compat.1.1.0 (cached) -> retrieved bigarray-overlap.0.2.1 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved camlp-streams.5.0.1 (cached) -> retrieved caqti.2.1.2 (cached) -> retrieved caqti-lwt.2.1.1 (cached) -> retrieved conf-gmp.4 (cached) -> retrieved conf-gmp-powm-sec.3 (cached) -> retrieved conf-libev.4-12 (cached) -> retrieved conf-libssl.4 (cached) -> retrieved cmarkit.0.3.0 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved cppo.1.8.0 (cached) -> installed conf-pkg-config.4 -> retrieved csexp.1.5.2 (cached) -> retrieved cstruct.6.2.0 (cached) -> retrieved ctypes.0.23.0 (cached) -> installed conf-gmp.4 -> retrieved domain-name.0.4.1 (cached) -> retrieved digestif.1.2.0 (cached) -> retrieved dream.1.0.0~alpha8, dream-httpaf.1.0.0~alpha4 (cached) -> installed conf-libev.4-12 -> installed conf-libssl.4 -> retrieved dream-pure.1.0.0~alpha2 (cached) -> retrieved duration.0.2.1 (cached) -> installed conf-gmp-powm-sec.3 -> installed conf-oniguruma.1 -> retrieved eqaf.0.10 (cached) -> retrieved faraday.0.8.2, faraday-lwt.0.8.2, faraday-lwt-unix.0.8.2 (cached) -> retrieved fmt.0.9.0 (cached) -> retrieved gluten.0.5.2, gluten-lwt.0.5.2, gluten-lwt-unix.0.5.2 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved gmap.0.3.0 (cached) -> retrieved graphql.0.14.0, graphql-lwt.0.14.0, graphql_parser.0.14.0 (cached) -> retrieved h2.0.10.0, h2-lwt.0.10.0, h2-lwt-unix.0.10.0 (cached) -> retrieved dune.3.17.2, dune-build-info.3.17.2, dune-configurator.3.17.2, dune-private-libs.3.17.2, dune-site.3.17.2, dyn.3.17.2, ordering.3.17.2, stdune.3.17.2 (cached) -> retrieved hilite.0.4.0 (cached) -> retrieved hmap.0.8.1 (cached) -> retrieved hpack.0.13.0 (cached) -> retrieved httpaf.0.7.1 (cached) -> retrieved httpun.0.1.0, httpun-lwt.0.1.0, httpun-lwt-unix.0.1.0, httpun-types.0.1.0 (cached) -> retrieved httpun-ws.0.2.0 (cached) -> installed cmdliner.1.3.0 -> retrieved integers.0.7.0 (cached) -> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached) -> retrieved kdf.1.0.0 (cached) -> retrieved ke.0.6 (cached) -> retrieved lambdasoup.1.1.1 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved lwt.5.9.0 (cached) -> retrieved lwt-dllist.1.0.1 (cached) -> retrieved lwt_ssl.1.2.0 (cached) -> retrieved magic-mime.1.3.1 (cached) -> retrieved markup.1.0.3 (cached) -> retrieved mirage-clock.4.2.0 (cached) -> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (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 mtime.2.1.0 (cached) -> retrieved lwt_ppx.5.8.1 (https://github.com/ocsigen/lwt/archive/refs/tags/5.8.1.tar.gz) -> retrieved multipart_form.0.6.0, multipart_form-lwt.0.6.0 (cached) -> retrieved ocaml-compiler-libs.v0.17.0 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocplib-endian.1.2 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ohex.0.2.0 (cached) -> retrieved omd.2.0.0~alpha4 (cached) -> retrieved oniguruma.0.1.2 (cached) -> retrieved pecu.0.7 (cached) -> retrieved pp.2.0.0 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_deriving.6.0.3 (cached) -> retrieved prettym.0.0.3 (cached) -> retrieved psq.0.2.1 (cached) -> retrieved ptime.1.2.0 (cached) -> retrieved re.1.12.0 (cached) -> retrieved result.1.5 (cached) -> retrieved seq.base (cached) -> retrieved rresult.0.7.0 (cached) -> retrieved sexplib0.v0.17.0 (cached) -> retrieved ssl.0.7.0 (cached) -> retrieved ppxlib.0.35.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved stringext.1.6.0 (cached) -> retrieved textmate-language.0.4.0 (cached) -> retrieved topkg.1.0.7 (cached) -> retrieved tls.2.0.0 (cached) -> retrieved tyxml.4.6.0 (cached) -> retrieved uchar.0.0.2 (cached) -> retrieved unstrctrd.0.4 (cached) -> retrieved uri.4.4.0 (cached) -> retrieved uunf.16.0.0 (cached) -> retrieved uutf.1.0.3 (cached) -> retrieved x509.1.0.5 (cached) -> retrieved yaml.3.2.0 (cached) -> retrieved zarith.1.14 (cached) -> retrieved yojson.2.2.2 (cached) -> retrieved uucp.16.0.0 (cached) -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed seq.base -> installed ocamlbuild.0.16.1 -> installed zarith.1.14 -> installed uchar.0.0.2 -> installed topkg.1.0.7 -> installed astring.0.8.5 -> installed fmt.0.9.0 -> installed fpath.0.7.3 -> installed cmarkit.0.3.0 -> installed hmap.0.8.1 -> installed mtime.2.1.0 -> installed ptime.1.2.0 -> installed rresult.0.7.0 -> installed uutf.1.0.3 -> installed uunf.16.0.0 -> installed dune.3.17.2 -> installed base64.3.5.1 -> installed asn1-combinators.0.3.2 -> installed bigarray-compat.1.1.0 -> installed bigarray-overlap.0.2.1 -> installed camlp-streams.5.0.1 -> installed csexp.1.5.2 -> installed cppo.1.8.0 -> installed cstruct.6.2.0 -> installed domain-name.0.4.1 -> installed dune-build-info.3.17.2 -> installed duration.0.2.1 -> installed dune-configurator.3.17.2 -> installed eqaf.0.10 -> installed gmap.0.3.0 -> installed bigstringaf.0.10.0 -> installed ke.0.6 -> installed faraday.0.8.2 -> installed lwt-dllist.1.0.1 -> installed gluten.0.5.2 -> installed digestif.1.2.0 -> installed httpun-types.0.1.0 -> installed macaddr.5.6.0 -> installed magic-mime.1.3.1 -> installed ipaddr.5.6.0 -> installed menhirCST.20240715 -> installed markup.1.0.3 -> installed menhirLib.20240715 -> installed menhirSdk.20240715 -> installed mirage-clock.4.2.0 -> installed lambdasoup.1.1.1 -> installed mirage-crypto.1.2.0 -> installed ocaml-compiler-libs.v0.17.0 -> installed kdf.1.0.0 -> installed ocaml-syntax-shims.1.0.0 -> installed ocplib-endian.1.2 -> installed angstrom.0.16.1 -> installed uucp.16.0.0 -> installed hpack.0.13.0 -> installed httpun.0.1.0 -> installed ohex.0.2.0 -> installed httpun-ws.0.2.0 -> installed lwt.5.9.0 -> installed oniguruma.0.1.2 -> installed faraday-lwt.0.8.2 -> installed gluten-lwt.0.5.2 -> installed omd.2.0.0~alpha4 -> installed faraday-lwt-unix.0.8.2 -> installed httpun-lwt.0.1.0 -> installed logs.0.7.0 -> installed ordering.3.17.2 -> installed pecu.0.7 -> installed mirage-crypto-rng.1.2.0 -> installed pp.2.0.0 -> installed bos.0.2.1 -> installed menhir.20240715 -> installed mirage-crypto-pk.1.2.0 -> installed dyn.3.17.2 -> installed ppx_derivers.1.2.1 -> installed mirage-crypto-rng-lwt.1.2.0 -> installed psq.0.2.1 -> installed prettym.0.0.3 -> installed result.1.5 -> installed sexplib0.v0.17.0 -> installed re.1.12.0 -> installed mirage-crypto-ec.1.2.0 -> installed httpaf.0.7.1 -> installed stdlib-shims.0.3.0 -> installed graphql_parser.0.14.0 -> installed ssl.0.7.0 -> installed integers.0.7.0 -> installed lwt_ssl.1.2.0 -> installed h2.0.10.0 -> installed gluten-lwt-unix.0.5.2 -> installed h2-lwt.0.10.0 -> installed httpun-lwt-unix.0.1.0 -> installed h2-lwt-unix.0.10.0 -> installed ctypes.0.23.0 -> installed stringext.1.6.0 -> installed textmate-language.0.4.0 -> installed stdune.3.17.2 -> installed hilite.0.4.0 -> installed tyxml.4.6.0 -> installed unstrctrd.0.4 -> installed dune-private-libs.3.17.2 -> installed multipart_form.0.6.0 -> installed uri.4.4.0 -> installed multipart_form-lwt.0.6.0 -> installed dune-site.3.17.2 -> installed x509.1.0.5 -> installed ppxlib.0.35.0 -> installed yojson.2.2.2 -> installed yaml.3.2.0 -> installed tls.2.0.0 -> installed graphql.0.14.0 -> installed lwt_ppx.5.8.1 -> installed graphql-lwt.0.14.0 -> installed caqti.2.1.2 -> installed dream-pure.1.0.0~alpha2 -> installed caqti-lwt.2.1.1 -> installed ppx_deriving.6.0.3 -> installed dream-httpaf.1.0.0~alpha4 -> installed dream.1.0.0~alpha8 Done. # To update the current shell environment, run: eval $(opam env) 2025-03-09 18:34.12 ---> saved as "4c62880478c49a27345fe0b93ddd44fae15d76e617155b17c76bccba9a05f442" /src: (copy (src .) (dst /src)) 2025-03-09 18:34.13 ---> saved as "d2c5d53c8c7ff05ce1d382f1ce67988bad4af041b73dd9555173f32200b5c38d" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) (cd _build/default && /home/opam/.opam/5.3/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 -bin-annot-occurrences -I lib/.caniuse.objs/byte -I /home/opam/.opam/5.3/lib/bigarray-compat -I /home/opam/.opam/5.3/lib/cmarkit -I /home/opam/.opam/5.3/lib/cmdliner -I /home/opam/.opam/5.3/lib/ctypes -I /home/opam/.opam/5.3/lib/ctypes/stubs -I /home/opam/.opam/5.3/lib/hilite -I /home/opam/.opam/5.3/lib/integers -I /home/opam/.opam/5.3/lib/ocaml/str -I /home/opam/.opam/5.3/lib/omd -I /home/opam/.opam/5.3/lib/oniguruma -I /home/opam/.opam/5.3/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3/lib/re -I /home/opam/.opam/5.3/lib/seq -I /home/opam/.opam/5.3/lib/stdlib-shims -I /home/opam/.opam/5.3/lib/textmate-language -I /home/opam/.opam/5.3/lib/uucp -I /home/opam/.opam/5.3/lib/uunf -I /home/opam/.opam/5.3/lib/uutf -I /home/opam/.opam/5.3/lib/yaml -I /home/opam/.opam/5.3/lib/yaml/bindings -I /home/opam/.opam/5.3/lib/yaml/bindings/types -I /home/opam/.opam/5.3/lib/yaml/c -I /home/opam/.opam/5.3/lib/yaml/ffi -I /home/opam/.opam/5.3/lib/yaml/types -intf-suffix .ml -no-alias-deps -opaque -open Caniuse -o lib/.caniuse.objs/byte/caniuse__Load.cmo -c -impl lib/load.pp.ml) File "lib/load.ml", line 27, characters 31-37: 27 | let md = Hilite.Md.transform md_raw in ^^^^^^ Error: The value md_raw has type Omd.doc = Omd.attributes Omd__Ast_block.Make(Omd__Ast_block.InlineContent).block list but an expression was expected of type Cmarkit.Doc.t (cd _build/default && /home/opam/.opam/5.3/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 lib/.caniuse.objs/byte -I lib/.caniuse.objs/native -I /home/opam/.opam/5.3/lib/bigarray-compat -I /home/opam/.opam/5.3/lib/cmarkit -I /home/opam/.opam/5.3/lib/cmdliner -I /home/opam/.opam/5.3/lib/ctypes -I /home/opam/.opam/5.3/lib/ctypes/stubs -I /home/opam/.opam/5.3/lib/hilite -I /home/opam/.opam/5.3/lib/integers -I /home/opam/.opam/5.3/lib/ocaml/str -I /home/opam/.opam/5.3/lib/omd -I /home/opam/.opam/5.3/lib/oniguruma -I /home/opam/.opam/5.3/lib/ppx_deriving/runtime -I /home/opam/.opam/5.3/lib/re -I /home/opam/.opam/5.3/lib/seq -I /home/opam/.opam/5.3/lib/stdlib-shims -I /home/opam/.opam/5.3/lib/textmate-language -I /home/opam/.opam/5.3/lib/uucp -I /home/opam/.opam/5.3/lib/uunf -I /home/opam/.opam/5.3/lib/uutf -I /home/opam/.opam/5.3/lib/yaml -I /home/opam/.opam/5.3/lib/yaml/bindings -I /home/opam/.opam/5.3/lib/yaml/bindings/types -I /home/opam/.opam/5.3/lib/yaml/c -I /home/opam/.opam/5.3/lib/yaml/ffi -I /home/opam/.opam/5.3/lib/yaml/types -intf-suffix .ml -no-alias-deps -opaque -open Caniuse -o lib/.caniuse.objs/native/caniuse__Load.cmx -c -impl lib/load.pp.ml) File "lib/load.ml", line 27, characters 31-37: 27 | let md = Hilite.Md.transform md_raw in ^^^^^^ Error: The value md_raw has type Omd.doc = Omd.attributes Omd__Ast_block.Make(Omd__Ast_block.InlineContent).block list but an expression was expected of type Cmarkit.Doc.t "/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1 2025-03-09 18:34.20: Job failed: Failed: Build failed