2026-04-18 06:27.52: New job: test mirage/alcotest https://github.com/mirage/alcotest.git#refs/pull/435/head (0aae100ded383a4598ea82383dc4b6539e3977fe) (linux-x86_64:opensuse-15.6-5.4_opam-2.5)Base: ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745Opam project buildTo reproduce locally:git clone --recursive "https://github.com/mirage/alcotest.git" && cd "alcotest" && git fetch origin "refs/pull/435/head" && git reset --hard 0aae100dcat > Dockerfile <<'END-OF-DOCKERFILE'FROM ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745# opensuse-15.6-5.4_opam-2.5USER 1000:1000ENV CLICOLOR_FORCE="1"ENV OPAMCOLOR="always"WORKDIR /srcRUN sudo ln -f /usr/bin/opam-2.5 /usr/bin/opamRUN opam init --reinit -niRUN uname -rs && opam exec -- ocaml -version && opam --versionWORKDIR /srcRUN sudo chown opam /srcRUN cd ~/opam-repository && (git cat-file -e d78d992b37e877fcbf807cdf22e0013f4b79b8fb || git fetch origin master) && git reset -q --hard d78d992b37e877fcbf807cdf22e0013f4b79b8fb && git log --no-decorate -n1 --oneline && opam update -uCOPY --chown=1000:1000 alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam ./RUN opam pin add -yn alcotest.dev './' && \opam pin add -yn alcotest-mirage.dev './' && \opam pin add -yn alcotest-lwt.dev './' && \opam pin add -yn alcotest-js.dev './' && \opam pin add -yn alcotest-async.dev './'RUN echo '(lang dune 3.0)' > './dune-project'ENV DEPS="astring.0.8.5 async.v0.17.0 async_kernel.v0.17.0 async_log.v0.17.0 async_rpc_kernel.v0.17.0 async_unix.v0.17.0 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base_bigstring.v0.17.0 base_quickcheck.v0.17.1 bin_prot.v0.17.0-1 capitalization.v0.17.0 cmdliner.2.1.0 conf-npm.1 core.v0.17.2 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.22.2 dune-configurator.3.22.2 duration.0.3.0 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 fmt.0.11.0 gel.v0.17.0 gen.1.1 int_repr.v0.17.0 jane-street-headers.v0.17.0 js_of_ocaml-compiler.6.3.2 jst-config.v0.17.0 logs.0.10.0 lwt.6.1.1 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 mirage-clock.4.2.0 num.1.6 ocaml.5.4.1 ocaml-base-compiler.5.4.1 ocaml-compiler.5.4.1 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.17.0 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.1 ppx_bin_prot.v0.17.1 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_custom_printf.v0.17.0 ppx_derivers.1.2.1 ppx_diff.v0.17.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.38.0 ppxlib_jane.v0.17.4 protocol_version_header.v0.17.0 re.1.14.0 sedlex.3.7 seq.base sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 textutils.v0.17.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.1 typerep.v0.17.1 uopt.v0.17.0 uutf.1.0.4 variantslib.v0.17.0 yojson.3.0.0"ENV CI="true"ENV OCAMLCI="true"RUN opam update --depexts && opam install --cli=2.5 --depext-only -y alcotest.dev alcotest-mirage.dev alcotest-lwt.dev alcotest-js.dev alcotest-async.dev $DEPSRUN opam install $DEPSCOPY --chown=1000:1000 . /srcRUN opam exec -- dune build @install @check @runtest && rm -rf _buildEND-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2026-04-18 06:27.52: Using cache hint "mirage/alcotest-ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745-opensuse-15.6-5.4_opam-2.5-5207e4df7542ca9123a99de3d737d318"2026-04-18 06:27.52: Using OBuilder spec:((from ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745)(comment opensuse-15.6-5.4_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 d78d992b37e877fcbf807cdf22e0013f4b79b8fb || git fetch origin master) && git reset -q --hard d78d992b37e877fcbf807cdf22e0013f4b79b8fb && git log --no-decorate -n1 --oneline && opam update -u"))(copy (src alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam)(dst ./))(run (network host)(shell "opam pin add -yn alcotest.dev './' && \\nopam pin add -yn alcotest-mirage.dev './' && \\nopam pin add -yn alcotest-lwt.dev './' && \\nopam pin add -yn alcotest-js.dev './' && \\nopam pin add -yn alcotest-async.dev './'"))(run (shell "echo '(lang dune 3.0)' > './dune-project'"))(env DEPS "astring.0.8.5 async.v0.17.0 async_kernel.v0.17.0 async_log.v0.17.0 async_rpc_kernel.v0.17.0 async_unix.v0.17.0 base.v0.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base base_bigstring.v0.17.0 base_quickcheck.v0.17.1 bin_prot.v0.17.0-1 capitalization.v0.17.0 cmdliner.2.1.0 conf-npm.1 core.v0.17.2 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 cstruct.6.2.0 dune.3.22.2 dune-configurator.3.22.2 duration.0.3.0 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 fmt.0.11.0 gel.v0.17.0 gen.1.1 int_repr.v0.17.0 jane-street-headers.v0.17.0 js_of_ocaml-compiler.6.3.2 jst-config.v0.17.0 logs.0.10.0 lwt.6.1.1 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 mirage-clock.4.2.0 num.1.6 ocaml.5.4.1 ocaml-base-compiler.5.4.1 ocaml-compiler.5.4.1 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.17.0 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.1 ppx_bin_prot.v0.17.1 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_custom_printf.v0.17.0 ppx_derivers.1.2.1 ppx_diff.v0.17.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.38.0 ppxlib_jane.v0.17.4 protocol_version_header.v0.17.0 re.1.14.0 sedlex.3.7 seq.base sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 textutils.v0.17.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.1 typerep.v0.17.1 uopt.v0.17.0 uutf.1.0.4 variantslib.v0.17.0 yojson.3.0.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.5 --depext-only -y alcotest.dev alcotest-mirage.dev alcotest-lwt.dev alcotest-js.dev alcotest-async.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-04-18 06:27.52: Waiting for resource in pool OCluster2026-04-18 06:27.52: Waiting for worker…2026-04-18 06:35.52: Got resource from pool OClusterBuilding on phoebe.caelum.ci.devAll commits already cachedHEAD is now at 0aae100 Add uchar testable(from ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745)Unable to find image 'ocaml/opam:opensuse-15.6-ocaml-5.4@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745' locallydocker.io/ocaml/opam@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745: Pulling from ocaml/opam2824220eb759: Already existsd6e0f6bf3ee8: Already exists98ea95f8982c: Already exists66c4e2d11417: Already exists178bf13c4542: Already exists3363b6690622: Already exists2f360ed5ed1c: Already exists0157dc55738d: Already existsadbd7b083662: Already exists08da4b8ec306: Already exists2d08af6962f0: Already exists0eb7579d9e49: Already existsa469e6a3633d: Already exists82c744fdb18a: Already exists36b9f578dfd0: Already exists67e235ccb630: Already exists054af01a93fc: Already existse8dd567f0fce: Already existse8dd567f0fce: Already exists4f4fb700ef54: Already exists95a8dc77b77e: Already existscc10f5cb66cf: Already existsc6967ed40884: Already exists86261b212eac: Already existsc593fa27ed82: Already exists327409bbc709: Already exists68843b0965c1: Already exists1dce24306ea4: Already existsd41b89be77dc: Already existsa847491754f8: Already exists2ba6e682b334: Already exists88783f87eac5: Already exists94a228a5ee2b: Already existseffccec7e4d4: Already exists2f4d54523759: Already existsc433d8fc16c8: Already existse8dea40a6ae6: Already exists5be5b25f37bd: Already exists8a320261bc75: Pulling fs layerf36d6c98cb79: Pulling fs layer48745103a26a: Pulling fs layer2c60e853f538: Pulling fs layer303d675deef6: Pulling fs layer2c60e853f538: Waiting10d6d5991602: Pulling fs layer303d675deef6: Waiting10d6d5991602: Waiting49510a9bffbc: Pulling fs layer49510a9bffbc: Waiting8a320261bc75: Download complete8a320261bc75: Pull completef36d6c98cb79: Verifying Checksumf36d6c98cb79: Download completef36d6c98cb79: Pull complete303d675deef6: Download complete10d6d5991602: Verifying Checksum10d6d5991602: Download complete48745103a26a: Verifying Checksum48745103a26a: Download complete48745103a26a: Pull complete49510a9bffbc: Verifying Checksum49510a9bffbc: Download complete2c60e853f538: Verifying Checksum2c60e853f538: Download complete2c60e853f538: Pull complete303d675deef6: Pull complete10d6d5991602: Pull complete49510a9bffbc: Pull completeDigest: sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc6745Status: Downloaded newer image for ocaml/opam@sha256:40e86c2b4445dd7c40b427d465672f4f0d7e5e6d40b5e43edf29b930a4cc67452026-04-18 06:35.52 ---> using "5a3680208c73beb3331771a2f7c7cfa44299220a0d1ff13e680cdae5b80bdaf8" from cache/: (comment opensuse-15.6-5.4_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-04-18 06:35.52 ---> using "463c319ef5be82dadb4076ef7cbdb1657274c5987ad974c76f4520c6671653ad" 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] yFormat upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] Initialised2026-04-18 06:35.52 ---> using "78bb359f9aafa4629dc59de13b9deb4bc92d380688527008853d4cbf7d329c49" from cache/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Linux 6.8.0-107-genericThe OCaml toplevel, version 5.4.12.5.02026-04-18 06:35.52 ---> using "f6fc4b12b0418b37aa6f9f032abf9c0881c3fa85253a420db64176a4057fa51e" from cache/src: (workdir /src)/src: (run (shell "sudo chown opam /src"))2026-04-18 06:35.52 ---> using "1b29546a3142f107d43752c85d792b294550aa31a3a2bc5277f7fff61f0aa274" from cache/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "cd ~/opam-repository && (git cat-file -e d78d992b37e877fcbf807cdf22e0013f4b79b8fb || git fetch origin master) && git reset -q --hard d78d992b37e877fcbf807cdf22e0013f4b79b8fb && git log --no-decorate -n1 --oneline && opam update -u"))From https://github.com/ocaml/opam-repository* branch master -> FETCH_HEAD42844088d7..d78d992b37 master -> origin/masterd78d992b37 Merge pull request #29739 from janestreet/core.v0.17.2-available-arch-arm32<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///home/opam/opam-repositorydefault (at git+file:///home/opam/opam-repository):[WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)default (at git+file:///home/opam/opam-repository):[INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)Everything as up-to-date as possibleHowever, 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-04-18 06:35.52 ---> using "772d1fa5a58460c3e0ab14953b2117f7112eeff8573049adc58fc4b7e7ce8e77" from cache/src: (copy (src alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam)(dst ./))tar: src/./alcotest.opam: Cannot open: No such file or directorytar: src/./alcotest-mirage.opam: Cannot open: No such file or directorytar: src/./alcotest-lwt.opam: Cannot open: No such file or directorytar: src/./alcotest-js.opam: Cannot open: No such file or directorytar: src/./alcotest-async.opam: Cannot open: No such file or directorytar: Exiting with failure status due to previous errors"tar" "-xf" "-" failed with exit status 22026-04-18 06:35.53: Job failed: Failed: Build failed