2025-11-26 10:38.03: New job: test mirage/ocaml-uri https://github.com/mirage/ocaml-uri.git#refs/heads/dependabot/github_actions/actions/checkout-6 (67e15b27ddc5559f6441cfcdf8cb36117f2c0ca9) (linux-x86_64:debian-13-4.13_opam-2.4) Base: ocaml/opam:debian-13-ocaml-4.13@sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897 Opam project build To reproduce locally: git clone --recursive "https://github.com/mirage/ocaml-uri.git" -b "dependabot/github_actions/actions/checkout-6" && cd "ocaml-uri" && git reset --hard 67e15b27 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-13-ocaml-4.13@sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897 # debian-13-4.13_opam-2.4 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.4 /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 8a324a5b9945e0e515da441ede437f3756caa83d || git fetch origin master) && git reset -q --hard 8a324a5b9945e0e515da441ede437f3756caa83d && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 uri.opam uri-sexp.opam uri-re.opam uri-bench.opam ./ RUN opam pin add -yn uri.dev './' && \ opam pin add -yn uri-sexp.dev './' && \ opam pin add -yn uri-re.dev './' && \ opam pin add -yn uri-bench.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="afl-persistent.1.4 angstrom.0.16.1 base.v0.15.1 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.15.0 base_quickcheck.v0.15.0 bigstringaf.0.10.0 bin_prot.v0.15.0 cmdliner.2.1.0 core.v0.15.1 core_bench.v0.15.0 core_kernel.v0.15.0 core_unix.v0.15.2 crowbar.0.2.2 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.15.0 fieldslib.v0.15.0 int_repr.v0.15.0 jane-street-headers.v0.15.0 jst-config.v0.15.1 num.1.6 ocaml.4.13.1 ocaml-base-compiler.4.13.1 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.15.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ounit2.2.2.7 parsexp.v0.15.0 ppx_assert.v0.15.0 ppx_base.v0.15.0 ppx_bench.v0.15.1 ppx_bin_prot.v0.15.0 ppx_cold.v0.15.0 ppx_compare.v0.15.0 ppx_custom_printf.v0.15.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.15.0 ppx_enumerate.v0.15.0 ppx_expect.v0.15.1 ppx_fields_conv.v0.15.0 ppx_fixed_literal.v0.15.0 ppx_hash.v0.15.0 ppx_here.v0.15.0 ppx_ignore_instrumentation.v0.15.0 ppx_inline_test.v0.15.1 ppx_jane.v0.15.0 ppx_let.v0.15.0 ppx_log.v0.15.0 ppx_module_timer.v0.15.0 ppx_optcomp.v0.15.0 ppx_optional.v0.15.0 ppx_pipebang.v0.15.0 ppx_sexp_conv.v0.15.1 ppx_sexp_message.v0.15.0 ppx_sexp_value.v0.15.0 ppx_stable.v0.15.0 ppx_string.v0.15.0 ppx_typerep_conv.v0.15.0 ppx_variants_conv.v0.15.0 ppxlib.0.35.0 re.1.14.0 seq.base sexp_pretty.v0.15.1 sexplib.v0.15.1 sexplib0.v0.15.1 spawn.v0.17.0 splittable_random.v0.15.0 stdio.v0.15.0 stdlib-shims.0.3.0 stringext.1.6.0 textutils.v0.15.0 textutils_kernel.v0.15.0 time_now.v0.15.0 timezone.v0.15.0 topkg.1.1.1 typerep.v0.15.0 uutf.1.0.4 variantslib.v0.15.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --depext-only -y uri.dev uri-sexp.dev uri-re.dev uri-bench.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-11-26 10:38.03: Using cache hint "mirage/ocaml-uri-ocaml/opam:debian-13-ocaml-4.13@sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897-debian-13-4.13_opam-2.4-0f787078cbffed267b4a54c779ae1e3d" 2025-11-26 10:38.03: Using OBuilder spec: ((from ocaml/opam:debian-13-ocaml-4.13@sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897) (comment debian-13-4.13_opam-2.4) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.4 /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 8a324a5b9945e0e515da441ede437f3756caa83d || git fetch origin master) && git reset -q --hard 8a324a5b9945e0e515da441ede437f3756caa83d && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src uri.opam uri-sexp.opam uri-re.opam uri-bench.opam) (dst ./)) (run (network host) (shell "opam pin add -yn uri.dev './' && \ \nopam pin add -yn uri-sexp.dev './' && \ \nopam pin add -yn uri-re.dev './' && \ \nopam pin add -yn uri-bench.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "afl-persistent.1.4 angstrom.0.16.1 base.v0.15.1 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.15.0 base_quickcheck.v0.15.0 bigstringaf.0.10.0 bin_prot.v0.15.0 cmdliner.2.1.0 core.v0.15.1 core_bench.v0.15.0 core_kernel.v0.15.0 core_unix.v0.15.2 crowbar.0.2.2 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.15.0 fieldslib.v0.15.0 int_repr.v0.15.0 jane-street-headers.v0.15.0 jst-config.v0.15.1 num.1.6 ocaml.4.13.1 ocaml-base-compiler.4.13.1 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.15.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ounit2.2.2.7 parsexp.v0.15.0 ppx_assert.v0.15.0 ppx_base.v0.15.0 ppx_bench.v0.15.1 ppx_bin_prot.v0.15.0 ppx_cold.v0.15.0 ppx_compare.v0.15.0 ppx_custom_printf.v0.15.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.15.0 ppx_enumerate.v0.15.0 ppx_expect.v0.15.1 ppx_fields_conv.v0.15.0 ppx_fixed_literal.v0.15.0 ppx_hash.v0.15.0 ppx_here.v0.15.0 ppx_ignore_instrumentation.v0.15.0 ppx_inline_test.v0.15.1 ppx_jane.v0.15.0 ppx_let.v0.15.0 ppx_log.v0.15.0 ppx_module_timer.v0.15.0 ppx_optcomp.v0.15.0 ppx_optional.v0.15.0 ppx_pipebang.v0.15.0 ppx_sexp_conv.v0.15.1 ppx_sexp_message.v0.15.0 ppx_sexp_value.v0.15.0 ppx_stable.v0.15.0 ppx_string.v0.15.0 ppx_typerep_conv.v0.15.0 ppx_variants_conv.v0.15.0 ppxlib.0.35.0 re.1.14.0 seq.base sexp_pretty.v0.15.1 sexplib.v0.15.1 sexplib0.v0.15.1 spawn.v0.17.0 splittable_random.v0.15.0 stdio.v0.15.0 stdlib-shims.0.3.0 stringext.1.6.0 textutils.v0.15.0 textutils_kernel.v0.15.0 time_now.v0.15.0 timezone.v0.15.0 topkg.1.1.1 typerep.v0.15.0 uutf.1.0.4 variantslib.v0.15.0") (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.4 --depext-only -y uri.dev uri-sexp.dev uri-re.dev uri-bench.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-11-26 10:38.03: Waiting for resource in pool OCluster 2025-11-26 15:33.18: Waiting for worker… 2025-11-26 15:35.34: Got resource from pool OCluster Building on toxis.caelum.ci.dev All commits already cached HEAD is now at 67e15b2 Bump actions/checkout from 4 to 6 (from ocaml/opam:debian-13-ocaml-4.13@sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897) Unable to find image 'ocaml/opam:debian-13-ocaml-4.13@sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897' locally docker.io/ocaml/opam@sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897: Pulling from ocaml/opam 13cc39f8244a: Pulling fs layer b27d53669817: Pulling fs layer 062c909e206e: Pulling fs layer 265baae72087: Pulling fs layer b6b7b385247c: Pulling fs layer bfb7bf5b7c6d: Pulling fs layer 265baae72087: Waiting b18c76fc18f2: Pulling fs layer b6b7b385247c: Waiting 6bdbb37ee35f: Pulling fs layer bfb7bf5b7c6d: Waiting 84035aa4da2d: Pulling fs layer 0c3307e14207: Pulling fs layer 84035aa4da2d: Waiting 30b92d637d72: Pulling fs layer 0c3307e14207: Waiting 991b07583706: Pulling fs layer 30b92d637d72: Waiting e1d7a79a1495: Pulling fs layer 991b07583706: Waiting 6b08d63c6214: Pulling fs layer 4c7236344711: Pulling fs layer 6b08d63c6214: Waiting 12506f41e8b0: Pulling fs layer 4c7236344711: Waiting 12506f41e8b0: Waiting 2330d596aec1: Pulling fs layer a48299f5ec62: Pulling fs layer 04618a577568: Pulling fs layer 2330d596aec1: Waiting a48299f5ec62: Waiting 8c4b002d072b: Pulling fs layer 4f4fb700ef54: Pulling fs layer 8c4b002d072b: Waiting ff68f05e2976: Pulling fs layer 4f4fb700ef54: Waiting d5543b560a3e: Pulling fs layer ff68f05e2976: Waiting d5543b560a3e: Waiting 4a9030bbb1ef: Pulling fs layer c59b3bec3411: Pulling fs layer 4a9030bbb1ef: Waiting 85a7c9be9495: Pulling fs layer c59b3bec3411: Waiting dbc6bd8f2e44: Pulling fs layer 85a7c9be9495: Waiting 6680a5133ca2: Pulling fs layer dbc6bd8f2e44: Waiting 470c0056084c: Pulling fs layer 6680a5133ca2: Waiting 470c0056084c: Waiting 6b9af56b67cf: Pulling fs layer c572cde25fb3: Pulling fs layer 6b9af56b67cf: Waiting 033b2d405acf: Pulling fs layer c572cde25fb3: Waiting 663cc5b3d424: Pulling fs layer 033b2d405acf: Waiting 840bbd47fded: Pulling fs layer 663cc5b3d424: Waiting fb8f644ba010: Pulling fs layer 66735543f230: Pulling fs layer fb8f644ba010: Waiting 7896354b8c11: Pulling fs layer 66735543f230: Waiting 7896354b8c11: Waiting a0063722d8c2: Pulling fs layer 7018e4a5881b: Pulling fs layer a0063722d8c2: Waiting b9fc416556b6: Pulling fs layer 7018e4a5881b: Waiting f7413e2a9aab: Pulling fs layer b9fc416556b6: Waiting e585362811e2: Pulling fs layer f7413e2a9aab: Waiting e06c8af00d12: Pulling fs layer e585362811e2: Waiting e06c8af00d12: Waiting 062c909e206e: Download complete b27d53669817: Verifying Checksum b27d53669817: Download complete b6b7b385247c: Verifying Checksum b6b7b385247c: Download complete 265baae72087: Verifying Checksum 265baae72087: Download complete 13cc39f8244a: Verifying Checksum 13cc39f8244a: Download complete b18c76fc18f2: Verifying Checksum b18c76fc18f2: Download complete 6bdbb37ee35f: Verifying Checksum 6bdbb37ee35f: Download complete 84035aa4da2d: Verifying Checksum 84035aa4da2d: Download complete 0c3307e14207: Verifying Checksum 0c3307e14207: Download complete 30b92d637d72: Verifying Checksum 30b92d637d72: Download complete 991b07583706: Verifying Checksum 991b07583706: Download complete e1d7a79a1495: Verifying Checksum e1d7a79a1495: Download complete 4c7236344711: Download complete 6b08d63c6214: Verifying Checksum 6b08d63c6214: Download complete 2330d596aec1: Download complete 12506f41e8b0: Verifying Checksum 12506f41e8b0: Download complete 13cc39f8244a: Pull complete a48299f5ec62: Verifying Checksum b27d53669817: Pull complete 062c909e206e: Pull complete 04618a577568: Download complete 8c4b002d072b: Verifying Checksum 8c4b002d072b: Download complete 4f4fb700ef54: Verifying Checksum 4f4fb700ef54: Download complete ff68f05e2976: Verifying Checksum ff68f05e2976: Download complete d5543b560a3e: Verifying Checksum d5543b560a3e: Download complete 265baae72087: Pull complete b6b7b385247c: Pull complete c59b3bec3411: Verifying Checksum c59b3bec3411: Download complete 85a7c9be9495: Verifying Checksum 85a7c9be9495: Download complete 4a9030bbb1ef: Download complete dbc6bd8f2e44: Verifying Checksum dbc6bd8f2e44: Download complete 6680a5133ca2: Download complete 6b9af56b67cf: Verifying Checksum 6b9af56b67cf: Download complete 470c0056084c: Verifying Checksum 470c0056084c: Download complete c572cde25fb3: Download complete 033b2d405acf: Download complete 663cc5b3d424: Download complete fb8f644ba010: Verifying Checksum fb8f644ba010: Download complete 66735543f230: Verifying Checksum 66735543f230: Download complete 7896354b8c11: Download complete a0063722d8c2: Download complete 7018e4a5881b: Download complete b9fc416556b6: Verifying Checksum b9fc416556b6: Download complete f7413e2a9aab: Download complete e585362811e2: Download complete e06c8af00d12: Download complete bfb7bf5b7c6d: Verifying Checksum bfb7bf5b7c6d: Download complete 840bbd47fded: Verifying Checksum 840bbd47fded: Download complete bfb7bf5b7c6d: Pull complete b18c76fc18f2: Pull complete 6bdbb37ee35f: Pull complete 84035aa4da2d: Pull complete 0c3307e14207: Pull complete 30b92d637d72: Pull complete 991b07583706: Pull complete e1d7a79a1495: Pull complete 6b08d63c6214: Pull complete 4c7236344711: Pull complete 12506f41e8b0: Pull complete 2330d596aec1: Pull complete a48299f5ec62: Pull complete 04618a577568: Pull complete 8c4b002d072b: Pull complete 4f4fb700ef54: Pull complete ff68f05e2976: Pull complete d5543b560a3e: Pull complete 4a9030bbb1ef: Pull complete c59b3bec3411: Pull complete 85a7c9be9495: Pull complete dbc6bd8f2e44: Pull complete 6680a5133ca2: Pull complete 470c0056084c: Pull complete 6b9af56b67cf: Pull complete c572cde25fb3: Pull complete 033b2d405acf: Pull complete 663cc5b3d424: Pull complete 840bbd47fded: Pull complete fb8f644ba010: Pull complete 66735543f230: Pull complete 7896354b8c11: Pull complete a0063722d8c2: Pull complete 7018e4a5881b: Pull complete b9fc416556b6: Pull complete f7413e2a9aab: Pull complete e585362811e2: Pull complete e06c8af00d12: Pull complete Digest: sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897 Status: Downloaded newer image for ocaml/opam@sha256:a4d70502982a3e7beccb27eb01aac4196e3ec2a175c2784cf99423d876367897 2025-11-26 15:35.56 ---> using "cfee2dbb7c3b53094b10ce8a6a5511cb63fae7bc2641f5dd3c4ab8f4ce94702d" from cache /: (comment debian-13-4.13_opam-2.4) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam")) 2025-11-26 15:35.56 ---> using "9158c2a1eded196c6b2588085476f3222a8ab152b4cb5015d1d9a886577c8a64" 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. 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. Continue? [Y/n] y Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2025-11-26 15:35.56 ---> using "0bae906eedfec94fadb86e1149d9d9c3630717641a1ebf839d277d614fb0ab4b" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-134-generic The OCaml toplevel, version 4.13.1 2.4.1 2025-11-26 15:35.56 ---> using "417ae334501a4ab642a2dcbe5bab80c2ddf8e8f7b2e6c1978712544465abcaf9" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-11-26 15:35.56 ---> using "b1e1ff634f284116085c4c2c0e7d0f6f50d5f4a8af066048dba5788f1b6a08fc" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 8a324a5b9945e0e515da441ede437f3756caa83d || git fetch origin master) && git reset -q --hard 8a324a5b9945e0e515da441ede437f3756caa83d && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 21f97b2e6d..cdece73aa3 master -> origin/master 8a324a5b99 Add: cmdliner.2.1.0 (#28962) <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [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.4.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) 2025-11-26 15:35.56 ---> using "9c8952c1ab612b0dcef4e87b0db3efc12d543f9790329b5de365e87696a588d5" from cache /src: (copy (src uri.opam uri-sexp.opam uri-re.opam uri-bench.opam) (dst ./)) 2025-11-26 15:35.57 ---> saved as "22b2345cd018e76d5fad1237da12a514faa5a1be857f00152408ece9e2306225" /src: (run (network host) (shell "opam pin add -yn uri.dev './' && \ \nopam pin add -yn uri-sexp.dev './' && \ \nopam pin add -yn uri-re.dev './' && \ \nopam pin add -yn uri-bench.dev './'")) [uri.dev] synchronised (file:///src) uri is now pinned to file:///src (version dev) [uri-sexp.dev] synchronised (file:///src) uri-sexp is now pinned to file:///src (version dev) [uri-re.dev] synchronised (file:///src) uri-re is now pinned to file:///src (version dev) [uri-bench.dev] synchronised (file:///src) uri-bench is now pinned to file:///src (version dev) 2025-11-26 15:36.08 ---> saved as "d5973495ae19e1d26bbb300e9695f0ca56991331dea04263194e58ae4ce96e51" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-11-26 15:36.09 ---> saved as "c6d8ab17e3568bf6b7c67d799da7372f49139054b64a4d0d3c6771dadda344c5" /src: (env DEPS "afl-persistent.1.4 angstrom.0.16.1 base.v0.15.1 base-bigarray.base base-threads.base base-unix.base base_bigstring.v0.15.0 base_quickcheck.v0.15.0 bigstringaf.0.10.0 bin_prot.v0.15.0 cmdliner.2.1.0 core.v0.15.1 core_bench.v0.15.0 core_kernel.v0.15.0 core_unix.v0.15.2 crowbar.0.2.2 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 expect_test_helpers_core.v0.15.0 fieldslib.v0.15.0 int_repr.v0.15.0 jane-street-headers.v0.15.0 jst-config.v0.15.1 num.1.6 ocaml.4.13.1 ocaml-base-compiler.4.13.1 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.15.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ounit2.2.2.7 parsexp.v0.15.0 ppx_assert.v0.15.0 ppx_base.v0.15.0 ppx_bench.v0.15.1 ppx_bin_prot.v0.15.0 ppx_cold.v0.15.0 ppx_compare.v0.15.0 ppx_custom_printf.v0.15.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.15.0 ppx_enumerate.v0.15.0 ppx_expect.v0.15.1 ppx_fields_conv.v0.15.0 ppx_fixed_literal.v0.15.0 ppx_hash.v0.15.0 ppx_here.v0.15.0 ppx_ignore_instrumentation.v0.15.0 ppx_inline_test.v0.15.1 ppx_jane.v0.15.0 ppx_let.v0.15.0 ppx_log.v0.15.0 ppx_module_timer.v0.15.0 ppx_optcomp.v0.15.0 ppx_optional.v0.15.0 ppx_pipebang.v0.15.0 ppx_sexp_conv.v0.15.1 ppx_sexp_message.v0.15.0 ppx_sexp_value.v0.15.0 ppx_stable.v0.15.0 ppx_string.v0.15.0 ppx_typerep_conv.v0.15.0 ppx_variants_conv.v0.15.0 ppxlib.0.35.0 re.1.14.0 seq.base sexp_pretty.v0.15.1 sexplib.v0.15.1 sexplib0.v0.15.1 spawn.v0.17.0 splittable_random.v0.15.0 stdio.v0.15.0 stdlib-shims.0.3.0 stringext.1.6.0 textutils.v0.15.0 textutils_kernel.v0.15.0 time_now.v0.15.0 timezone.v0.15.0 topkg.1.1.1 typerep.v0.15.0 uutf.1.0.4 variantslib.v0.15.0") /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.4 --depext-only -y uri.dev uri-sexp.dev uri-re.dev uri-bench.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Get:1 http://deb.debian.org/debian trixie InRelease [140 kB] - Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB] - Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB] - Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9670 kB] - Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [72.1 kB] - Fetched 9973 kB in 2s (4934 kB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [uri.dev] synchronised (file:///src) [uri-bench.dev] synchronised (file:///src) [uri-re.dev] synchronised (file:///src) [uri-sexp.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.13.1). [NOTE] Package ocaml is already installed (current version is 4.13.1). [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). 2025-11-26 15:36.35 ---> saved as "4dbd31128f434114c0ee7d4c5051015d4c2e3dba1ab21fcab2a844f1373c1eb1" /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.13.1). [NOTE] Package ocaml is already installed (current version is 4.13.1). [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 79 packages - install afl-persistent 1.4 - install angstrom 0.16.1 - install base v0.15.1 - install base_bigstring v0.15.0 - install base_quickcheck v0.15.0 - install bigstringaf 0.10.0 - install bin_prot v0.15.0 - install cmdliner 2.1.0 - install core v0.15.1 - install core_bench v0.15.0 - install core_kernel v0.15.0 - install core_unix v0.15.2 - install crowbar 0.2.2 - install csexp 1.5.2 - install dune 3.20.2 - install dune-configurator 3.20.2 - install expect_test_helpers_core v0.15.0 - install fieldslib v0.15.0 - install int_repr v0.15.0 - install jane-street-headers v0.15.0 - install jst-config v0.15.1 - install num 1.6 - install ocaml-compiler-libs v0.12.4 - install ocaml-syntax-shims 1.0.0 - install ocaml_intrinsics v0.15.2 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ounit2 2.2.7 - install parsexp v0.15.0 - install ppx_assert v0.15.0 - install ppx_base v0.15.0 - install ppx_bench v0.15.1 - install ppx_bin_prot v0.15.0 - install ppx_cold v0.15.0 - install ppx_compare v0.15.0 - install ppx_custom_printf v0.15.0 - install ppx_derivers 1.2.1 - install ppx_disable_unused_warnings v0.15.0 - install ppx_enumerate v0.15.0 - install ppx_expect v0.15.1 - install ppx_fields_conv v0.15.0 - install ppx_fixed_literal v0.15.0 - install ppx_hash v0.15.0 - install ppx_here v0.15.0 - install ppx_ignore_instrumentation v0.15.0 - install ppx_inline_test v0.15.1 - install ppx_jane v0.15.0 - install ppx_let v0.15.0 - install ppx_log v0.15.0 - install ppx_module_timer v0.15.0 - install ppx_optcomp v0.15.0 - install ppx_optional v0.15.0 - install ppx_pipebang v0.15.0 - install ppx_sexp_conv v0.15.1 - install ppx_sexp_message v0.15.0 - install ppx_sexp_value v0.15.0 - install ppx_stable v0.15.0 - install ppx_string v0.15.0 - install ppx_typerep_conv v0.15.0 - install ppx_variants_conv v0.15.0 - install ppxlib 0.35.0 - install re 1.14.0 - install seq base - install sexp_pretty v0.15.1 - install sexplib v0.15.1 - install sexplib0 v0.15.1 - install spawn v0.17.0 - install splittable_random v0.15.0 - install stdio v0.15.0 - install stdlib-shims 0.3.0 - install stringext 1.6.0 - install textutils v0.15.0 - install textutils_kernel v0.15.0 - install time_now v0.15.0 - install timezone v0.15.0 - install topkg 1.1.1 - install typerep v0.15.0 - install uutf 1.0.4 - install variantslib v0.15.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved afl-persistent.1.4 (cached) -> retrieved angstrom.0.16.1 (cached) -> retrieved base.v0.15.1 (cached) -> retrieved base_bigstring.v0.15.0 (cached) -> retrieved base_quickcheck.v0.15.0 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved bin_prot.v0.15.0 (cached) -> retrieved cmdliner.2.1.0 (cached) -> retrieved core.v0.15.1 (cached) -> retrieved core_bench.v0.15.0 (cached) -> retrieved core_kernel.v0.15.0 (cached) -> retrieved core_unix.v0.15.2 (cached) -> retrieved crowbar.0.2.2 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved expect_test_helpers_core.v0.15.0 (cached) -> retrieved fieldslib.v0.15.0 (cached) -> retrieved int_repr.v0.15.0 (cached) -> retrieved jane-street-headers.v0.15.0 (cached) -> retrieved jst-config.v0.15.1 (cached) -> retrieved num.1.6 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocaml_intrinsics.v0.15.2 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ounit2.2.2.7 (cached) -> retrieved parsexp.v0.15.0 (cached) -> retrieved ppx_assert.v0.15.0 (cached) -> retrieved ppx_base.v0.15.0 (cached) -> retrieved ppx_bench.v0.15.1 (cached) -> retrieved ppx_bin_prot.v0.15.0 (cached) -> retrieved ppx_cold.v0.15.0 (cached) -> retrieved ppx_compare.v0.15.0 (cached) -> retrieved ppx_custom_printf.v0.15.0 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_disable_unused_warnings.v0.15.0 (cached) -> retrieved ppx_enumerate.v0.15.0 (cached) -> retrieved ppx_expect.v0.15.1 (cached) -> retrieved ppx_fields_conv.v0.15.0 (cached) -> retrieved ppx_fixed_literal.v0.15.0 (cached) -> retrieved ppx_hash.v0.15.0 (cached) -> retrieved ppx_here.v0.15.0 (cached) -> retrieved ppx_ignore_instrumentation.v0.15.0 (cached) -> retrieved ppx_inline_test.v0.15.1 (cached) -> retrieved ppx_jane.v0.15.0 (cached) -> retrieved ppx_let.v0.15.0 (cached) -> retrieved ppx_log.v0.15.0 (cached) -> retrieved ppx_module_timer.v0.15.0 (cached) -> retrieved ppx_optcomp.v0.15.0 (cached) -> retrieved ppx_optional.v0.15.0 (cached) -> retrieved ppx_pipebang.v0.15.0 (cached) -> retrieved ppx_sexp_conv.v0.15.1 (cached) -> retrieved ppx_sexp_message.v0.15.0 (cached) -> retrieved ppx_sexp_value.v0.15.0 (cached) -> retrieved ppx_stable.v0.15.0 (cached) -> retrieved ppx_string.v0.15.0 (cached) -> retrieved ppx_typerep_conv.v0.15.0 (cached) -> retrieved ppx_variants_conv.v0.15.0 (cached) -> retrieved re.1.14.0 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved sexp_pretty.v0.15.1 (cached) -> retrieved sexplib.v0.15.1 (cached) -> retrieved sexplib0.v0.15.1 (cached) -> retrieved spawn.v0.17.0 (cached) -> retrieved splittable_random.v0.15.0 (cached) -> retrieved stdio.v0.15.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved stringext.1.6.0 (cached) -> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached) -> installed num.1.6 -> retrieved ppxlib.0.35.0 (cached) -> retrieved textutils.v0.15.0 (cached) -> retrieved textutils_kernel.v0.15.0 (cached) -> retrieved time_now.v0.15.0 (cached) -> retrieved timezone.v0.15.0 (cached) -> retrieved typerep.v0.15.0 (cached) -> retrieved uutf.1.0.4 (cached) -> retrieved variantslib.v0.15.0 (cached) -> retrieved topkg.1.1.1 (cached) -> installed cmdliner.2.1.0 -> installed ocamlbuild.0.16.1 -> installed ocamlfind.1.9.8 -> installed topkg.1.1.1 -> installed uutf.1.0.4 -> installed dune.3.20.2 -> installed jane-street-headers.v0.15.0 -> installed afl-persistent.1.4 -> installed csexp.1.5.2 -> installed ocaml-syntax-shims.1.0.0 -> installed ocaml-compiler-libs.v0.12.4 -> installed ppx_derivers.1.2.1 -> installed sexplib0.v0.15.1 -> installed spawn.v0.17.0 -> installed stdlib-shims.0.3.0 -> installed stringext.1.6.0 -> installed crowbar.0.2.2 -> installed re.1.14.0 -> installed ounit2.2.2.7 -> installed dune-configurator.3.20.2 -> installed bigstringaf.0.10.0 -> installed angstrom.0.16.1 -> installed ocaml_intrinsics.v0.15.2 -> installed base.v0.15.1 -> installed fieldslib.v0.15.0 -> installed variantslib.v0.15.0 -> installed stdio.v0.15.0 -> installed typerep.v0.15.0 -> installed parsexp.v0.15.0 -> installed sexplib.v0.15.1 -> installed ppxlib.0.35.0 -> installed ppx_disable_unused_warnings.v0.15.0 -> installed ppx_optcomp.v0.15.0 -> installed ppx_typerep_conv.v0.15.0 -> installed ppx_cold.v0.15.0 -> installed ppx_enumerate.v0.15.0 -> installed ppx_here.v0.15.0 -> installed ppx_stable.v0.15.0 -> installed ppx_variants_conv.v0.15.0 -> installed ppx_fields_conv.v0.15.0 -> installed ppx_compare.v0.15.0 -> installed ppx_pipebang.v0.15.0 -> installed ppx_fixed_literal.v0.15.0 -> installed ppx_ignore_instrumentation.v0.15.0 -> installed ppx_optional.v0.15.0 -> installed ppx_sexp_conv.v0.15.1 -> installed ppx_let.v0.15.0 -> installed ppx_hash.v0.15.0 -> installed ppx_assert.v0.15.0 -> installed ppx_sexp_value.v0.15.0 -> installed ppx_sexp_message.v0.15.0 -> installed ppx_base.v0.15.0 -> installed ppx_custom_printf.v0.15.0 -> installed jst-config.v0.15.1 -> installed ppx_log.v0.15.0 -> installed sexp_pretty.v0.15.1 -> installed ppx_string.v0.15.0 -> installed bin_prot.v0.15.0 -> installed time_now.v0.15.0 -> installed ppx_bin_prot.v0.15.0 -> installed ppx_module_timer.v0.15.0 -> installed ppx_inline_test.v0.15.1 -> installed ppx_bench.v0.15.1 -> installed ppx_expect.v0.15.1 -> installed splittable_random.v0.15.0 -> installed base_quickcheck.v0.15.0 -> installed ppx_jane.v0.15.0 -> installed int_repr.v0.15.0 -> installed base_bigstring.v0.15.0 -> installed core.v0.15.1 -> installed textutils_kernel.v0.15.0 -> installed timezone.v0.15.0 -> installed expect_test_helpers_core.v0.15.0 -> installed core_kernel.v0.15.0 -> installed core_unix.v0.15.2 -> installed textutils.v0.15.0 -> installed core_bench.v0.15.0 Done. <><> afl-persistent.1.4 installed successfully ><><><><><><><><><><><><><><><><> => afl-persistent is installed, but since the current OCaml compiler does not enable AFL instrumentation by default, most packages will not be instrumented and fuzzing with afl-fuzz may not be effective. To globally enable AFL instrumentation, create an OCaml switch like: opam switch create 4.13.1+afl ocaml-variants.4.13.1+options ocaml-option-afl # To update the current shell environment, run: eval $(opam env) 2025-11-26 15:42.52 ---> saved as "65bb2d9cbf3ad775fa4aed525233b784ac6f7ccc9c0ee9ad2aa0a9d195564f5a" /src: (copy (src .) (dst /src)) 2025-11-26 15:42.52 ---> saved as "d14e391b5c9b4d2c4cacf0288d8711cd8a63b02facedd89ff44e943c9f64667c" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) File "benchmarks/dune", line 2, characters 8-17: 2 | (names benchmark) ^^^^^^^^^ (cd _build/default && /home/opam/.opam/4.13/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 -o benchmarks/benchmark.exe /home/opam/.opam/4.13/lib/stringext/stringext.cmxa /home/opam/.opam/4.13/lib/bigstringaf/bigstringaf.cmxa -I /home/opam/.opam/4.13/lib/bigstringaf /home/opam/.opam/4.13/lib/angstrom/angstrom.cmxa lib/uri.cmxa /home/opam/.opam/4.13/lib/base/base_internalhash_types/base_internalhash_types.cmxa -I /home/opam/.opam/4.13/lib/base/base_internalhash_types /home/opam/.opam/4.13/lib/base/caml/caml.cmxa /home/opam/.opam/4.13/lib/sexplib0/sexplib0.cmxa /home/opam/.opam/4.13/lib/base/shadow_stdlib/shadow_stdlib.cmxa /home/opam/.opam/4.13/lib/base/base.cmxa -I /home/opam/.opam/4.13/lib/base /home/opam/.opam/4.13/lib/ppx_sexp_conv/runtime-lib/ppx_sexp_conv_lib.cmxa /home/opam/.opam/4.13/lib/ppx_compare/runtime-lib/ppx_compare_lib.cmxa /home/opam/.opam/4.13/lib/ppx_enumerate/runtime-lib/ppx_enumerate_lib.cmxa /home/opam/.opam/4.13/lib/ppx_hash/runtime-lib/ppx_hash_lib.cmxa /home/opam/.opam/4.13/lib/ppx_here/runtime-lib/ppx_here_lib.cmxa /home/opam/.opam/4.13/lib/ppx_assert/runtime-lib/ppx_assert_lib.cmxa /home/opam/.opam/4.13/lib/ppx_bench/runtime-lib/ppx_bench_lib.cmxa /home/opam/.opam/4.13/lib/base/md5/md5_lib.cmxa /home/opam/.opam/4.13/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.13/lib/ocaml /home/opam/.opam/4.13/lib/ocaml/bigarray.cmxa -I /home/opam/.opam/4.13/lib/ocaml /home/opam/.opam/4.13/lib/fieldslib/fieldslib.cmxa /home/opam/.opam/4.13/lib/variantslib/variantslib.cmxa /home/opam/.opam/4.13/lib/bin_prot/shape/bin_shape_lib.cmxa /home/opam/.opam/4.13/lib/bin_prot/bin_prot.cmxa -I /home/opam/.opam/4.13/lib/bin_prot /home/opam/.opam/4.13/lib/ppx_inline_test/config/inline_test_config.cmxa /home/opam/.opam/4.13/lib/jane-street-headers/jane_street_headers.cmxa /home/opam/.opam/4.13/lib/time_now/time_now.cmxa -I /home/opam/.opam/4.13/lib/time_now /home/opam/.opam/4.13/lib/ppx_inline_test/runtime-lib/ppx_inline_test_lib.cmxa /home/opam/.opam/4.13/lib/stdio/stdio.cmxa /home/opam/.opam/4.13/lib/ppx_module_timer/runtime/ppx_module_timer_runtime.cmxa /home/opam/.opam/4.13/lib/typerep/typerep_lib.cmxa /home/opam/.opam/4.13/lib/ppx_expect/common/expect_test_common.cmxa /home/opam/.opam/4.13/lib/ppx_expect/config_types/expect_test_config_types.cmxa /home/opam/.opam/4.13/lib/ppx_expect/collector/expect_test_collector.cmxa -I /home/opam/.opam/4.13/lib/ppx_expect/collector /home/opam/.opam/4.13/lib/ppx_expect/config/expect_test_config.cmxa /home/opam/.opam/4.13/lib/parsexp/parsexp.cmxa /home/opam/.opam/4.13/lib/sexplib/sexplib.cmxa /home/opam/.opam/4.13/lib/ppx_log/types/ppx_log_types.cmxa /home/opam/.opam/4.13/lib/splittable_random/splittable_random.cmxa /home/opam/.opam/4.13/lib/base_quickcheck/base_quickcheck.cmxa /home/opam/.opam/4.13/lib/base_quickcheck/ppx_quickcheck/runtime/ppx_quickcheck_runtime.cmxa /home/opam/.opam/4.13/lib/int_repr/int_repr.cmxa /home/opam/.opam/4.13/lib/base_bigstring/base_bigstring.cmxa -I /home/opam/.opam/4.13/lib/base_bigstring /home/opam/.opam/4.13/lib/core/base_for_tests/base_for_tests.cmxa /home/opam/.opam/4.13/lib/core/validate/validate.cmxa /home/opam/.opam/4.13/lib/core/core.cmxa -I /home/opam/.opam/4.13/lib/core /home/opam/.opam/4.13/lib/core_kernel/ansi_kernel/ansi_kernel.cmxa /home/opam/.opam/4.13/lib/core_kernel/bounded_int_table/bounded_int_table.cmxa /home/opam/.opam/4.13/lib/ocaml/threads/threads.cmxa -I /home/opam/.opam/4.13/lib/ocaml /home/opam/.opam/4.13/lib/core_kernel/caml_threads/caml_threads.cmxa /home/opam/.opam/4.13/lib/core_kernel/caml_unix/caml_unix.cmxa /home/opam/.opam/4.13/lib/core_unix/signal_unix/signal_unix.cmxa -I /home/opam/.opam/4.13/lib/core_unix/signal_unix /home/opam/.opam/4.13/lib/core_unix/core_thread/core_thread.cmxa -I /home/opam/.opam/4.13/lib/core_unix/core_thread /home/opam/.opam/4.13/lib/core_unix/sys_unix/sys_unix.cmxa -I /home/opam/.opam/4.13/lib/core_unix/sys_unix /home/opam/.opam/4.13/lib/core_unix/filename_unix/filename_unix.cmxa -I /home/opam/.opam/4.13/lib/core_unix/filename_unix /home/opam/.opam/4.13/lib/core_unix/error_checking_mutex/error_checking_mutex.cmxa -I /home/opam/.opam/4.13/lib/core_unix/error_checking_mutex /home/opam/.opam/4.13/lib/core_kernel/flags/flags.cmxa /home/opam/.opam/4.13/lib/sexplib/unix/sexplib_unix.cmxa /home/opam/.opam/4.13/lib/spawn/spawn.cmxa -I /home/opam/.opam/4.13/lib/spawn /home/opam/.opam/4.13/lib/core_unix/core_unix.cmxa -I /home/opam/.opam/4.13/lib/core_unix /home/opam/.opam/4.13/lib/timezone/timezone.cmxa /home/opam/.opam/4.13/lib/core_unix/time_unix/time_unix.cmxa /home/opam/.opam/4.13/lib/core_unix/time_ns_unix/time_ns_unix.cmxa /home/opam/.opam/4.13/lib/core_unix/linux_ext/linux_ext.cmxa -I /home/opam/.opam/4.13/lib/core_unix/linux_ext /home/opam/.opam/4.13/lib/textutils/console/console.cmxa /home/opam/.opam/4.13/lib/uutf/uutf.cmxa /home/opam/.opam/4.13/lib/textutils_kernel/utf8_text/utf8_text.cmxa /home/opam/.opam/4.13/lib/textutils/ascii_table_kernel/ascii_table_kernel.cmxa /home/opam/.opam/4.13/lib/textutils/ascii_table/ascii_table.cmxa /home/opam/.opam/4.13/lib/core_kernel/version_util/version_util.cmxa -I /home/opam/.opam/4.13/lib/core_kernel/version_util /home/opam/.opam/4.13/lib/core_bench/internals/core_bench_internals.cmxa /home/opam/.opam/4.13/lib/ocaml_intrinsics/ocaml_intrinsics.cmxa -I /home/opam/.opam/4.13/lib/ocaml_intrinsics /home/opam/.opam/4.13/lib/core_unix/time_stamp_counter/time_stamp_counter.cmxa -I /home/opam/.opam/4.13/lib/core_unix/time_stamp_counter /home/opam/.opam/4.13/lib/core_bench/core_bench.cmxa /home/opam/.opam/4.13/lib/core_unix/command_unix/command_unix.cmxa benchmarks/.benchmark.eobjs/native/benchmark.cmx) /usr/bin/ld: /home/opam/.opam/4.13/lib/core_unix/linux_ext/linux_ext.a(linux_ext.o): in function `camlLinux_ext__sched_setaffinity_this_thread_92030': /home/opam/.opam/4.13/.opam-switch/build/core_unix.v0.15.2/_build/default/linux_ext/src/linux_ext.ml:830:(.text+0x5260): undefined reference to `core_unix_gettid' /usr/bin/ld: /home/opam/.opam/4.13/lib/core_unix/linux_ext/linux_ext.a(linux_ext.o): in function `camlLinux_ext__1': :(.data+0x4300): undefined reference to `core_unix_gettid' collect2: error: ld returned 1 exit status File "caml_startup", line 1: Error: Error during linking (exit code 1) (cd _build/default/lib_test && ./test_runner.exe) ...................................................................................................................................................................................................................................................................................... Ran: 278 tests in: 0.51 seconds. OK (cd _build/default/lib_test && ./test_runner_sexp.exe) ... Ran: 3 tests in: 0.04 seconds. OK (cd _build/default/fuzz && ./fuzz.exe) create: PASS query: PASS scheme: PASS host: PASS userinfo: PASS port: PASS "/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1 2025-11-26 15:43.00: Job failed: Failed: Build failed