2025-08-02 22:17.33: New job: test mbarbin/dunolint https://github.com/mbarbin/dunolint.git#refs/heads/implicit-transitive-false (e20fdc3ba28be212199f334b67c07720c67d703c) (linux-x86_64:ubuntu-24.10-5.3_opam-2.4) Base: ocaml/opam:ubuntu-24.10-ocaml-5.3@sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74 Opam project build To reproduce locally: git clone --recursive "https://github.com/mbarbin/dunolint.git" -b "implicit-transitive-false" && cd "dunolint" && git reset --hard e20fdc3b cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-24.10-ocaml-5.3@sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74 # ubuntu-24.10-5.3_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 74f2312be1e7de49f12bf4ecaa2a59f50e6d195f || git fetch origin master) && git reset -q --hard 74f2312be1e7de49f12bf4ecaa2a59f50e6d195f && 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.3 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.1 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.1 dune-configurator.3.19.1 dyn.3.19.1 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 file-rewriter.0.0.3 fmt.0.11.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.9.0 mdx.2.5.0 num.1.6 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.1 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.1 ppx_bin_prot.v0.17.1 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.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.36.0 ppxlib_jane.v0.17.4 re.1.13.2 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.1 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.0 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.4 --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-08-02 22:17.33: Using cache hint "mbarbin/dunolint-ocaml/opam:ubuntu-24.10-ocaml-5.3@sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74-ubuntu-24.10-5.3_opam-2.4-04a239a6ce8e9c0b3fe9f57fc37800f2" 2025-08-02 22:17.33: Using OBuilder spec: ((from ocaml/opam:ubuntu-24.10-ocaml-5.3@sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74) (comment ubuntu-24.10-5.3_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 74f2312be1e7de49f12bf4ecaa2a59f50e6d195f || git fetch origin master) && git reset -q --hard 74f2312be1e7de49f12bf4ecaa2a59f50e6d195f && 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.3 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.1 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.1 dune-configurator.3.19.1 dyn.3.19.1 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 file-rewriter.0.0.3 fmt.0.11.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.9.0 mdx.2.5.0 num.1.6 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.1 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.1 ppx_bin_prot.v0.17.1 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.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.36.0 ppxlib_jane.v0.17.4 re.1.13.2 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.1 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.0 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.4 --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-08-02 22:17.33: Waiting for resource in pool OCluster 2025-08-02 22:17.33: Waiting for worker… 2025-08-02 22:17.33: Got resource from pool OCluster Building on doris.caelum.ci.dev All commits already cached HEAD is now at e20fdc3 DO NOT MERGE (from ocaml/opam:ubuntu-24.10-ocaml-5.3@sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74) Unable to find image 'ocaml/opam:ubuntu-24.10-ocaml-5.3@sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74' locally docker.io/ocaml/opam@sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74: Pulling from ocaml/opam ddbef59e0ea0: Pulling fs layer c8a958777819: Pulling fs layer a9c4d03c89cf: Pulling fs layer fad6b78bd523: Pulling fs layer cb002c153c80: Pulling fs layer 876c82aa019b: Pulling fs layer bfef421a4b69: Pulling fs layer e6b4d8b7cd2a: Pulling fs layer 54235cbedf66: Pulling fs layer 969e20d3615a: Pulling fs layer f75a26651ead: Pulling fs layer e2e5dbeca078: Pulling fs layer adb8cd405a24: Pulling fs layer 42f7bc177c6f: Pulling fs layer 56c2e03eb936: Pulling fs layer fad6b78bd523: Waiting 5e8ac5f38241: Pulling fs layer cf8c284afc78: Pulling fs layer 69eda5caf340: Pulling fs layer bfef421a4b69: Waiting fe98b660af07: Pulling fs layer 8d65ed03220e: Pulling fs layer 4f4fb700ef54: Pulling fs layer 96582afc94cb: Pulling fs layer d44b0146fa5e: Pulling fs layer 3a73ad442907: Pulling fs layer 3dc02b22b155: Pulling fs layer 47a44a4e8580: Pulling fs layer 475edb260ff3: Pulling fs layer f75a26651ead: Waiting e6f89448d543: Pulling fs layer e2e5dbeca078: Waiting e6b4d8b7cd2a: Waiting ef0f57ea5fcb: Pulling fs layer 81800827d60e: Pulling fs layer cf8c284afc78: Waiting bbad171c3b15: Pulling fs layer 54235cbedf66: Waiting 2c25dc074a59: Pulling fs layer 308c9094d6f5: Pulling fs layer 69eda5caf340: Waiting 969e20d3615a: Waiting 5679f7d0987f: Pulling fs layer c2d4e4e71780: Pulling fs layer 9a9042028693: Pulling fs layer 169b16f4d220: Pulling fs layer 8d65ed03220e: Waiting 7a375914fd04: Pulling fs layer 3f03a6e57bb0: Pulling fs layer 477be20739ff: Pulling fs layer d44b0146fa5e: Waiting 4f4fb700ef54: Waiting e6f89448d543: Waiting c139be691ddd: Pulling fs layer 56c2e03eb936: Waiting adeeba91b798: Pulling fs layer 11585459cda5: Pulling fs layer 7ab304c0e7fb: Pulling fs layer 81800827d60e: Waiting 2c25dc074a59: Waiting bbad171c3b15: Waiting 0904add4b2ab: Pulling fs layer f986bf9d5ca9: Pulling fs layer adb8cd405a24: Waiting 42f7bc177c6f: Waiting 308c9094d6f5: Waiting c139be691ddd: Waiting 475edb260ff3: Waiting 5679f7d0987f: Waiting 0904add4b2ab: Waiting c2d4e4e71780: Waiting 169b16f4d220: Waiting 11585459cda5: Waiting 7ab304c0e7fb: Waiting 477be20739ff: Waiting 5e8ac5f38241: Waiting 3a73ad442907: Waiting ef0f57ea5fcb: Waiting 9a9042028693: Waiting fe98b660af07: Waiting 96582afc94cb: Waiting 47a44a4e8580: Waiting 7a375914fd04: Waiting a9c4d03c89cf: Verifying Checksum a9c4d03c89cf: Download complete c8a958777819: Verifying Checksum c8a958777819: Download complete ddbef59e0ea0: Verifying Checksum ddbef59e0ea0: Download complete cb002c153c80: Verifying Checksum cb002c153c80: Download complete bfef421a4b69: Verifying Checksum bfef421a4b69: Download complete fad6b78bd523: Verifying Checksum fad6b78bd523: Download complete ddbef59e0ea0: Pull complete c8a958777819: Pull complete a9c4d03c89cf: Pull complete 54235cbedf66: Verifying Checksum 54235cbedf66: Download complete fad6b78bd523: Pull complete cb002c153c80: Pull complete e6b4d8b7cd2a: Verifying Checksum e6b4d8b7cd2a: Download complete f75a26651ead: Verifying Checksum f75a26651ead: Download complete 969e20d3615a: Verifying Checksum 969e20d3615a: Download complete 876c82aa019b: Verifying Checksum 876c82aa019b: Download complete e2e5dbeca078: Verifying Checksum e2e5dbeca078: Download complete adb8cd405a24: Verifying Checksum adb8cd405a24: Download complete 42f7bc177c6f: Download complete 56c2e03eb936: Download complete 5e8ac5f38241: Verifying Checksum 5e8ac5f38241: Download complete cf8c284afc78: Download complete 69eda5caf340: Verifying Checksum 69eda5caf340: Download complete fe98b660af07: Verifying Checksum fe98b660af07: Download complete 8d65ed03220e: Verifying Checksum 8d65ed03220e: Download complete 4f4fb700ef54: Verifying Checksum 4f4fb700ef54: Download complete 96582afc94cb: Download complete d44b0146fa5e: Verifying Checksum d44b0146fa5e: Download complete 3a73ad442907: Download complete 3dc02b22b155: Download complete 47a44a4e8580: Verifying Checksum 47a44a4e8580: Download complete 475edb260ff3: Verifying Checksum 475edb260ff3: Download complete e6f89448d543: Verifying Checksum e6f89448d543: Download complete ef0f57ea5fcb: Download complete 81800827d60e: Verifying Checksum 81800827d60e: Download complete bbad171c3b15: Download complete 2c25dc074a59: Download complete 308c9094d6f5: Verifying Checksum 308c9094d6f5: Download complete c2d4e4e71780: Download complete 169b16f4d220: Verifying Checksum 169b16f4d220: Download complete 7a375914fd04: Verifying Checksum 7a375914fd04: Download complete 3f03a6e57bb0: Download complete 477be20739ff: Verifying Checksum 477be20739ff: Download complete 5679f7d0987f: Verifying Checksum 5679f7d0987f: Download complete adeeba91b798: Verifying Checksum adeeba91b798: Download complete 7ab304c0e7fb: Download complete 876c82aa019b: Pull complete bfef421a4b69: Pull complete 0904add4b2ab: Verifying Checksum 0904add4b2ab: Download complete f986bf9d5ca9: Verifying Checksum f986bf9d5ca9: Download complete e6b4d8b7cd2a: Pull complete 9a9042028693: Verifying Checksum 9a9042028693: Download complete 54235cbedf66: Pull complete 969e20d3615a: Pull complete f75a26651ead: Pull complete e2e5dbeca078: Pull complete adb8cd405a24: Pull complete 42f7bc177c6f: Pull complete 56c2e03eb936: Pull complete 5e8ac5f38241: Pull complete cf8c284afc78: Pull complete 69eda5caf340: Pull complete fe98b660af07: Pull complete 8d65ed03220e: Pull complete 4f4fb700ef54: Pull complete 96582afc94cb: Pull complete d44b0146fa5e: Pull complete 3a73ad442907: Pull complete 3dc02b22b155: Pull complete 47a44a4e8580: Pull complete 475edb260ff3: Pull complete e6f89448d543: Pull complete ef0f57ea5fcb: Pull complete 81800827d60e: Pull complete bbad171c3b15: Pull complete 2c25dc074a59: Pull complete 308c9094d6f5: Pull complete 11585459cda5: Verifying Checksum 11585459cda5: Download complete 5679f7d0987f: Pull complete c2d4e4e71780: Pull complete 9a9042028693: Pull complete 169b16f4d220: Pull complete 7a375914fd04: Pull complete 3f03a6e57bb0: Pull complete 477be20739ff: Pull complete c139be691ddd: Pull complete adeeba91b798: Pull complete 11585459cda5: Pull complete 7ab304c0e7fb: Pull complete 0904add4b2ab: Pull complete f986bf9d5ca9: Pull complete Digest: sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74 Status: Downloaded newer image for ocaml/opam@sha256:a3ffa70374ecfc80dd386b73faebcc4ce15a8f241b0a09130e80ef58d76b2e74 2025-08-02 22:18.53 ---> saved as "e3031fce4666df3c8a4d180feda7dc06becd86fde09e4c874799a52edafeeda3" /: (comment ubuntu-24.10-5.3_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")) 2025-08-02 22:18.53 ---> saved as "10e069c55691c8c8bc8ff3c9d06849a8500b515494ff3c8c3eb82bc77d01f444" /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 2025-08-02 22:19.17 ---> saved as "42acfd97ba2129a9e34a426a15cbdd19d97d6318186c060b8226b005a9b7c296" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-142-generic The OCaml toplevel, version 5.3.0 2.4.1 2025-08-02 22:19.17 ---> saved as "5c539334f7daa882dd9a8279c3112442b04dbafc75ca75009b1c044b726ce5c4" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-08-02 22:19.18 ---> saved as "d6d84bbff321ba13d7949c31688b1af7860219b3bb3cfdb33786f4e8dd5d0763" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 74f2312be1e7de49f12bf4ecaa2a59f50e6d195f || git fetch origin master) && git reset -q --hard 74f2312be1e7de49f12bf4ecaa2a59f50e6d195f && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD ee8b9193dd..74f2312be1 master -> origin/master 74f2312be1 Merge pull request #28286 from SGrondin/core-unix-alpine <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+file:///home/opam/opam-repository Already up-to-date. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-08-02 22:19.44 ---> saved as "08f2ae179f5625ff82d76e448b7583c08308d997a2b8f80b30830c60fa972963" /src: (copy (src dunolint.opam dunolint-tests.opam dunolint-lib.opam dunolint-dev.opam) (dst ./)) 2025-08-02 22:19.45 ---> saved as "58ece6f1574eb0d4a0a94cbfefae65e70d5fd404758fafe8e5ff656ae1ed4ed2" /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) [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) [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) 2025-08-02 22:19.53 ---> saved as "41ac86358a2381e3290fb108d88a496b6d17298c06ebd10fc383607ea4d755a5" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-08-02 22:19.53 ---> saved as "f36bc1081ec2a1037bf8419a93f89305bf0c511134745e3ab93577c7d534417b" /src: (env DEPS "astring.0.8.5 base.v0.17.3 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.1 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.1 dune-configurator.3.19.1 dyn.3.19.1 expect_test_helpers_core.v0.17.0 fieldslib.v0.17.0 file-rewriter.0.0.3 fmt.0.11.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.9.0 mdx.2.5.0 num.1.6 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.1 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.1 ppx_bin_prot.v0.17.1 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.1 ppx_disable_unused_warnings.v0.17.0 ppx_enumerate.v0.17.0 ppx_expect.v0.17.3 ppx_fields_conv.v0.17.0 ppx_fixed_literal.v0.17.0 ppx_globalize.v0.17.2 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_ignore_instrumentation.v0.17.0 ppx_inline_test.v0.17.1 ppx_jane.v0.17.0 ppx_let.v0.17.1 ppx_log.v0.17.0 ppx_module_timer.v0.17.0 ppx_optcomp.v0.17.1 ppx_optional.v0.17.0 ppx_pipebang.v0.17.0 ppx_sexp_conv.v0.17.1 ppx_sexp_message.v0.17.0 ppx_sexp_value.v0.17.0 ppx_stable.v0.17.1 ppx_stable_witness.v0.17.0 ppx_string.v0.17.0 ppx_string_conv.v0.17.0 ppx_tydi.v0.17.1 ppx_typerep_conv.v0.17.1 ppx_variants_conv.v0.17.1 ppxlib.0.36.0 ppxlib_jane.v0.17.4 re.1.13.2 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.1 time_now.v0.17.0 timezone.v0.17.0 topkg.1.1.0 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.4 --depext-only -y dunolint.dev dunolint-tests.dev dunolint-lib.dev dunolint-dev.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://security.ubuntu.com/ubuntu oracular-security InRelease - Hit:2 http://archive.ubuntu.com/ubuntu oracular InRelease - Hit:3 http://archive.ubuntu.com/ubuntu oracular-updates InRelease - Hit:4 http://archive.ubuntu.com/ubuntu oracular-backports InRelease - Reading package lists... - <><> 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-08-02 22:20.10 ---> saved as "aebd3a8f82bb618f2c455d7db995254a4dd46859a99326315d4df708e0ee582f" /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 101 packages - install astring 0.8.5 - install base v0.17.3 - install base_bigstring v0.17.0 - install base_quickcheck v0.17.1 - 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.1 - install dune-configurator 3.19.1 - install dyn 3.19.1 - install expect_test_helpers_core v0.17.0 - install fieldslib v0.17.0 - install file-rewriter 0.0.3 - install fmt 0.11.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.9.0 - install mdx 2.5.0 - install num 1.6 - 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.1 - 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.1 - install ppx_bin_prot v0.17.1 - 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.1 - install ppx_disable_unused_warnings v0.17.0 - install ppx_enumerate v0.17.0 - install ppx_expect v0.17.3 - install ppx_fields_conv v0.17.0 - install ppx_fixed_literal v0.17.0 - install ppx_globalize v0.17.2 - 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.1 - install ppx_jane v0.17.0 - install ppx_let v0.17.1 - install ppx_log v0.17.0 - install ppx_module_timer v0.17.0 - install ppx_optcomp v0.17.1 - install ppx_optional v0.17.0 - install ppx_pipebang v0.17.0 - install ppx_sexp_conv v0.17.1 - install ppx_sexp_message v0.17.0 - install ppx_sexp_value v0.17.0 - install ppx_stable v0.17.1 - 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.1 - install ppx_typerep_conv v0.17.1 - install ppx_variants_conv v0.17.1 - install ppxlib 0.36.0 - install ppxlib_jane v0.17.4 - install re 1.13.2 - 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.1 - install time_now v0.17.0 - install timezone v0.17.0 - install topkg 1.1.0 - install typerep v0.17.1 - install uopt v0.17.0 - install variantslib v0.17.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved astring.0.8.5 (cached) -> retrieved base.v0.17.3 (cached) -> retrieved base_bigstring.v0.17.0 (cached) -> retrieved base_quickcheck.v0.17.1 (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 core.v0.17.1 (cached) -> retrieved cmdlang.0.0.9, cmdlang-stdlib-runner.0.0.9, cmdlang-to-cmdliner.0.0.9 (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.11.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved gel.v0.17.0 (cached) -> retrieved fpath-base.0.3.1, fpath-sexp0.0.3.1 (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.9.0 (cached) -> retrieved num.1.6 (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 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 ppx_assert.v0.17.0 (cached) -> retrieved pplumbing.0.0.14 (cached) -> retrieved ppx_base.v0.17.0 (cached) -> retrieved ppx_bench.v0.17.1 (cached) -> retrieved ppx_bin_prot.v0.17.1 (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_disable_unused_warnings.v0.17.0 (cached) -> retrieved ppx_diff.v0.17.1 (cached) -> retrieved ppx_enumerate.v0.17.0 (cached) -> retrieved ppx_expect.v0.17.3 (cached) -> retrieved ppx_fields_conv.v0.17.0 (cached) -> retrieved ppx_fixed_literal.v0.17.0 (cached) -> retrieved ppx_globalize.v0.17.2 (cached) -> retrieved ppx_hash.v0.17.0 (cached) -> retrieved dune.3.19.1, dune-configurator.3.19.1, dyn.3.19.1, ordering.3.19.1, stdune.3.19.1 (cached) -> retrieved ppx_here.v0.17.0 (cached) -> retrieved ppx_ignore_instrumentation.v0.17.0 (cached) -> retrieved ppx_inline_test.v0.17.1 (cached) -> retrieved ppx_jane.v0.17.0 (cached) -> retrieved ppx_let.v0.17.1 (cached) -> retrieved ppx_log.v0.17.0 (cached) -> retrieved ppx_module_timer.v0.17.0 (cached) -> retrieved ppx_optcomp.v0.17.1 (cached) -> retrieved ppx_optional.v0.17.0 (cached) -> retrieved ppx_pipebang.v0.17.0 (cached) -> retrieved ppx_sexp_message.v0.17.0 (cached) -> retrieved ppx_sexp_conv.v0.17.1 (cached) -> retrieved ppx_sexp_value.v0.17.0 (cached) -> installed cmdliner.1.3.0 -> installed num.1.6 -> installed ocamlbuild.0.16.1 -> retrieved ppx_stable.v0.17.1 (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.1 (cached) -> retrieved ppx_typerep_conv.v0.17.1 (cached) -> retrieved ppx_variants_conv.v0.17.1 (cached) -> retrieved ppxlib_jane.v0.17.4 (cached) -> retrieved re.1.13.2 (cached) -> retrieved seq.base (cached) -> installed seq.base -> 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) -> 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 topkg.1.1.0 (cached) -> retrieved uopt.v0.17.0 (cached) -> retrieved variantslib.v0.17.0 (cached) -> retrieved ppxlib.0.36.0 (cached) -> installed ocamlfind.1.9.8 -> installed topkg.1.1.0 -> installed fmt.0.11.0 -> installed astring.0.8.5 -> installed fpath.0.7.3 -> installed logs.0.9.0 -> installed dune.3.19.1 -> 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 re.1.13.2 -> installed result.1.5 -> installed sexplib0.v0.17.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.1 -> installed parsexp.v0.17.0 -> installed dune-configurator.3.19.1 -> installed mdx.2.5.0 -> installed dyn.3.19.1 -> installed sexplib.v0.17.0 -> installed stdune.3.19.1 -> installed loc.0.2.2 -> installed file-rewriter.0.0.3 -> installed pplumbing.0.0.14 -> installed sexps-rewriter.0.0.3 -> installed base.v0.17.3 -> 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.36.0 -> installed ppx_optcomp.v0.17.1 -> installed ppxlib_jane.v0.17.4 -> installed ppx_tydi.v0.17.1 -> installed ppx_disable_unused_warnings.v0.17.0 -> installed ppx_cold.v0.17.0 -> installed ppx_here.v0.17.0 -> installed ppx_stable_witness.v0.17.0 -> installed ppx_typerep_conv.v0.17.1 -> installed ppx_variants_conv.v0.17.1 -> installed ppx_fields_conv.v0.17.0 -> installed ppx_stable.v0.17.1 -> installed ppx_pipebang.v0.17.0 -> installed ppx_ignore_instrumentation.v0.17.0 -> installed ppx_fixed_literal.v0.17.0 -> installed ppx_enumerate.v0.17.0 -> installed ppx_globalize.v0.17.2 -> installed ppx_compare.v0.17.0 -> installed ppx_optional.v0.17.0 -> installed ppx_sexp_conv.v0.17.1 -> installed ppx_let.v0.17.1 -> installed ppx_hash.v0.17.0 -> installed ppx_sexp_value.v0.17.0 -> installed ppx_assert.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.1 -> installed ppx_string_conv.v0.17.0 -> installed ppx_module_timer.v0.17.0 -> installed ppx_inline_test.v0.17.1 -> installed ppx_bench.v0.17.1 -> installed ppx_expect.v0.17.3 -> installed splittable_random.v0.17.0 -> installed ppx_log.v0.17.0 -> installed base_quickcheck.v0.17.1 -> 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.1 -> 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-08-02 22:22.59 ---> saved as "d38abb9cce3aa48f994e532eb93318727f29633fa0fbbf2e316d8bec544859c1" /src: (copy (src .) (dst /src)) 2025-08-02 22:23.00 ---> saved as "fcdf88dcf026f7d6703ba22ffc4eb5983566c8d75513e680eae30d436e1635fc" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) 2025-08-02 22:23.12 ---> saved as "28b16eeda56b579b859612f0bbcd7fb2150887a4c1dc44442f462685b64c98b2" Job succeeded 2025-08-02 22:23.13: Job succeeded