2026-05-06 07:08.38: New job: test mbarbin/dunolint https://github.com/mbarbin/dunolint.git#refs/heads/main (f5132b9426257275e71240b6adc721a402955b00) (linux-x86_64:ubuntu-24.04-4.14_opam-2.5) Base: ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4 Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/dunolint.git" -b "main" && cd "dunolint" && git reset --hard f5132b94 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4 # 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 a70af20c7161f9d2e1ede477647f5f9e06d6e78f || git fetch origin master) && git reset -q --hard a70af20c7161f9d2e1ede477647f5f9e06d6e78f && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 dunolint.opam dunolint-tests.opam dunolint-lib.opam dunolint-lib-base.opam dunolint-lib-base-tests.opam dunolint-dev.opam ./ RUN opam pin add -yn dunolint.dev './' && \ opam pin add -yn dunolint-tests.dev './' && \ opam pin add -yn dunolint-lib.dev './' && \ opam pin add -yn dunolint-lib-base.dev './' && \ opam pin add -yn dunolint-lib-base-tests.dev './' && \ opam pin add -yn dunolint-dev.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="base.v0.16.5 base-bigarray.base base-threads.base base-unix.base csexp.1.5.2 dune.3.23.0 dune-configurator.3.23.0 dyn.3.23.0 ocaml.4.14.3 ocaml-base-compiler.4.14.3 ocaml-config.2 ocaml-options-vanilla.1 ordering.3.23.0 pp.2.0.0 re.1.14.0 sexplib0.v0.16.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.5 --depext-only -y dunolint-lib.dev dunolint-lib-base.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=dunolint-lib,dunolint-lib-base @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2026-05-06 07:08.38: Using cache hint "mbarbin/dunolint-ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4-ubuntu-24.04-4.14_opam-2.5-604209afb375b77dae53c5b20ef9997a" 2026-05-06 07:08.38: Using OBuilder spec: ((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4) (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 a70af20c7161f9d2e1ede477647f5f9e06d6e78f || git fetch origin master) && git reset -q --hard a70af20c7161f9d2e1ede477647f5f9e06d6e78f && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src dunolint.opam dunolint-tests.opam dunolint-lib.opam dunolint-lib-base.opam dunolint-lib-base-tests.opam dunolint-dev.opam) (dst ./)) (run (network host) (shell "opam pin add -yn dunolint.dev './' && \ \nopam pin add -yn dunolint-tests.dev './' && \ \nopam pin add -yn dunolint-lib.dev './' && \ \nopam pin add -yn dunolint-lib-base.dev './' && \ \nopam pin add -yn dunolint-lib-base-tests.dev './' && \ \nopam pin add -yn dunolint-dev.dev './'")) (run (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "base.v0.16.5 base-bigarray.base base-threads.base base-unix.base csexp.1.5.2 dune.3.23.0 dune-configurator.3.23.0 dyn.3.23.0 ocaml.4.14.3 ocaml-base-compiler.4.14.3 ocaml-config.2 ocaml-options-vanilla.1 ordering.3.23.0 pp.2.0.0 re.1.14.0 sexplib0.v0.16.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 dunolint-lib.dev dunolint-lib-base.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=dunolint-lib,dunolint-lib-base @install @check @runtest && rm -rf _build")) ) 2026-05-06 07:08.38: Waiting for resource in pool OCluster 2026-05-06 07:08.38: Waiting for worker… 2026-05-06 07:09.14: Got resource from pool OCluster Building on toxis.caelum.ci.dev HEAD is now at 99a4e4d Enable new workflow in more-ci HEAD is now at f5132b9 Upgrade dune in doc workflows (from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4) Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4' locally docker.io/ocaml/opam@sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4: Pulling from ocaml/opam b40150c1c271: Already exists 5635dddaaf61: Already exists 0a6d5f853ae3: Already exists 799f202be4df: Already exists b903f564077a: Already exists 6c1d10b3d08f: Already exists 5f5807185d05: Already exists 070c54c49939: Already exists c74f78aa4319: Already exists 08f490e2d1d6: Already exists 90f22d77deb3: Already exists 7934f3d64cde: Already exists c9675ca4ea04: Already exists 2d56e81bc648: Already exists 747607799543: Already exists 620bc2c277c5: Already exists bd268c40989e: Already exists bd268c40989e: Already exists 52dd6f008393: Already exists 1ac04842be81: Already exists e50d59eb16a8: Already exists 5dcb466db21c: Already exists 4f4fb700ef54: Already exists 155ed5167872: Already exists 0d0ddeec4e9f: Already exists 11a59e72671d: Already exists f5e116e6aaf6: Already exists 95c72a92d56a: Already exists 711d037d18c7: Already exists 100470c8287d: Already exists 76c9f10ccc79: Already exists 18a3f6bf5510: Already exists 964c51b347ff: Already exists 4020793ba1b6: Already exists ff88a2087566: Already exists 1599e1710bd3: Already exists e9e27cfec680: Already exists ed5bd70fe984: Already exists ff9f18578fd4: Already exists 290bf7c7792f: Already exists 1be1bd893fc7: Already exists 7482771bd187: Pulling fs layer 901ff5f800f2: Pulling fs layer 42231f02769a: Pulling fs layer 450229835c85: Pulling fs layer 450229835c85: Waiting 901ff5f800f2: Download complete 42231f02769a: Verifying Checksum 42231f02769a: Download complete 450229835c85: Verifying Checksum 450229835c85: Download complete 7482771bd187: Verifying Checksum 7482771bd187: Download complete 7482771bd187: Pull complete 901ff5f800f2: Pull complete 42231f02769a: Pull complete 450229835c85: Pull complete Digest: sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4 Status: Downloaded newer image for ocaml/opam@sha256:07889b712dc6e400e98c1f61dc102cfc3792715b297b8072af6cf2ecc288aeb4 2026-05-06 07:09.17 ---> using "f6983aa83ec90cbaf3229e60f783e3846dbf203b22126e1fa9deb5af4a02fea2" from cache /: (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-05-06 07:09.17 ---> using "cf6b682db0eb0265b50e065ef8ebeee7f5670b75b54916f04daec292c2291574" 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-05-06 07:09.17 ---> using "e0d727a931986edce47e349acfbdfc661d9f8a156856352a318ba20ddbcc86dd" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-107-generic The OCaml toplevel, version 4.14.3 2.5.1 2026-05-06 07:09.17 ---> using "037700d65640b0cfa60eeade36e08c506355b33572f0baf2665b2b6f264049ce" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2026-05-06 07:09.17 ---> using "bd73055a33517574c09d1990315d9406b1b85284b6886c918f256834d1b2fdd9" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e a70af20c7161f9d2e1ede477647f5f9e06d6e78f || git fetch origin master) && git reset -q --hard a70af20c7161f9d2e1ede477647f5f9e06d6e78f && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 045748b2d8..a70af20c71 master -> origin/master a70af20c71 Merge pull request #29844 from shonfeder/release-dune-3.23.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-05-06 07:09.17 ---> using "dbbb588f6779f2cfdeff61a92b5ae6298b9e76c9c875040bbfeb9983add1a866" from cache /src: (copy (src dunolint.opam dunolint-tests.opam dunolint-lib.opam dunolint-lib-base.opam dunolint-lib-base-tests.opam dunolint-dev.opam) (dst ./)) 2026-05-06 07:09.17 ---> using "31c249bd63a282774bee03a130347ead3ceb486b589454e978760eda4d166479" from cache /src: (run (network host) (shell "opam pin add -yn dunolint.dev './' && \ \nopam pin add -yn dunolint-tests.dev './' && \ \nopam pin add -yn dunolint-lib.dev './' && \ \nopam pin add -yn dunolint-lib-base.dev './' && \ \nopam pin add -yn dunolint-lib-base-tests.dev './' && \ \nopam pin add -yn dunolint-dev.dev './'")) [dunolint.dev] synchronised (file:///src) dunolint is now pinned to file:///src (version dev) [NOTE] Package dunolint-tests does not exist in opam repositories registered in the current switch. [dunolint-tests.dev] synchronised (file:///src) dunolint-tests is now pinned to file:///src (version dev) [dunolint-lib.dev] synchronised (file:///src) dunolint-lib is now pinned to file:///src (version dev) [dunolint-lib-base.dev] synchronised (file:///src) dunolint-lib-base is now pinned to file:///src (version dev) [NOTE] Package dunolint-lib-base-tests does not exist in opam repositories registered in the current switch. [dunolint-lib-base-tests.dev] synchronised (file:///src) dunolint-lib-base-tests is now pinned to file:///src (version dev) [NOTE] Package dunolint-dev does not exist in opam repositories registered in the current switch. [dunolint-dev.dev] synchronised (file:///src) dunolint-dev is now pinned to file:///src (version dev) 2026-05-06 07:09.17 ---> using "9b539674e4f02129c8ac75a2432baa8c087cd5838a6b3396991e035767e26376" from cache /src: (run (shell "echo '(lang dune 3.0)' > './dune-project'")) 2026-05-06 07:09.17 ---> using "3b4055e986c4664774522120c6e84cef1406456fe19cf9b6ff719a45b43da240" from cache /src: (env DEPS "base.v0.16.5 base-bigarray.base base-threads.base base-unix.base csexp.1.5.2 dune.3.23.0 dune-configurator.3.23.0 dyn.3.23.0 ocaml.4.14.3 ocaml-base-compiler.4.14.3 ocaml-config.2 ocaml-options-vanilla.1 ordering.3.23.0 pp.2.0.0 re.1.14.0 sexplib0.v0.16.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.5 --depext-only -y dunolint-lib.dev dunolint-lib-base.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB] - Hit:2 http://archive.ubuntu.com/ubuntu noble InRelease - Get:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB] - Get:4 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB] - Get:5 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1500 kB] - Get:6 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [3595 kB] - Get:7 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [3812 kB] - Get:8 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [2030 kB] - Get:9 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [2142 kB] - Get:10 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [54.1 kB] - Get:11 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [2404 kB] - Get:12 http://archive.ubuntu.com/ubuntu noble-backports/main amd64 Packages [49.0 kB] - Get:13 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [35.5 kB] - Fetched 16.0 MB in 1s (12.0 MB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [dunolint-lib.dev] synchronised (file:///src) [dunolint-lib-base.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.3). [NOTE] Package ocaml is already installed (current version is 4.14.3). [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-05-06 07:09.17 ---> using "6c6c4f9e1422d8c8291d3f3cf01fb4a372f1de11b4b63a429b1f748dd74c4692" 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 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.3). [NOTE] Package ocaml is already installed (current version is 4.14.3). [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 9 packages - install base v0.16.5 - install csexp 1.5.2 - install dune 3.23.0 - install dune-configurator 3.23.0 - install dyn 3.23.0 - install ordering 3.23.0 - install pp 2.0.0 - install re 1.14.0 - install sexplib0 v0.16.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved base.v0.16.5 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved pp.2.0.0 (cached) -> retrieved re.1.14.0 (cached) -> retrieved sexplib0.v0.16.0 (cached) -> retrieved dune.3.23.0, dune-configurator.3.23.0, dyn.3.23.0, ordering.3.23.0 (cached) -> installed dune.3.23.0 -> installed csexp.1.5.2 -> installed ordering.3.23.0 -> installed pp.2.0.0 -> installed re.1.14.0 -> installed sexplib0.v0.16.0 -> installed dune-configurator.3.23.0 -> installed dyn.3.23.0 -> installed base.v0.16.5 Done. # To update the current shell environment, run: eval $(opam env) 2026-05-06 07:09.17 ---> using "9bcb7f3aa1435afc7bc5104c64db08389cdcc1ea62955add2a97ee29c6dc300a" from cache /src: (copy (src .) (dst /src)) 2026-05-06 07:09.18 ---> saved as "4ebaf0c2d0c1266c96d00f22c59a4a4218debdc312c8e988a36905a9ce64f2a1" /src: (run (shell "opam exec -- dune build --only-packages=dunolint-lib,dunolint-lib-base @install @check @runtest && rm -rf _build")) 2026-05-06 07:09.21 ---> saved as "b3e1c9c00ae5adfaae70d22a8d87979d685eebda4e333fad7cc0a807ebeb4e97" Job succeeded 2026-05-06 07:09.21: Job succeeded