2026-01-03 08:43.03: New job: test mbarbin/cmdlang https://github.com/mbarbin/cmdlang.git#refs/heads/main (90970f793bbdc848d64b87d50cf3ff0df4fa576c) (linux-x86_64:debian-13-5.1_opam-2.4) Base: ocaml/opam:debian-13-ocaml-5.1@sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/cmdlang.git" -b "main" && cd "cmdlang" && git reset --hard 90970f79 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-13-ocaml-5.1@sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b # debian-13-5.1_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 c65fcb116531ae66ad3316b265e233443ef25044 || git fetch origin master) && git reset -q --hard c65fcb116531ae66ad3316b265e233443ef25044 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 cmdlang.opam cmdlang-to-cmdliner.opam cmdlang-to-climate.opam cmdlang-to-base.opam cmdlang-tests.opam cmdlang-stdlib-runner.opam cmdlang-dev.opam ./ RUN opam pin add -yn cmdlang.dev './' && \ opam pin add -yn cmdlang-to-cmdliner.dev './' && \ opam pin add -yn cmdlang-to-climate.dev './' && \ opam pin add -yn cmdlang-to-base.dev './' && \ opam pin add -yn cmdlang-tests.dev './' && \ opam pin add -yn cmdlang-stdlib-runner.dev './' && \ opam pin add -yn cmdlang-dev.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="base-bigarray.base base-domains.base base-nnp.base base-threads.base base-unix.base climate.0.9.0 cmdliner.2.1.0 dune.3.20.2 ocaml.5.1.1 ocaml-base-compiler.5.1.1 ocaml-config.3 ocaml-options-vanilla.1" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --depext-only -y cmdlang.dev cmdlang-to-cmdliner.dev cmdlang-to-climate.dev cmdlang-stdlib-runner.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=cmdlang,cmdlang-to-cmdliner,cmdlang-to-climate,cmdlang-stdlib-runner @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2026-01-03 08:43.03: Using cache hint "mbarbin/cmdlang-ocaml/opam:debian-13-ocaml-5.1@sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b-debian-13-5.1_opam-2.4-ebbc318e65a98548825632803baaa342" 2026-01-03 08:43.03: Using OBuilder spec: ((from ocaml/opam:debian-13-ocaml-5.1@sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b) (comment debian-13-5.1_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 c65fcb116531ae66ad3316b265e233443ef25044 || git fetch origin master) && git reset -q --hard c65fcb116531ae66ad3316b265e233443ef25044 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src cmdlang.opam cmdlang-to-cmdliner.opam cmdlang-to-climate.opam cmdlang-to-base.opam cmdlang-tests.opam cmdlang-stdlib-runner.opam cmdlang-dev.opam) (dst ./)) (run (network host) (shell "opam pin add -yn cmdlang.dev './' && \ \nopam pin add -yn cmdlang-to-cmdliner.dev './' && \ \nopam pin add -yn cmdlang-to-climate.dev './' && \ \nopam pin add -yn cmdlang-to-base.dev './' && \ \nopam pin add -yn cmdlang-tests.dev './' && \ \nopam pin add -yn cmdlang-stdlib-runner.dev './' && \ \nopam pin add -yn cmdlang-dev.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "base-bigarray.base base-domains.base base-nnp.base base-threads.base base-unix.base climate.0.9.0 cmdliner.2.1.0 dune.3.20.2 ocaml.5.1.1 ocaml-base-compiler.5.1.1 ocaml-config.3 ocaml-options-vanilla.1") (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 cmdlang.dev cmdlang-to-cmdliner.dev cmdlang-to-climate.dev cmdlang-stdlib-runner.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 --only-packages=cmdlang,cmdlang-to-cmdliner,cmdlang-to-climate,cmdlang-stdlib-runner @install @check @runtest && rm -rf _build")) ) 2026-01-03 08:43.03: Waiting for resource in pool OCluster 2026-01-03 08:43.03: Waiting for worker… 2026-01-03 08:43.03: Got resource from pool OCluster Building on laodoke.caelum.ci.dev All commits already cached HEAD is now at 90970f7 Merge pull request #42 from mbarbin/upgrade-dunolint-preview (from ocaml/opam:debian-13-ocaml-5.1@sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b) Unable to find image 'ocaml/opam:debian-13-ocaml-5.1@sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b' locally docker.io/ocaml/opam@sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b: Pulling from ocaml/opam 2981f7e8980b: Already exists 9c63e1c4ba84: Already exists 02578b9c9f1b: Already exists 3801cb7ba5e6: Already exists 1c4cdedd39f1: Already exists 40f6006c5f5a: Already exists c451a17216ec: Already exists e4104b8f72ee: Already exists 7c7dbc5e7919: Already exists aa82be714e7c: Already exists 922520f12384: Already exists 9bfea042cef8: Already exists 1244979f7c21: Already exists 7583a0e34f94: Already exists 14bef3f2665a: Already exists 3a4b42ce6cb5: Already exists b0a08a900877: Already exists b0a08a900877: Already exists 16ac87e68d60: Already exists 74ac6e8c9b82: Already exists b41290a57dc5: Already exists 592e5bcb7159: Already exists 4f4fb700ef54: Already exists 1db0705661a3: Already exists 76bb8e35b9cc: Already exists 3bc9d98c3b49: Already exists 7096ef42e6c0: Already exists cd0e70de8125: Already exists 23ffab57f98e: Already exists b974353d8023: Already exists c74fba566723: Already exists 5ad399846f45: Already exists 3e7203fa3980: Already exists 0b8915d2a92b: Already exists e68c7a56c438: Already exists 9024d680a167: Already exists 3c7c73421b6e: Already exists 7134fa9b4278: Already exists 9d94fb523099: Already exists 20d06dbdae7e: Already exists b9a45e537661: Already exists a08a9a974983: Already exists 8924679c4512: Already exists 768c99fc4263: Already exists 96d373bbe3fd: Pulling fs layer c516698917d9: Pulling fs layer c7fc82c82e4d: Pulling fs layer aaadc8167a2c: Pulling fs layer aaadc8167a2c: Waiting c516698917d9: Verifying Checksum c516698917d9: Download complete c7fc82c82e4d: Verifying Checksum c7fc82c82e4d: Download complete aaadc8167a2c: Verifying Checksum aaadc8167a2c: Download complete 96d373bbe3fd: Verifying Checksum 96d373bbe3fd: Download complete 96d373bbe3fd: Pull complete c516698917d9: Pull complete c7fc82c82e4d: Pull complete aaadc8167a2c: Pull complete Digest: sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b Status: Downloaded newer image for ocaml/opam@sha256:fc1428e3cf55668b15f2dec716b8242a7ce1f86cfdaa6e8abdbf17b28957f45b 2026-01-03 08:43.04 ---> using "154ed83a2d2caac80a928640161c420a582b18cc24a24da825c8f42d9166e911" from cache /: (comment debian-13-5.1_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")) 2026-01-03 08:43.04 ---> using "455bfde36d3dfe3c2504fa09471a6fb13f1e3a5d1ca81ec293add1a8831c30d4" 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 2026-01-03 08:43.04 ---> using "0bce436739ab9642563661e90badc2e42d57d669e2c4704a1ba12d15c06d68e1" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-86-generic The OCaml toplevel, version 5.1.1 2.4.1 2026-01-03 08:43.04 ---> using "201878c894542a0245796caa18fdb6da4d27832f44332519c91253375c2a82e2" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2026-01-03 08:43.04 ---> using "af967366b3b65c67434ff31687b0a0a6560bdb533284512b2c6059a389ece08d" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e c65fcb116531ae66ad3316b265e233443ef25044 || git fetch origin master) && git reset -q --hard c65fcb116531ae66ad3316b265e233443ef25044 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD ee48e882f0..e3e2b0426d master -> origin/master c65fcb1165 Merge pull request #29080 from dra27/ocaml-config-urls <><> 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) 2026-01-03 08:43.04 ---> using "52f54813c839ce62203f41bd6cfecd7dfdcc8480c5e989bb1b32ebfb340fba7e" from cache /src: (copy (src cmdlang.opam cmdlang-to-cmdliner.opam cmdlang-to-climate.opam cmdlang-to-base.opam cmdlang-tests.opam cmdlang-stdlib-runner.opam cmdlang-dev.opam) (dst ./)) 2026-01-03 08:43.04 ---> using "8b7e7e3636539842ed0e1c79b0b7e5dd2d56a6312dc20b73d2548d247e0e1efb" from cache /src: (run (network host) (shell "opam pin add -yn cmdlang.dev './' && \ \nopam pin add -yn cmdlang-to-cmdliner.dev './' && \ \nopam pin add -yn cmdlang-to-climate.dev './' && \ \nopam pin add -yn cmdlang-to-base.dev './' && \ \nopam pin add -yn cmdlang-tests.dev './' && \ \nopam pin add -yn cmdlang-stdlib-runner.dev './' && \ \nopam pin add -yn cmdlang-dev.dev './'")) [cmdlang.dev] synchronised (file:///src) cmdlang is now pinned to file:///src (version dev) [cmdlang-to-cmdliner.dev] synchronised (file:///src) cmdlang-to-cmdliner is now pinned to file:///src (version dev) [cmdlang-to-climate.dev] synchronised (file:///src) cmdlang-to-climate is now pinned to file:///src (version dev) [cmdlang-to-base.dev] synchronised (file:///src) cmdlang-to-base is now pinned to file:///src (version dev) [NOTE] Package cmdlang-tests does not exist in opam repositories registered in the current switch. [cmdlang-tests.dev] synchronised (file:///src) cmdlang-tests is now pinned to file:///src (version dev) [cmdlang-stdlib-runner.dev] synchronised (file:///src) cmdlang-stdlib-runner is now pinned to file:///src (version dev) [NOTE] Package cmdlang-dev does not exist in opam repositories registered in the current switch. [cmdlang-dev.dev] synchronised (file:///src) cmdlang-dev is now pinned to file:///src (version dev) 2026-01-03 08:43.04 ---> using "50a1e79a6dfa8efec9d464b7ec802105d5e914f784c1f3b29df971088121076f" from cache /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2026-01-03 08:43.04 ---> using "900ae641d958e3ff48b6404acdb6fb4ae3d29e2dc2a7f674fa190983a13da78b" from cache /src: (env DEPS "base-bigarray.base base-domains.base base-nnp.base base-threads.base base-unix.base climate.0.9.0 cmdliner.2.1.0 dune.3.20.2 ocaml.5.1.1 ocaml-base-compiler.5.1.1 ocaml-config.3 ocaml-options-vanilla.1") /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 cmdlang.dev cmdlang-to-cmdliner.dev cmdlang-to-climate.dev cmdlang-stdlib-runner.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian trixie InRelease - 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-security trixie-security/main amd64 Packages [94.0 kB] - Fetched 185 kB in 0s (1669 kB/s) - Reading package lists... <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [cmdlang.dev] synchronised (file:///src) [cmdlang-stdlib-runner.dev] synchronised (file:///src) [cmdlang-to-climate.dev] synchronised (file:///src) [cmdlang-to-cmdliner.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-base-compiler is already installed (current version is 5.1.1). [NOTE] Package ocaml is already installed (current version is 5.1.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-nnp 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). 2026-01-03 08:43.04 ---> using "98f8f85478b05d90433799f963dcd6e2c919e292d0bc465eed5cef76c78010c1" from cache /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-base-compiler is already installed (current version is 5.1.1). [NOTE] Package ocaml is already installed (current version is 5.1.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-nnp 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 3 packages - install climate 0.9.0 - install cmdliner 2.1.0 - install dune 3.20.2 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved climate.0.9.0 (cached) -> retrieved cmdliner.2.1.0 (cached) -> retrieved dune.3.20.2 (cached) -> installed cmdliner.2.1.0 -> installed dune.3.20.2 -> installed climate.0.9.0 Done. # To update the current shell environment, run: eval $(opam env) 2026-01-03 08:43.04 ---> using "93bcd0b17e41a1db6655eb06f3773e93463792c179761b71a1fc114df375585f" from cache /src: (copy (src .) (dst /src)) 2026-01-03 08:43.04 ---> using "ba5502638c2d26e3aef175c30987a86aced8fbc60592077898a275df44773726" from cache /src: (run (shell "opam exec -- dune build --only-packages=cmdlang,cmdlang-to-cmdliner,cmdlang-to-climate,cmdlang-stdlib-runner @install @check @runtest && rm -rf _build")) 2026-01-03 08:43.04 ---> using "24421568151a8ec81602b285fa655c6bf74fdedf271c49c77dd425591a5be37d" from cache Job succeeded 2026-01-03 08:43.04: Job succeeded