2026-02-01 14:42.50: New job: test mbarbin/cmdlang https://github.com/mbarbin/cmdlang.git#refs/heads/main (cd9ee395a7b3a09d45686898b619d8a401ad445a) (linux-x86_64:ubuntu-24.04-4.14_opam-2.5) Base: ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8 Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/cmdlang.git" -b "main" && cd "cmdlang" && git reset --hard cd9ee395 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8 # ubuntu-24.04-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 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && 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.21.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-02-01 14:42.50: Using cache hint "mbarbin/cmdlang-ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8-ubuntu-24.04-4.14_opam-2.5-693d87b89e135645c82c527fc90ef295" 2026-02-01 14:42.50: Using OBuilder spec: ((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8) (comment ubuntu-24.04-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 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && 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-threads.base base-unix.base climate.0.9.0 cmdliner.2.1.0 dune.3.21.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-02-01 14:42.50: Waiting for resource in pool OCluster 2026-02-01 14:42.50: Waiting for worker… 2026-02-01 14:43.02: Got resource from pool OCluster Building on eumache All commits already cached HEAD is now at cd9ee39 Upgrade dunolint workflow (from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8) Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8' locally docker.io/ocaml/opam@sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8: Pulling from ocaml/opam a3629ac5b9f4: Already exists 1df74ae2bf3e: Already exists 2563f25c1178: Already exists f5fc2898bd97: Already exists 07bec2374ef4: Already exists 182b6598c3cc: Already exists 8c2da7c8c95f: Already exists 20cf8da7cf35: Already exists 7610f2cf1786: Already exists 7399021ff14f: Already exists 9456e89e55d4: Already exists e5df944e4bd8: Already exists 2333fbde88eb: Already exists 13a073e08a30: Already exists ec62492105dc: Already exists f036ba372f52: Already exists 3682b95f48a4: Already exists 3682b95f48a4: Already exists 32baad6bd40c: Already exists 55ea33603a54: Already exists 01e4c8c454ad: Already exists 49e757bc4eaa: Already exists 4f4fb700ef54: Already exists 9ca2cd4333a3: Already exists 24fda3688513: Already exists 79b4050536fd: Already exists a301a466fc25: Already exists c92e4a5fb48f: Already exists c232f3271d8c: Already exists 38ee7210bcfc: Already exists 8aa9bd545ce6: Already exists 894091e858fb: Already exists 77f8f8d20b66: Already exists 9dba2465b196: Already exists 9e601e55f327: Already exists f35ddc136152: Already exists 9ae0bef3d320: Already exists cea410b8abb3: Already exists 08accec35800: Already exists 17947165f33a: Already exists 9811f6717868: Already exists 785aa6530c08: Already exists e5ae7628bb7b: Already exists 4c8749b32c0c: Already exists ed12334bba7e: Already exists Digest: sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8 Status: Downloaded newer image for ocaml/opam@sha256:458f06d1dec2c657e98484451140d4129abb934ad590479ec7b4b4a7bc60b6b8 2026-02-01 14:43.31 ---> saved as "ef22c250542bfdbbae9cc5c0c5dceee33d5c6eaa63ef93c0e62d649e6d282495" /: (comment ubuntu-24.04-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-02-01 14:43.32 ---> saved as "94b306c568a54449b56cd89b8114cf21f76fb95cb9cfc62d690b44d2a92b39ef" /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 [NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using: opam option jobs=255 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2026-02-01 14:44.03 ---> saved as "088b1f75292e92f2b7147a2fa802470c80442d5e490e50c28b1c075db81389dc" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-131-generic The OCaml toplevel, version 4.14.2 2.5.0 2026-02-01 14:44.04 ---> saved as "af2883df424175f72b177cf06b16a804446bf9b6937bbb12fa369d98450581a6" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2026-02-01 14:44.05 ---> saved as "935ff14fa4d7e36e3a0cf92fc51faeea8b126c3b41508e6fa2843d0e16584ece" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 873cb18c37b308713d11ad3894c4bb78d73fb3e7 || git fetch origin master) && git reset -q --hard 873cb18c37b308713d11ad3894c4bb78d73fb3e7 && git log --no-decorate -n1 --oneline && opam update -u")) 873cb18c37 Merge pull request #29216 from shonfeder/release-dune-3.21.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.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-02-01 14:44.25 ---> saved as "fdc82b42706e1d2db04fd524f1ac6118ab6649fe2aaea3f0f2563aecd8349194" /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-02-01 14:44.26 ---> saved as "c75e0267583e37e14bd9f9bf8dc05059fc9f8a92c29ca75647523852e734c6ca" /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-02-01 14:44.46 ---> saved as "827d8baf82a5bc11c6bb272f7e764e40696829a401c59ec01b67327601857340" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2026-02-01 14:44.46 ---> saved as "bf0c108c9fdd3caa340cdc8a52d7d2f6d41dfcef0d6ab895ac6e4b782e46f866" /src: (env DEPS "base-bigarray.base base-threads.base base-unix.base climate.0.9.0 cmdliner.2.1.0 dune.3.21.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 "apt-get" "update" - Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB] - Get:2 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1194 kB] - Get:3 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [3008 kB] - Hit:4 http://archive.ubuntu.com/ubuntu noble InRelease - Get:5 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB] - Get:6 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [1776 kB] - Get:7 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [34.8 kB] - Get:8 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB] - Get:9 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [2171 kB] - Get:10 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [3219 kB] - Get:11 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1975 kB] - Get:12 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [38.1 kB] - Fetched 13.8 MB in 1s (9624 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 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-02-01 14:45.05 ---> saved as "52a9245f8d2a45242c8e06577dff6999120df82cd5a20627715c80a75af264ee" /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.21.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved climate.0.9.0 (cached) -> retrieved cmdliner.2.1.0 (cached) -> retrieved dune.3.21.0 (cached) -> installed cmdliner.2.1.0 -> installed dune.3.21.0 -> installed climate.0.9.0 Done. # To update the current shell environment, run: eval $(opam env) 2026-02-01 14:45.50 ---> saved as "ce461a43b3eaa3fe05548795ade7266a4a3d29faefb490218b68bb1ed22a9103" /src: (copy (src .) (dst /src)) 2026-02-01 14:45.51 ---> saved as "0b7a43bf3fa750180ff86332c994995f195acec7f945546449fd564bb37b5872" /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-02-01 14:45.52 ---> saved as "cc4485e7d85c24a1ebca631abd9956130bcd0f09ba7b9c4d230465fefb9898f8" Job succeeded 2026-02-01 14:45.52: Job succeeded