2026-03-24 11:40.05: New job: test mbarbin/cmdlang https://github.com/mbarbin/cmdlang.git#refs/heads/main (720fd58bfb92e2e30a84a9cb282dfd963f792d5c) (linux-x86_64:opensuse-16.0-4.14_opam-2.5) Base: ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324 Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/cmdlang.git" -b "main" && cd "cmdlang" && git reset --hard 720fd58b cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324 # opensuse-16.0-4.14_opam-2.5 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef || git fetch origin master) && git reset -q --hard 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef && git log --no-decorate -n1 --oneline && opam update -u 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-threads.base base-unix.base climate.0.9.0 cmdliner.2.1.0 dune.3.22.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.5 --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-03-24 11:40.05: Using cache hint "mbarbin/cmdlang-ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324-opensuse-16.0-4.14_opam-2.5-37f760f457a259a7456ee8fd88a4c00e" 2026-03-24 11:40.05: Using OBuilder spec: ((from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324) (comment opensuse-16.0-4.14_opam-2.5) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef || git fetch origin master) && git reset -q --hard 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef && git log --no-decorate -n1 --oneline && opam update -u")) (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 (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "base-bigarray.base base-threads.base base-unix.base climate.0.9.0 cmdliner.2.1.0 dune.3.22.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 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.5 --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-03-24 11:40.05: Waiting for resource in pool OCluster 2026-03-24 11:40.05: Waiting for worker… 2026-03-24 11:40.05: Got resource from pool OCluster Building on doris.caelum.ci.dev HEAD is now at d0059c5 Apply fmt changes HEAD is now at 720fd58 Use dune-build-info for --version (from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324) Unable to find image 'ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324' locally docker.io/ocaml/opam@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324: Pulling from ocaml/opam 64cfa2a65095: Already exists 7b581e71db22: Already exists 0d9a5a107b9b: Already exists 357b95083b04: Already exists 3658f63fcffa: Already exists 5f00ec28670a: Already exists d5429ba7ea96: Already exists 1e2abec3e48a: Already exists a459d1a5da3b: Already exists 2168339905af: Already exists 165752543076: Already exists 72d1a62a8420: Already exists 7a8e0b1e89ad: Already exists f363e37deee9: Already exists aa8207662583: Already exists 7993a7002f90: Already exists b555b5cbc6e7: Already exists 00bcd96691ba: Already exists e7d8a4a03644: Already exists 4f4fb700ef54: Already exists b84d3b76e0e8: Already exists 32f29cbbfa56: Already exists d591940d5bfc: Already exists a9c4ab92f613: Already exists c84b77db6559: Already exists 4a817e492857: Already exists 8989192c74fe: Already exists 0c77f911b4ac: Already exists 127679045d22: Already exists 703641514dec: Already exists 355713e56611: Already exists b077b32f3467: Already exists 5fac5a53a6e0: Already exists 135be594b6b0: Already exists 8c4f627de9a8: Already exists ddcab00bd8b5: Already exists 8cc53bc399b9: Already exists cc314699ebb3: Already exists 21f9192bbdbc: Pulling fs layer c253b21f5645: Pulling fs layer 7897251b4390: Pulling fs layer 6541215dbcde: Pulling fs layer 6541215dbcde: Waiting c253b21f5645: Verifying Checksum c253b21f5645: Download complete 7897251b4390: Verifying Checksum 7897251b4390: Download complete 6541215dbcde: Download complete 21f9192bbdbc: Verifying Checksum 21f9192bbdbc: Download complete 21f9192bbdbc: Pull complete c253b21f5645: Pull complete 7897251b4390: Pull complete 6541215dbcde: Pull complete Digest: sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324 Status: Downloaded newer image for ocaml/opam@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324 2026-03-24 11:41.16 ---> saved as "176b78d4712c07b55d53abc789f23e917c1c9b9dc68c6cb518e960b046403981" /: (comment opensuse-16.0-4.14_opam-2.5) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam")) 2026-03-24 11:41.16 ---> saved as "b6f6a6f00cb1450f9e7123a84f7e80afdd7481c9032730bab3f3e337082bf8b0" /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-03-24 11:41.37 ---> saved as "fe38bb56cfbd97c95b1f00743ad5c5b765e061706cd3b49f6178cc785154d43e" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-106-generic The OCaml toplevel, version 4.14.2 2.5.0 2026-03-24 11:41.37 ---> saved as "b85b52fbc79e3a4889afee6ac2ee7195a84ea3a71c372685a17d14d4dc1eb92b" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2026-03-24 11:41.38 ---> saved as "01d7fc4bde2dfa7c72b3c493fcb7a20001c59e42b025f59474209a807df21aaa" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef || git fetch origin master) && git reset -q --hard 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 4f056bfedf..b2a1270dba master -> origin/master 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0 <><> 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.5.0"), which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2026-03-24 11:41.52 ---> saved as "8e6ba6a78dbcaada37f27b23bbb99d75fda5d84c4c0251340fbca472eb4a0ca0" /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-03-24 11:41.52 ---> saved as "5e5a02065eafb95ac88ca51bcf8f9e5ce9064f771c274573f3f16184ab8c67d0" /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-03-24 11:41.57 ---> saved as "3568422dbe5a88d43f41010f6ab694ea3165f32567eb03b98ace27a0e67ef46f" /src: (run (shell "echo '(lang dune 3.0)' > './dune-project'")) 2026-03-24 11:41.57 ---> saved as "005a8b558b6b8b5a95cc488f40f133ecb84400debb3bf9ac2f89174448373442" /src: (env DEPS "base-bigarray.base base-threads.base base-unix.base climate.0.9.0 cmdliner.2.1.0 dune.3.22.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 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.5 --depext-only -y cmdlang.dev cmdlang-to-cmdliner.dev cmdlang-to-climate.dev cmdlang-stdlib-runner.dev $DEPS")) + /usr/bin/sudo "zypper" "--non-interactive" "refresh" - Repository 'repo-openh264 (16.0)' is up to date. - Retrieving repository 'repo-oss (16.0)' metadata [.. - Looking for gpg keys in repository repo-oss (16.0). - gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key - .. - - Note: Received 1 new package signing key from repository "repo-oss (16.0)": - - Those additional keys are usually used to sign packages shipped by the repository. In order to - validate those packages upon download and installation the new keys will be imported into the rpm - database. - - New: - Key Fingerprint: F044 C2C5 07A1 262B 538A AADD 8A49 EB03 25DB 7AE0 - Key Name: openSUSE:Backports OBS Project <openSUSE:Backports@build.opensuse.org> - Key Algorithm: RSA 4096 - Key Created: Wed May 10 14:46:12 2023 - Key Expires: Sun May 9 14:46:12 2027 - Rpm Name: gpg-pubkey-25db7ae0-645bae34 - - The repository metadata introducing the new keys have been signed and validated by the trusted - key: - - Repository: repo-oss (16.0) - Key Fingerprint: AD48 5664 E901 B867 051A B15F 35A2 F86E 29B7 00A4 - Key Name: openSUSE Project Signing Key <opensuse@opensuse.org> - Key Algorithm: RSA 4096 - Key Created: Mon Jun 20 14:03:14 2022 - Key Expires: Fri Jun 19 14:03:14 2026 (expires in 87 days) - Rpm Name: gpg-pubkey-29b700a4-62b07e22 - - . - .. - ........... - ....done] - Building repository 'repo-oss (16.0)' cache [.. - ..done] - All repositories have been refreshed. <><> 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 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2). [NOTE] Package ocaml is already installed (current version is 4.14.2). [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). # To update the current shell environment, run: eval $(opam env) 2026-03-24 11:42.16 ---> saved as "bd082f961972ed41cb2f6fa9e9b57f8d1446ad15a833f17a49801e0a2b74fe7a" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2). [NOTE] Package ocaml is already installed (current version is 4.14.2). [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 3 packages - install climate 0.9.0 - install cmdliner 2.1.0 - install dune 3.22.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved climate.0.9.0 (cached) -> retrieved cmdliner.2.1.0 (cached) -> retrieved dune.3.22.0 (cached) -> installed cmdliner.2.1.0 -> installed dune.3.22.0 -> installed climate.0.9.0 Done. # To update the current shell environment, run: eval $(opam env) 2026-03-24 11:42.45 ---> saved as "a9234b4e81def9df69b96ca55fa22abef83044e19770188f35e6a24442c97a23" /src: (copy (src .) (dst /src)) 2026-03-24 11:42.46 ---> saved as "54a6b73a29b1c656aa5636c9547275a1311e7f5c2fab2ed9c157efde0958d11b" /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-03-24 11:42.46 ---> saved as "2f92d862eaa43bb6b3a13912ce9a3a6b001ec303a247a1a0d9f7951035a6cb14" Job succeeded 2026-03-24 11:42.46: Job succeeded