2025-06-09 12:28.38: New job: test mbarbin/dunolint https://github.com/mbarbin/dunolint.git#refs/heads/main (90f8e04f14e3fbc164f0e579ed77b2d1dc76c943) (linux-x86_64:fedora-41-5.3_opam-2.3) Base: ocaml/opam:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7 Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/dunolint.git" -b "main" && cd "dunolint" && git reset --hard 90f8e04f cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7 # fedora-41-5.3_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo dnf install -y findutils RUN sudo ln -f /usr/bin/opam-2.3 /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 992392f7e49adc57c505bb87aef4ca0c856edcf5 || git fetch origin master) && git reset -q --hard 992392f7e49adc57c505bb87aef4ca0c856edcf5 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 dunolint.opam dunolint-tests.opam dunolint-lib.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-dev.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="astring.0.8.5 base.v0.17.2 base-bigarray.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.0 bin_prot.v0.17.0-1 camlp-streams.5.0.1 capitalization.v0.17.0 cmdlang.0.0.9 cmdlang-stdlib-runner.0.0.9 cmdlang-to-cmdliner.0.0.9 cmdliner.1.3.0 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 dune.3.19.0 dune-configurator.3.19.0 dyn.3.19.0 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 file-rewriter.0.0.3 fmt.0.10.0 fpath.0.7.3 fpath-base.0.3.1 fpath-sexp0.0.3.1 gel.v0.17.0 int_repr.v0.17.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.2.2 logs.0.8.0 mdx.2.5.0 num.1.5-1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-version.4.0.1 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.19.0 pageantty.0.0.2 parsexp.v0.17.0 patdiff.v0.17.0 patience_diff.v0.17.0 pp.2.0.0 pplumbing.0.0.14 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.0 ppx_bin_prot.v0.17.0 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.0 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.2 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.0 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.0 ppx_jane.v0.17.0 ppx_let.v0.17.0 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.0 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.0 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.0 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.0 ppx_typerep_conv.v0.17.0 ppx_variants_conv.v0.17.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 re.1.12.0 result.1.5 seq.base sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 sexps-rewriter.0.0.3 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 stdune.3.19.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.0.8 typerep.v0.17.1 uopt.v0.17.0 variantslib.v0.17.0" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y dunolint.dev dunolint-tests.dev dunolint-lib.dev dunolint-dev.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-06-09 12:28.38: Using cache hint "mbarbin/dunolint-ocaml/opam:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7-fedora-41-5.3_opam-2.3-52227ed5fce7440ae1f6532a1fe7f596" 2025-06-09 12:28.38: Using OBuilder spec: ((from ocaml/opam:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7) (comment fedora-41-5.3_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (network host) (shell "sudo dnf install -y findutils")) (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 992392f7e49adc57c505bb87aef4ca0c856edcf5 || git fetch origin master) && git reset -q --hard 992392f7e49adc57c505bb87aef4ca0c856edcf5 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src dunolint.opam dunolint-tests.opam dunolint-lib.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-dev.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "astring.0.8.5 base.v0.17.2 base-bigarray.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.0 bin_prot.v0.17.0-1 camlp-streams.5.0.1 capitalization.v0.17.0 cmdlang.0.0.9 cmdlang-stdlib-runner.0.0.9 cmdlang-to-cmdliner.0.0.9 cmdliner.1.3.0 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 dune.3.19.0 dune-configurator.3.19.0 dyn.3.19.0 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 file-rewriter.0.0.3 fmt.0.10.0 fpath.0.7.3 fpath-base.0.3.1 fpath-sexp0.0.3.1 gel.v0.17.0 int_repr.v0.17.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.2.2 logs.0.8.0 mdx.2.5.0 num.1.5-1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-version.4.0.1 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.19.0 pageantty.0.0.2 parsexp.v0.17.0 patdiff.v0.17.0 patience_diff.v0.17.0 pp.2.0.0 pplumbing.0.0.14 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.0 ppx_bin_prot.v0.17.0 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.0 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.2 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.0 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.0 ppx_jane.v0.17.0 ppx_let.v0.17.0 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.0 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.0 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.0 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.0 ppx_typerep_conv.v0.17.0 ppx_variants_conv.v0.17.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 re.1.12.0 result.1.5 seq.base sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 sexps-rewriter.0.0.3 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 stdune.3.19.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.0.8 typerep.v0.17.1 uopt.v0.17.0 variantslib.v0.17.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.3 --depext-only -y dunolint.dev dunolint-tests.dev dunolint-lib.dev dunolint-dev.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")) ) 2025-06-09 12:28.38: Waiting for resource in pool OCluster 2025-06-09 13:34.25: Waiting for worker… 2025-06-09 13:37.15: Got resource from pool OCluster Building on laodoke.caelum.ci.dev All commits already cached HEAD is now at 90f8e04 Update README.md (from ocaml/opam:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7) Unable to find image 'ocaml/opam:fedora-41-ocaml-5.3@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7' locally docker.io/ocaml/opam@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7: Pulling from ocaml/opam e83aea43231f: Already exists 0d8f8652e496: Already exists d5e195825cb2: Already exists 3f51cf01c5fe: Already exists 082c87ad0afb: Already exists 46e48528defd: Already exists 9bd247706315: Already exists 0bcbfa64b181: Already exists 8793dffa6413: Already exists 624a80baf0db: Already exists 3a6a16803459: Already exists 8a7553ef70eb: Already exists 1f2809a04632: Already exists 4b9b15e3aaaa: Already exists 4b9b15e3aaaa: Already exists 4802c14fd6fd: Already exists fe12b0522c77: Already exists 9ce067d94345: Already exists dd14b43d3bab: Already exists 4f4fb700ef54: Already exists b2691ebb8fe4: Already exists 28b7802eea05: Already exists 8e8097a9f075: Already exists 834a79c62a56: Already exists 2e1abdd985db: Already exists 2ac8fa4f9473: Already exists dea8ff448161: Already exists bee7bbfab787: Already exists 80e19b966d5b: Already exists 688c86c990dd: Already exists 9dbf15621d7e: Already exists 1edfc01d2d9c: Already exists 490c4bb0a999: Already exists 512503eb4ac8: Already exists 43a6d51d9656: Already exists 2fa9560a6be4: Already exists acc281db3f4c: Already exists 714460f21590: Already exists 18fa999e49de: Pulling fs layer 1f9ccb6c3922: Pulling fs layer f0243487b871: Pulling fs layer fe3e8f32158f: Pulling fs layer e578b138009e: Pulling fs layer fe3e8f32158f: Waiting e578b138009e: Waiting f0243487b871: Verifying Checksum f0243487b871: Download complete 18fa999e49de: Verifying Checksum 18fa999e49de: Download complete 18fa999e49de: Pull complete e578b138009e: Verifying Checksum e578b138009e: Download complete fe3e8f32158f: Verifying Checksum fe3e8f32158f: Download complete 1f9ccb6c3922: Verifying Checksum 1f9ccb6c3922: Download complete 1f9ccb6c3922: Pull complete f0243487b871: Pull complete fe3e8f32158f: Pull complete e578b138009e: Pull complete Digest: sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7 Status: Downloaded newer image for ocaml/opam@sha256:146713442ed5c2eb4e9d95547da36a8643e814340597351b96fb871f2855c3b7 2025-06-09 13:38.40 ---> saved as "6885aab87f4fe22185c8b8094f735035f681f36e522db31f68b1c3410c45c8dc" /: (comment fedora-41-5.3_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (network host) (shell "sudo dnf install -y findutils")) Updating and loading repositories: Fedora 41 - x86_64 - Updates 100% | 4.7 KiB/s | 25.5 KiB | 00m05s Fedora 41 - x86_64 - Updates 100% | 1.2 MiB/s | 3.4 MiB | 00m03s Repositories loaded. Package "findutils-1:4.10.0-4.fc41.x86_64" is already installed. Nothing to do. 2025-06-09 13:38.56 ---> saved as "be913ffc0559d1f9061ab7a5a14cead2760cef4759fb2f507009e508be9d1904" /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-06-09 13:38.57 ---> saved as "06b698498e5a5e5c62763942374272aaa9f8ccb14dba2ca9a6ee215e79a511a7" /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 development 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 2025-06-09 13:39.54 ---> saved as "2ab33c3e3494a4a312bd0b70e17e60f5891afea9b3bc06c2dfbf6b765ac5d2d7" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-139-generic The OCaml toplevel, version 5.3.0 2.3.0 2025-06-09 13:39.54 ---> saved as "a10b4865dcd3eb52b5cd422f7f390da13f120a6bc87cf8de5f3c86eae9dd43d0" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-06-09 13:39.54 ---> saved as "b54fc704a579008027213d2076ec99cf59bb09f2216bd0f1b7c5760bec3a4607" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 992392f7e49adc57c505bb87aef4ca0c856edcf5 || git fetch origin master) && git reset -q --hard 992392f7e49adc57c505bb87aef4ca0c856edcf5 && git log --no-decorate -n1 --oneline && opam update -u")) 992392f7e4 Merge pull request #27962 from mbarbin/opam-publish-pageantty.0.0.2 <><> 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, which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-06-09 13:40.37 ---> saved as "342369cf91961f5f379a054f4108a65481b6e75b8161bf1d63fe7c14855720bb" /src: (copy (src dunolint.opam dunolint-tests.opam dunolint-lib.opam dunolint-dev.opam) (dst ./)) 2025-06-09 13:40.37 ---> saved as "63ae215bfa1d65f520cbf31c15b45cbfdab6695a2f5c8cc486ba2c8e7fda2a6a" /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-dev.dev './'")) [dunolint.dev] synchronised (file:///src) dunolint is now pinned to file:///src (version dev) Package dunolint-tests does not exist, create as a NEW package? [y/n] y [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) Package dunolint-dev does not exist, create as a NEW package? [y/n] y [dunolint-dev.dev] synchronised (file:///src) dunolint-dev is now pinned to file:///src (version dev) 2025-06-09 13:40.44 ---> saved as "75be64ca0f8e5bcb3c18e9dc05956ded7bf2de3adef531b5cad4066697b5c441" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-06-09 13:40.44 ---> saved as "d0377d6ea3ad2c24615a53c380415040abc270d24b4057f6f42f726d0b8474b1" /src: (env DEPS "astring.0.8.5 base.v0.17.2 base-bigarray.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.0 bin_prot.v0.17.0-1 camlp-streams.5.0.1 capitalization.v0.17.0 cmdlang.0.0.9 cmdlang-stdlib-runner.0.0.9 cmdlang-to-cmdliner.0.0.9 cmdliner.1.3.0 core.v0.17.1 core_kernel.v0.17.0 core_unix.v0.17.1 cppo.1.8.0 csexp.1.5.2 dune.3.19.0 dune-configurator.3.19.0 dyn.3.19.0 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 file-rewriter.0.0.3 fmt.0.10.0 fpath.0.7.3 fpath-base.0.3.1 fpath-sexp0.0.3.1 gel.v0.17.0 int_repr.v0.17.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 loc.0.2.2 logs.0.8.0 mdx.2.5.0 num.1.5-1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-version.4.0.1 ocaml_intrinsics_kernel.v0.17.1 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.19.0 pageantty.0.0.2 parsexp.v0.17.0 patdiff.v0.17.0 patience_diff.v0.17.0 pp.2.0.0 pplumbing.0.0.14 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_bench.v0.17.0 ppx_bin_prot.v0.17.0 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.0 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.2 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.0 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.0 ppx_jane.v0.17.0 ppx_let.v0.17.0 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.0 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.0 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.0 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.0 ppx_typerep_conv.v0.17.0 ppx_variants_conv.v0.17.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 re.1.12.0 result.1.5 seq.base sexp_pretty.v0.17.0 sexplib.v0.17.0 sexplib0.v0.17.0 sexps-rewriter.0.0.3 spawn.v0.17.0 splittable_random.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 stdune.3.19.0 time_now.v0.17.0 timezone.v0.17.0 topkg.1.0.8 typerep.v0.17.1 uopt.v0.17.0 variantslib.v0.17.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.3 --depext-only -y dunolint.dev dunolint-tests.dev dunolint-lib.dev dunolint-dev.dev $DEPS")) + /usr/bin/sudo "yum" "makecache" - Updating and loading repositories: - Repositories loaded. - Metadata cache created. <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [dunolint.dev] synchronised (file:///src) [dunolint-dev.dev] synchronised (file:///src) [dunolint-lib.dev] synchronised (file:///src) [dunolint-tests.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-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.0). [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-effects 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). 2025-06-09 13:41.09 ---> saved as "6c7ba4949e9c1984604806aeaeb0b87db326c32a2366a2e69b114c43b794438a" /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-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.0). [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-effects 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 102 packages - install astring 0.8.5 - install base v0.17.2 - install base_bigstring v0.17.0 - install base_quickcheck v0.17.0 - install bin_prot v0.17.0-1 - install camlp-streams 5.0.1 - install capitalization v0.17.0 - install cmdlang 0.0.9 - install cmdlang-stdlib-runner 0.0.9 - install cmdlang-to-cmdliner 0.0.9 - install cmdliner 1.3.0 - install core v0.17.1 - install core_kernel v0.17.0 - install core_unix v0.17.1 - install cppo 1.8.0 - install csexp 1.5.2 - install dune 3.19.0 - install dune-configurator 3.19.0 - install dyn 3.19.0 - install expect_test_helpers_core v0.17.0 - install fieldslib v0.17.0 - install file-rewriter 0.0.3 - install fmt 0.10.0 - install fpath 0.7.3 - install fpath-base 0.3.1 - install fpath-sexp0 0.3.1 - install gel v0.17.0 - install int_repr v0.17.0 - install jane-street-headers v0.17.0 - install jst-config v0.17.0 - install loc 0.2.2 - install logs 0.8.0 - install mdx 2.5.0 - install num 1.5-1 - install ocaml-compiler-libs v0.17.0 - install ocaml-version 4.0.1 - install ocaml_intrinsics_kernel v0.17.1 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ordering 3.19.0 - install pageantty 0.0.2 - install parsexp v0.17.0 - install patdiff v0.17.0 - install patience_diff v0.17.0 - install pp 2.0.0 - install pplumbing 0.0.14 - install ppx_assert v0.17.0 - install ppx_base v0.17.0 - install ppx_bench v0.17.0 - install ppx_bin_prot v0.17.0 - install ppx_cold v0.17.0 - install ppx_compare v0.17.0 - install ppx_custom_printf v0.17.0 - install ppx_derivers 1.2.1 - install ppx_diff v0.17.0 - install ppx_disable_unused_warnings v0.17.0 - install ppx_enumerate v0.17.0 - install ppx_expect v0.17.2 - install ppx_fields_conv v0.17.0 - install ppx_fixed_literal v0.17.0 - install ppx_globalize v0.17.0 - install ppx_hash v0.17.0 - install ppx_here v0.17.0 - install ppx_ignore_instrumentation v0.17.0 - install ppx_inline_test v0.17.0 - install ppx_jane v0.17.0 - install ppx_let v0.17.0 - install ppx_log v0.17.0 - install ppx_module_timer v0.17.0 - install ppx_optcomp v0.17.0 - install ppx_optional v0.17.0 - install ppx_pipebang v0.17.0 - install ppx_sexp_conv v0.17.0 - install ppx_sexp_message v0.17.0 - install ppx_sexp_value v0.17.0 - install ppx_stable v0.17.0 - install ppx_stable_witness v0.17.0 - install ppx_string v0.17.0 - install ppx_string_conv v0.17.0 - install ppx_tydi v0.17.0 - install ppx_typerep_conv v0.17.0 - install ppx_variants_conv v0.17.0 - install ppxlib 0.35.0 - install ppxlib_jane v0.17.2 - install re 1.12.0 - install result 1.5 - install seq base - install sexp_pretty v0.17.0 - install sexplib v0.17.0 - install sexplib0 v0.17.0 - install sexps-rewriter 0.0.3 - install spawn v0.17.0 - install splittable_random v0.17.0 - install stdio v0.17.0 - install stdlib-shims 0.3.0 - install stdune 3.19.0 - install time_now v0.17.0 - install timezone v0.17.0 - install topkg 1.0.8 - install typerep v0.17.1 - install uopt v0.17.0 - install variantslib v0.17.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved base_bigstring.v0.17.0 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved base_quickcheck.v0.17.0 (cached) -> retrieved base.v0.17.2 (cached) -> retrieved bin_prot.v0.17.0-1 (cached) -> retrieved camlp-streams.5.0.1 (cached) -> retrieved capitalization.v0.17.0 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved cmdlang.0.0.9, cmdlang-stdlib-runner.0.0.9, cmdlang-to-cmdliner.0.0.9 (cached) -> retrieved core.v0.17.1 (cached) -> retrieved core_kernel.v0.17.0 (cached) -> retrieved core_unix.v0.17.1 (cached) -> retrieved cppo.1.8.0 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved expect_test_helpers_core.v0.17.0 (cached) -> retrieved fieldslib.v0.17.0 (cached) -> retrieved file-rewriter.0.0.3, sexps-rewriter.0.0.3 (cached) -> retrieved fmt.0.10.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved fpath-base.0.3.1, fpath-sexp0.0.3.1 (cached) -> retrieved gel.v0.17.0 (cached) -> retrieved int_repr.v0.17.0 (cached) -> retrieved jane-street-headers.v0.17.0 (cached) -> retrieved jst-config.v0.17.0 (cached) -> retrieved loc.0.2.2 (cached) -> retrieved logs.0.8.0 (cached) -> retrieved num.1.5-1 (cached) -> retrieved mdx.2.5.0 (cached) -> retrieved ocaml-compiler-libs.v0.17.0 (cached) -> retrieved ocaml-version.4.0.1 (cached) -> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved pageantty.0.0.2 (cached) -> retrieved parsexp.v0.17.0 (cached) -> retrieved patdiff.v0.17.0 (cached) -> retrieved patience_diff.v0.17.0 (cached) -> retrieved pp.2.0.0 (cached) -> retrieved pplumbing.0.0.14 (cached) -> retrieved ppx_assert.v0.17.0 (cached) -> retrieved ppx_base.v0.17.0 (cached) -> retrieved ppx_bench.v0.17.0 (cached) -> retrieved ppx_bin_prot.v0.17.0 (cached) -> retrieved ppx_cold.v0.17.0 (cached) -> retrieved ppx_compare.v0.17.0 (cached) -> retrieved ppx_custom_printf.v0.17.0 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_diff.v0.17.0 (cached) -> retrieved ppx_disable_unused_warnings.v0.17.0 (cached) -> retrieved ppx_enumerate.v0.17.0 (cached) -> retrieved ppx_expect.v0.17.2 (cached) -> retrieved ppx_fields_conv.v0.17.0 (cached) -> retrieved ppx_fixed_literal.v0.17.0 (cached) -> retrieved ppx_globalize.v0.17.0 (cached) -> retrieved ppx_hash.v0.17.0 (cached) -> retrieved ppx_here.v0.17.0 (cached) -> retrieved ppx_ignore_instrumentation.v0.17.0 (cached) -> retrieved ppx_inline_test.v0.17.0 (cached) -> retrieved ppx_jane.v0.17.0 (cached) -> retrieved ppx_let.v0.17.0 (cached) -> retrieved ppx_log.v0.17.0 (cached) -> retrieved ppx_module_timer.v0.17.0 (cached) -> retrieved ppx_optcomp.v0.17.0 (cached) -> retrieved ppx_optional.v0.17.0 (cached) -> retrieved ppx_pipebang.v0.17.0 (cached) -> retrieved ppx_sexp_conv.v0.17.0 (cached) -> retrieved ppx_sexp_message.v0.17.0 (cached) -> retrieved ppx_sexp_value.v0.17.0 (cached) -> retrieved ppx_stable.v0.17.0 (cached) -> retrieved ppx_stable_witness.v0.17.0 (cached) -> retrieved ppx_string.v0.17.0 (cached) -> retrieved ppx_string_conv.v0.17.0 (cached) -> retrieved ppx_tydi.v0.17.0 (cached) -> retrieved ppx_typerep_conv.v0.17.0 (cached) -> retrieved ppx_variants_conv.v0.17.0 (cached) -> retrieved ppxlib_jane.v0.17.2 (cached) -> retrieved dune.3.19.0, dune-configurator.3.19.0, dyn.3.19.0, ordering.3.19.0, stdune.3.19.0 (cached) -> retrieved ppxlib.0.35.0 (cached) -> retrieved seq.base (cached) -> retrieved re.1.12.0 (cached) -> retrieved result.1.5 (cached) -> retrieved sexp_pretty.v0.17.0 (cached) -> retrieved sexplib.v0.17.0 (cached) -> retrieved sexplib0.v0.17.0 (cached) -> retrieved spawn.v0.17.0 (cached) -> retrieved splittable_random.v0.17.0 (cached) -> retrieved stdio.v0.17.0 (cached) -> installed cmdliner.1.3.0 -> installed num.1.5-1 -> installed ocamlbuild.0.16.1 -> installed seq.base -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved time_now.v0.17.0 (cached) -> retrieved timezone.v0.17.0 (cached) -> retrieved typerep.v0.17.1 (cached) -> retrieved uopt.v0.17.0 (cached) -> retrieved variantslib.v0.17.0 (cached) -> retrieved topkg.1.0.8 (cached) -> installed ocamlfind.1.9.8 -> installed topkg.1.0.8 -> installed fmt.0.10.0 -> installed astring.0.8.5 -> installed fpath.0.7.3 -> installed logs.0.8.0 -> installed dune.3.19.0 -> installed camlp-streams.5.0.1 -> installed cmdlang.0.0.9 -> installed csexp.1.5.2 -> installed cppo.1.8.0 -> installed jane-street-headers.v0.17.0 -> installed ocaml-compiler-libs.v0.17.0 -> installed ocaml-version.4.0.1 -> installed ocaml_intrinsics_kernel.v0.17.1 -> installed pp.2.0.0 -> installed ppx_derivers.1.2.1 -> installed result.1.5 -> installed sexplib0.v0.17.0 -> installed re.1.12.0 -> installed spawn.v0.17.0 -> installed stdlib-shims.0.3.0 -> installed cmdlang-stdlib-runner.0.0.9 -> installed cmdlang-to-cmdliner.0.0.9 -> installed fpath-sexp0.0.3.1 -> installed ordering.3.19.0 -> installed parsexp.v0.17.0 -> installed dune-configurator.3.19.0 -> installed mdx.2.5.0 -> installed dyn.3.19.0 -> installed sexplib.v0.17.0 -> installed stdune.3.19.0 -> installed loc.0.2.2 -> installed file-rewriter.0.0.3 -> installed sexps-rewriter.0.0.3 -> installed pplumbing.0.0.14 -> installed pageantty.0.0.2 -> installed base.v0.17.2 -> installed fieldslib.v0.17.0 -> installed variantslib.v0.17.0 -> installed fpath-base.0.3.1 -> installed stdio.v0.17.0 -> installed typerep.v0.17.1 -> installed ppxlib.0.35.0 -> installed ppxlib_jane.v0.17.2 -> installed ppx_optcomp.v0.17.0 -> installed ppx_tydi.v0.17.0 -> installed ppx_cold.v0.17.0 -> installed ppx_disable_unused_warnings.v0.17.0 -> installed ppx_stable_witness.v0.17.0 -> installed ppx_typerep_conv.v0.17.0 -> installed ppx_here.v0.17.0 -> installed ppx_variants_conv.v0.17.0 -> installed ppx_fixed_literal.v0.17.0 -> installed ppx_fields_conv.v0.17.0 -> installed ppx_stable.v0.17.0 -> installed ppx_ignore_instrumentation.v0.17.0 -> installed ppx_pipebang.v0.17.0 -> installed ppx_globalize.v0.17.0 -> installed ppx_enumerate.v0.17.0 -> installed ppx_compare.v0.17.0 -> installed ppx_optional.v0.17.0 -> installed ppx_sexp_conv.v0.17.0 -> installed ppx_let.v0.17.0 -> installed ppx_hash.v0.17.0 -> installed ppx_assert.v0.17.0 -> installed ppx_sexp_value.v0.17.0 -> installed ppx_sexp_message.v0.17.0 -> installed ppx_custom_printf.v0.17.0 -> installed ppx_base.v0.17.0 -> installed capitalization.v0.17.0 -> installed jst-config.v0.17.0 -> installed sexp_pretty.v0.17.0 -> installed bin_prot.v0.17.0-1 -> installed ppx_string.v0.17.0 -> installed time_now.v0.17.0 -> installed ppx_bin_prot.v0.17.0 -> installed ppx_string_conv.v0.17.0 -> installed ppx_module_timer.v0.17.0 -> installed ppx_inline_test.v0.17.0 -> installed ppx_bench.v0.17.0 -> installed ppx_expect.v0.17.2 -> installed splittable_random.v0.17.0 -> installed base_quickcheck.v0.17.0 -> installed ppx_log.v0.17.0 -> installed ppx_jane.v0.17.0 -> installed uopt.v0.17.0 -> installed gel.v0.17.0 -> installed int_repr.v0.17.0 -> installed base_bigstring.v0.17.0 -> installed ppx_diff.v0.17.0 -> installed core.v0.17.1 -> installed timezone.v0.17.0 -> installed expect_test_helpers_core.v0.17.0 -> installed patience_diff.v0.17.0 -> installed core_kernel.v0.17.0 -> installed core_unix.v0.17.1 -> installed patdiff.v0.17.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-06-09 13:46.09 ---> saved as "36a90a9b30b94823c3bc93ae0c61b09f2ab9813119c334131e5daf1fffdef2de" /src: (copy (src .) (dst /src)) 2025-06-09 13:46.11 ---> saved as "06170a5d6163ec0825647fbe6773189a34726d9d2efa40ea31258ce7f5049cc8" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) File "doc/docs/explanation/linting-equilibrium/comments-in-libraries.md", line 1, characters 0-0: (cd _build/default && /home/opam/.opam/5.3/bin/patdiff -keep-whitespace -location-style omake doc/docs/explanation/linting-equilibrium/comments-in-libraries.md doc/docs/explanation/linting-equilibrium/.mdx/comments-in-libraries.md.corrected) ------ doc/docs/explanation/linting-equilibrium/comments-in-libraries.md ++++++ doc/docs/explanation/linting-equilibrium/.mdx/comments-in-libraries.md.corrected File "doc/docs/explanation/linting-equilibrium/comments-in-libraries.md", line 10, characters 0-1: |# Comments in `libraries` | |The `libraries` dependencies listed in `library` stanzas are sorted alphabetically. For example, this dune file: | |```sh |$ cat > dune0 <<EOF\ |> (library\ |> (name my_lib)\ |> (libraries foo bar baz)) +|sh: line 4: warning: here-document at line 1 delimited by end-of-file (wanted `EOF') |``` | |is linted as follows: | |```sh |$ dunolint tools lint-file dune0 --filename=dune |(library | (name my_lib) | (libraries bar baz foo)) |``` | |The process of reordering the libraries items becomes more complex in the presence of comments. This section illustrates how comments are handled in this field, discusses limitations, and suggests conventions to satisfy the linter in certain unsupported cases. | |## End-of-line Comments | |When a comment is placed next to an entry, the tool assumes that it is attached to that item and moves it along with the item during reordering. File "test/cram/interactive.t", line 1, characters 0-0: (cd _build/.sandbox/1868d8e5c74592e2fe97aea1caf50b3a/default && /home/opam/.opam/5.3/bin/patdiff -keep-whitespace -location-style omake test/cram/interactive.t test/cram/interactive.t.corrected) ------ test/cram/interactive.t ++++++ test/cram/interactive.t.corrected File "test/cram/interactive.t", line 82, characters 0-1: | $ echo 'q' | dunolint lint --config=.dunolint --interactive | Would edit file "dune-project": | -1,1 +1,1 | -|(name main) | +|(name foo) | | [?] Accept diff [N/y/q/?]: | |We can choose to refuse some diff, and accept others. | | $ echo 'n\ny\n' | dunolint lint --config=.dunolint --interactive | Would edit file "dune-project": | -1,1 +1,1 | -|(name main) | +|(name foo) | -| [?] Accept diff [N/y/q/?]: -| Would edit file "lib/foo/dune": -| -1,2 +1,2 -| (library -| -| (name bar)) -| +| (name foo)) +| [?] Accept diff [N/y/q/?]: [!] Please answer 'n', 'y', 'q' or '?'. | | [?] Accept diff [N/y/q/?]: | | $ cat dune-project | (name main) | | $ cat lib/foo/dune | (library -| (name foo)) +| (name bar)) File "test/cram/lint-file.t", line 1, characters 0-0: (cd _build/.sandbox/5f27f132f6a536801ddff5519aabbb34/default && /home/opam/.opam/5.3/bin/patdiff -keep-whitespace -location-style omake test/cram/lint-file.t test/cram/lint-file.t.corrected) ------ test/cram/lint-file.t ++++++ test/cram/lint-file.t.corrected File "test/cram/lint-file.t", line 20, characters 0-1: |By default the command reads from `stdin`. | | $ echo '(lang dune 3.17)' | dunolint tools lint-file | Error: Cannot infer the file kind from the filename "stdin". | Hint: You may override the filename with the flag [--filename]. | [123] | |However, when using the command that way, the linted file kind won't be |inferred. The filename must end with a basename that indicates a supported mode. | | $ echo '(lang dune 3.17)' | dunolint tools lint-file --filename=dune-project | (lang dune 3.17) | |By default, the contents is auto-formatted. | | $ echo '(lang\n dune\n 3.17)' | dunolint tools lint-file --filename=dune-project -| (lang dune 3.17) +| (lang\n dune\n 3.17) | |The formatting may however be disabled. | | $ echo '(lang\n dune\n 3.17)' \ | > | dunolint tools lint-file --filename=dune-project \ | > --format-file=false -| (lang -| dune -| 3.17) +| (lang\n dune\n 3.17) | |We note here a point of potential confusion: | |1. Dunolint ignores the toplevel stanzas that it does not parse. | |The reason for this is to be future proof, and also because we are not going to |necessarily support 100% of dune construct in dunolint, leaving aside those that |offer little linting interest. | |2. `dune format-dune-file` works regardless of whether it is called on file |`dune`, or `dune-project`. | |What this means for our dunolint command is that a user may be confused into |thinking they have linted their file correctly, based on the fact that it is |correctly formatted, failing to realize that all stanzas are in fact ignored. | "/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1 2025-06-09 13:46.26: Job failed: Failed: Build failed