(for PR #29568)

2026-03-23 09:19.14: New job: test ocamlformat.0.24.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29568/head (353fd9234f0397ed1edb6d612e5b9da8472dea1c)
                              on debian-13-ocaml-4.13/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29568/head" && git reset --hard 353fd923
git fetch origin master
git merge --no-edit 63b7ba71be83567e54bb667df0f2bb374d74fb61
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.13@sha256:d8e3b8b0849171c0332a08c9b6e0c29a16d9e6e6e62b2cd69f89fc3c33d9439b
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocamlformat.0.24.1 0.24.1
RUN opam reinstall ocamlformat.0.24.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocamlformat.0.24.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test ocamlformat.0.24.1) || true
RUN opam reinstall --with-test --verbose ocamlformat.0.24.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocamlformat.0.24.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-23 09:19.14: Using cache hint "ocaml/opam:debian-13-ocaml-4.13@sha256:d8e3b8b0849171c0332a08c9b6e0c29a16d9e6e6e62b2cd69f89fc3c33d9439b-ocamlformat.0.24.1-353fd9234f0397ed1edb6d612e5b9da8472dea1c"
2026-03-23 09:19.14: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.13@sha256:d8e3b8b0849171c0332a08c9b6e0c29a16d9e6e6e62b2cd69f89fc3c33d9439b)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ocamlformat.0.24.1 0.24.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocamlformat.0.24.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocamlformat.0.24.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test ocamlformat.0.24.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose ocamlformat.0.24.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocamlformat.0.24.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-23 09:19.14: Waiting for resource in pool OCluster
2026-03-23 09:19.20: Waiting for worker…
2026-03-23 09:22.53: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  76% (14220/18511)
Updating files:  77% (14254/18511)
Updating files:  78% (14439/18511)
Updating files:  79% (14624/18511)
Updating files:  80% (14809/18511)
Updating files:  81% (14994/18511)
Updating files:  82% (15180/18511)
Updating files:  83% (15365/18511)
Updating files:  84% (15550/18511)
Updating files:  85% (15735/18511)
Updating files:  86% (15920/18511)
Updating files:  87% (16105/18511)
Updating files:  88% (16290/18511)
Updating files:  89% (16475/18511)
Updating files:  90% (16660/18511)
Updating files:  91% (16846/18511)
Updating files:  92% (17031/18511)
Updating files:  93% (17216/18511)
Updating files:  94% (17401/18511)
Updating files:  95% (17586/18511)
Updating files:  96% (17771/18511)
Updating files:  97% (17956/18511)
Updating files:  98% (18141/18511)
Updating files:  99% (18326/18511)
Updating files: 100% (18511/18511)
Updating files: 100% (18511/18511), done.
HEAD is now at 63b7ba71be Merge pull request #29573 from davesnx/release-parseff-0.2.0
Merge made by the 'ort' strategy.
 packages/ocamlformat-lib/ocamlformat-lib.0.25.1/opam | 1 +
 packages/ocamlformat-lib/ocamlformat-lib.0.26.0/opam | 1 +
 packages/ocamlformat-lib/ocamlformat-lib.0.26.1/opam | 1 +
 packages/ocamlformat-lib/ocamlformat-lib.0.26.2/opam | 1 +
 packages/ocamlformat-lib/ocamlformat-lib.0.27.0/opam | 1 +
 packages/ocamlformat-lib/ocamlformat-lib.0.28.1/opam | 1 +
 packages/ocamlformat-lib/ocamlformat-lib.0.29.0/opam | 1 +
 packages/ocamlformat/ocamlformat.0.24.1/opam         | 1 +
 8 files changed, 8 insertions(+)

(from ocaml/opam:debian-13-ocaml-4.13@sha256:d8e3b8b0849171c0332a08c9b6e0c29a16d9e6e6e62b2cd69f89fc3c33d9439b)
2026-03-23 09:23.09 ---> using "46163b6cfcf170c850d3ba02ec5e8d7eb76bdebcc8b9a1c3d181893b5729379c" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-23 09:23.09 ---> using "b2f3e91a047d83e37ff09dab47606e22481b3bd9227c7a85c951176ee647ccc8" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-23 09:23.09 ---> using "ecaf698c4a59a0567268ded803c7d02bec9ad64abad4fe26816fa1aa20dd1c08" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.13
# invariant            ["ocaml-base-compiler" {= "4.13.1"}]
# compiler-packages    ocaml-base-compiler.4.13.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.13/lib/ocaml/stublibs:/home/opam/.opam/4.13/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.13.1
2026-03-23 09:23.09 ---> using "bf8d7fdb6b804a8215674460874aac9f0aa8198f5529c933351afa74fc3ea1e0" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-23 09:23.09 ---> using "701fb508860f55c096d562769b896b5a1fec89903ff0a7c701e8c893383ddc3f" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-23 09:23.10 ---> using "beac6b49c9f9608488a72a1bc30f8c3a2b49493064957f403c0f4ba637d4434b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-23 09:23.11 ---> saved as "34d8f1dec803f953fe66161e21a168522ae50cc469aee90015bcb137a4e00b43"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 21s (475 kB/s)
- Reading package lists...
- 
2026-03-23 09:23.34 ---> saved as "0b3dc0d1bbd2284e74c5a136d441c0f28fa6b802a37739c63e675903c38d7ad7"

/home/opam: (run (shell "opam pin add -k version -yn ocamlformat.0.24.1 0.24.1"))
ocamlformat is now pinned to version 0.24.1
2026-03-23 09:23.36 ---> saved as "da420226b6ff05ab496831e5df2da77eb697a8a4f5427005a92e6ad39220dc1d"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocamlformat.0.24.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocamlformat.0.24.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocamlformat.0.24.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 30 packages
  - install astring           0.8.5           [required by fpath, odoc-parser]
  - install base              v0.15.1         [required by ocamlformat]
  - install camlp-streams     5.0.1           [required by odoc-parser]
  - install cmdliner          1.3.0           [required by ocamlformat]
  - install csexp             1.5.2           [required by ocamlformat]
  - install dune              3.22.0          [required by ocamlformat]
  - install dune-build-info   3.22.0          [required by ocamlformat]
  - install dune-configurator 3.22.0          [required by base]
  - install either            1.0.0           [required by ocamlformat]
  - install fix               20250919        [required by ocamlformat]
  - install fpath             0.7.3           [required by ocamlformat]
  - install menhir            20260209        [required by ocamlformat]
  - install menhirCST         20260209        [required by menhir]
  - install menhirGLR         20260209        [required by menhir]
  - install menhirLib         20260209        [required by ocamlformat]
  - install menhirSdk         20260209        [required by ocamlformat]
  - install ocaml-version     3.5.0           [required by ocamlformat]
  - install ocamlbuild        0.16.1          [required by fpath, uuseg]
  - install ocamlfind         1.9.8           [required by ocp-indent, fpath, uuseg]
  - install ocamlformat       0.24.1 (pinned)
  - install ocp-indent        1.9.0           [required by ocamlformat]
  - install odoc-parser       2.0.0           [required by ocamlformat]
  - install re                1.14.0          [required by ocamlformat]
  - install result            1.5             [required by odoc-parser]
  - install sexplib0          v0.15.1         [required by base]
  - install stdio             v0.15.0         [required by ocamlformat]
  - install topkg             1.1.1           [required by fpath, uuseg]
  - install uucp              15.0.0          [required by uuseg]
  - install uuseg             15.0.0          [required by ocamlformat]
  - install uutf              1.0.4           [required by ocamlformat]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.15.1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.22.0, dune-build-info.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved fix.20250919  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed cmdliner.1.3.0
-> retrieved ocaml-version.3.5.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlformat.0.24.1  (cached)
-> retrieved ocp-indent.1.9.0  (cached)
-> retrieved odoc-parser.2.0.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved sexplib0.v0.15.1  (cached)
-> retrieved stdio.v0.15.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uucp.15.0.0  (cached)
-> retrieved uuseg.15.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.22.0
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed dune-build-info.3.22.0
-> installed either.1.0.0
-> installed fix.20250919
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-version.3.5.0
-> installed re.1.14.0
-> installed ocp-indent.1.9.0
-> installed result.1.5
-> installed sexplib0.v0.15.1
-> installed odoc-parser.2.0.0
-> installed dune-configurator.3.22.0
-> installed uucp.15.0.0
-> installed uuseg.15.0.0
-> installed base.v0.15.1
-> installed stdio.v0.15.0
-> installed menhir.20260209
-> installed ocamlformat.0.24.1
Done.

<><> ocp-indent.1.9.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:

   * for Emacs, add these lines to ~/.emacs:
     (add-to-list 'load-path "/home/opam/.opam/4.13/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/home/opam/.opam/4.13/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2026-03-23 09:25.22 ---> saved as "5b4604be92b19dd79dfa26a358b740338652e124d71ea991489f9bbc13319a02"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ocamlformat.0.24.1) || true"))
The following actions will be performed:
=== downgrade 4 packages
  - downgrade dune                3.22.0 to 3.21.1 [required by ocamlformat]
  - downgrade dune-build-info     3.22.0 to 3.21.1 [required by ocamlformat]
  - downgrade dune-configurator   3.22.0 to 3.21.1 [uses dune]
  - downgrade ocp-indent          1.9.0 to 1.8.1   [required by ocamlformat]
=== recompile 17 packages
  - recompile base                v0.15.1          [uses dune]
  - recompile camlp-streams       5.0.1            [uses dune]
  - recompile csexp               1.5.2            [uses dune]
  - recompile either              1.0.0            [uses dune]
  - recompile fix                 20250919         [uses dune]
  - recompile menhir              20260209         [uses dune]
  - recompile menhirCST           20260209         [uses dune]
  - recompile menhirGLR           20260209         [uses dune]
  - recompile menhirLib           20260209         [uses dune]
  - recompile menhirSdk           20260209         [uses dune]
  - recompile ocaml-version       3.5.0            [uses dune]
  - recompile ocamlformat         0.24.1 (pinned)
  - recompile odoc-parser         2.0.0            [uses dune]
  - recompile re                  1.14.0           [uses dune]
  - recompile result              1.5              [uses dune]
  - recompile sexplib0            v0.15.1          [uses dune]
  - recompile stdio               v0.15.0          [uses dune]
=== install 6 packages
  - install   alcotest            1.9.1            [required by ocamlformat]
  - install   base-bytes          base             [required by ocp-indent]
  - install   fmt                 0.11.0           [required by alcotest]
  - install   ocaml-syntax-shims  1.0.0            [required by alcotest]
  - install   ocamlformat-rpc-lib 0.24.1           [required by ocamlformat]
  - install   stdlib-shims        0.3.0            [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved base.v0.15.1  (https://opam.ocaml.org/cache)
-> installed base-bytes.base
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> retrieved dune.3.21.1, dune-build-info.3.21.1, dune-configurator.3.21.1  (https://opam.ocaml.org/cache)
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved fix.20250919  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (https://opam.ocaml.org/cache)
-> installed fmt.0.11.0
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.3.5.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlformat.0.24.1, ocamlformat-rpc-lib.0.24.1  (https://opam.ocaml.org/cache)
-> retrieved ocp-indent.1.8.1  (https://opam.ocaml.org/cache)
-> retrieved odoc-parser.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved result.1.5  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.15.1  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.15.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> removed   ocamlformat.0.24.1
-> removed   dune-build-info.3.22.0
-> removed   either.1.0.0
-> removed   fix.20250919
-> removed   menhir.20260209
-> removed   menhirCST.20260209
-> removed   menhirGLR.20260209
-> removed   menhirLib.20260209
-> removed   menhirSdk.20260209
-> removed   ocaml-version.3.5.0
-> removed   ocp-indent.1.9.0
-> removed   odoc-parser.2.0.0
-> removed   camlp-streams.5.0.1
-> removed   re.1.14.0
-> removed   result.1.5
-> removed   stdio.v0.15.0
-> removed   base.v0.15.1
-> removed   dune-configurator.3.22.0
-> removed   csexp.1.5.2
-> removed   sexplib0.v0.15.1
-> removed   dune.3.22.0
-> installed dune.3.21.1
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed fix.20250919
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-version.3.5.0
-> installed ocp-indent.1.8.1
-> installed re.1.14.0
-> installed result.1.5
-> installed sexplib0.v0.15.1
-> installed stdlib-shims.0.3.0
-> installed ocamlformat-rpc-lib.0.24.1
-> installed odoc-parser.2.0.0
-> installed dune-build-info.3.21.1
-> installed alcotest.1.9.1
-> installed dune-configurator.3.21.1
-> installed base.v0.15.1
-> installed menhir.20260209
-> installed stdio.v0.15.0
-> installed ocamlformat.0.24.1
Done.

<><> ocp-indent.1.8.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:

   * for Emacs, add these lines to ~/.emacs:
     (add-to-list 'load-path "/home/opam/.opam/4.13/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/home/opam/.opam/4.13/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2026-03-23 09:27.10 ---> saved as "95b349969e005fbbdc3d16872472846b7e5ff97e13b83c0cba40bb149cbb3a99"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ocamlformat.0.24.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocamlformat.0.24.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile ocamlformat 0.24.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ocamlformat: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocamlformat" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.13/.opam-switch/build/ocamlformat.0.24.1)
- (cd _build/default && /home/opam/.opam/4.13/bin/ocamlc.opt -w -40 -noassert -g -bin-annot -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I /home/opam/.opam/4.13/lib/fix -I /home/opam/.opam/4.13/lib/menhirLib -I /home/opam/.opam/4.13/lib/menhirSdk -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/byte/dune__exe__Synthesis.cmo -c -impl vendor/parser-recovery/menhir-recover/synthesis.ml)
- File "vendor/parser-recovery/menhir-recover/synthesis.ml", line 194, characters 15-29:
- 194 |               (Lr1.reductions st)
-                      ^^^^^^^^^^^^^^
- Alert deprecated: G.Lr1.reductions
- Please use [get_reductions]
- (cd _build/default && /home/opam/.opam/4.13/bin/ocamlopt.opt -w -40 -noassert -g -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I vendor/parser-recovery/menhir-recover/.main.eobjs/native -I /home/opam/.opam/4.13/lib/fix -I /home/opam/.opam/4.13/lib/menhirLib -I /home/opam/.opam/4.13/lib/menhirSdk -intf-suffix .ml -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/native/dune__exe__Synthesis.cmx -c -impl vendor/parser-recovery/menhir-recover/synthesis.ml)
- File "vendor/parser-recovery/menhir-recover/synthesis.ml", line 194, characters 15-29:
- 194 |               (Lr1.reductions st)
-                      ^^^^^^^^^^^^^^
- Alert deprecated: G.Lr1.reductions
- Please use [get_reductions]
- (cd _build/default && /home/opam/.opam/4.13/bin/ocamlc.opt -w -40 -noassert -g -bin-annot -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I /home/opam/.opam/4.13/lib/fix -I /home/opam/.opam/4.13/lib/menhirLib -I /home/opam/.opam/4.13/lib/menhirSdk -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/byte/dune__exe__Main.cmo -c -impl vendor/parser-recovery/menhir-recover/main.ml)
- File "vendor/parser-recovery/menhir-recover/main.ml", line 47, characters 11-25:
- 47 |           (Lr1.reductions st));
-                 ^^^^^^^^^^^^^^
- Alert deprecated: G.Lr1.reductions
- Please use [get_reductions]
- (cd _build/default && /home/opam/.opam/4.13/bin/ocamlopt.opt -w -40 -noassert -g -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I vendor/parser-recovery/menhir-recover/.main.eobjs/native -I /home/opam/.opam/4.13/lib/fix -I /home/opam/.opam/4.13/lib/menhirLib -I /home/opam/.opam/4.13/lib/menhirSdk -intf-suffix .ml -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/native/dune__exe__Main.cmx -c -impl vendor/parser-recovery/menhir-recover/main.ml)
- File "vendor/parser-recovery/menhir-recover/main.ml", line 47, characters 11-25:
- 47 |           (Lr1.reductions st));
-                 ^^^^^^^^^^^^^^
- Alert deprecated: G.Lr1.reductions
- Please use [get_reductions]
- (cd _build/default/test/unit && ./test_unit.exe)
- Testing `ocamlformat'.
- This run has ID `8YNWB098'.
- 
-   [OK]          Location                               0   compare_width_decr...
-   [OK]          Location                               1   compare_width_decr...
-   [OK]          Location                               2   compare_width_decr...
-   [OK]          Location                               3   compare_width_decr...
-   [OK]          non overlapping interval tree          0   dump: empty.
-   [OK]          non overlapping interval tree          1   dump: singleton.
-   [OK]          non overlapping interval tree          2   dump: disjoint.
-   [OK]          non overlapping interval tree          3   dump: same start.
-   [OK]          non overlapping interval tree          4   dump: same end.
-   [OK]          non overlapping interval tree          5   dump: inclusion.
-   [OK]          non overlapping interval tree          6   roots: empty.
-   [OK]          non overlapping interval tree          7   roots: singleton.
-   [OK]          non overlapping interval tree          8   roots: disjoint.
-   [OK]          non overlapping interval tree          9   roots: inclusion.
-   [OK]          non overlapping interval tree         10   children: empty.
-   [OK]          non overlapping interval tree         11   children: no child...
-   [OK]          non overlapping interval tree         12   children: not pres...
-   [OK]          non overlapping interval tree         13   children: one level.
-   [OK]          non overlapping interval tree         14   children: two levels.
-   [OK]          non overlapping interval tree         15   children: no parti...
-   [OK]          Ast                                    0   !.
-   [OK]          Ast                                    1   ?.
-   [OK]          Ast                                    2   ~.
-   [OK]          Ast                                    3   *.
-   [OK]          Ast                                    4   +.
-   [OK]          Ast                                    5   !=.
-   [OK]          Ast                                    6   land.
-   [OK]          Ast                                    7   lor.
-   [OK]          Ast                                    8   ||.
-   [OK]          Ast                                    9   @.
-   [OK]          Ast                                   10   ::.
-   [OK]          Ast                                   11   :=.
-   [OK]          Ast                                   12   let+.
-   [OK]          Ast                                   13   and+.
-   [OK]          Ast                                   14   .().
-   [OK]          Ast                                   15   .*().
-   [OK]          Ast                                   16   .*(;..).
-   [OK]          Ast                                   17   .[].
-   [OK]          Ast                                   18   .*[].
-   [OK]          Ast                                   19   .*[;..].
-   [OK]          Ast                                   20   .{}.
-   [OK]          Ast                                   21   .*{}.
-   [OK]          Ast                                   22   .*{;..}.
-   [OK]          Ast                                   23   .{}<-.
-   [OK]          Ast                                   24   .*{}<-.
-   [OK]          Ast                                   25   .*{;..}<-.
-   [OK]          Ast                                   26   let.
-   [OK]          Ast                                   27   let+abc.
-   [OK]          Ast                                   28   and.
-   [OK]          Ast                                   29   *.
-   [OK]          Ast                                   30   +.
-   [OK]          Ast                                   31   !=.
-   [OK]          Ast                                   32   land.
-   [OK]          Ast                                   33   lor.
-   [OK]          Ast                                   34   ||.
-   [OK]          Ast                                   35   @.
-   [OK]          Ast                                   36   ::.
-   [OK]          Ast                                   37   :=.
-   [OK]          Ast                                   38   let+.
-   [OK]          Ast                                   39   and+.
-   [OK]          Ast                                   40   let.
-   [OK]          Ast                                   41   let+abc.
-   [OK]          Ast                                   42   and.
-   [OK]          Ast                                   43   .().
-   [OK]          Ast                                   44   .*().
-   [OK]          Ast                                   45   .*(;..).
-   [OK]          Ast                                   46   .[].
-   [OK]          Ast                                   47   .*[].
-   [OK]          Ast                                   48   .*[;..].
-   [OK]          Ast                                   49   .{}.
-   [OK]          Ast                                   50   .*{}.
-   [OK]          Ast                                   51   .*{;..}.
-   [OK]          Ast                                   52   .{}<-.
-   [OK]          Ast                                   53   .*{}<-.
-   [OK]          Ast                                   54   .*{;..}<-.
-   [OK]          Ast                                   55   *.
-   [OK]          Ast                                   56   +.
-   [OK]          Ast                                   57   !=.
-   [OK]          Ast                                   58   land.
-   [OK]          Ast                                   59   lor.
-   [OK]          Ast                                   60   ||.
-   [OK]          Ast                                   61   @.
-   [OK]          Ast                                   62   ::.
-   [OK]          Ast                                   63   :=.
-   [OK]          Ast                                   64   let+.
-   [OK]          Ast                                   65   and+.
-   [OK]          Ast                                   66   .().
-   [OK]          Ast                                   67   .*().
-   [OK]          Ast                                   68   .*(;..).
-   [OK]          Ast                                   69   .[].
-   [OK]          Ast                                   70   .*[].
-   [OK]          Ast                                   71   .*[;..].
-   [OK]          Ast                                   72   .{}.
-   [OK]          Ast                                   73   .*{}.
-   [OK]          Ast                                   74   .*{;..}.
-   [OK]          Ast                                   75   .{}<-.
-   [OK]          Ast                                   76   .*{}<-.
-   [OK]          Ast                                   77   .*{;..}<-.
-   [OK]          Ast                                   78   let.
-   [OK]          Ast                                   79   let+abc.
-   [OK]          Ast                                   80   and.
-   [OK]          Ast                                   81   #.
-   [OK]          Ast                                   82   #.
-   [OK]          Ast                                   83   ##.
-   [OK]          Ast                                   84   #++.
-   [OK]          Ast                                   85   #---#.
-   [OK]          Ast                                   86   let.
-   [OK]          Ast                                   87   let+abc.
-   [OK]          Ast                                   88   and.
-   [OK]          Ast                                   89   *.
-   [OK]          Ast                                   90   +.
-   [OK]          Ast                                   91   !=.
-   [OK]          Ast                                   92   land.
-   [OK]          Ast                                   93   lor.
-   [OK]          Ast                                   94   ||.
-   [OK]          Ast                                   95   @.
-   [OK]          Ast                                   96   ::.
-   [OK]          Ast                                   97   :=.
-   [OK]          Ast                                   98   let+.
-   [OK]          Ast                                   99   and+.
-   [OK]          Ast                                  100   .().
-   [OK]          Ast                                  101   .*().
-   [OK]          Ast                                  102   .*(;..).
-   [OK]          Ast                                  103   .[].
-   [OK]          Ast                                  104   .*[].
-   [OK]          Ast                                  105   .*[;..].
-   [OK]          Ast                                  106   .{}.
-   [OK]          Ast                                  107   .*{}.
-   [OK]          Ast                                  108   .*{;..}.
-   [OK]          Ast                                  109   .{}<-.
-   [OK]          Ast                                  110   .*{}<-.
-   [OK]          Ast                                  111   .*{;..}<-.
-   [OK]          Ast                                  112   let+.
-   [OK]          Ast                                  113   and+.
-   [OK]          Ast                                  114   *.
-   [OK]          Ast                                  115   +.
-   [OK]          Ast                                  116   !=.
-   [OK]          Ast                                  117   let.
-   [OK]          Ast                                  118   let+abc.
-   [OK]          Ast                                  119   and.
-   [OK]          Ast                                  120   and#.
-   [OK]          Ast                                  121   land.
-   [OK]          Ast                                  122   lor.
-   [OK]          Ast                                  123   ||.
-   [OK]          Ast                                  124   @.
-   [OK]          Ast                                  125   ::.
-   [OK]          Ast                                  126   :=.
-   [OK]          Ast                                  127   .().
-   [OK]          Ast                                  128   .*().
-   [OK]          Ast                                  129   .*(;..).
-   [OK]          Ast                                  130   .[].
-   [OK]          Ast                                  131   .*[].
-   [OK]          Ast                                  132   .*[;..].
-   [OK]          Ast                                  133   .{}.
-   [OK]          Ast                                  134   .*{}.
-   [OK]          Ast                                  135   .*{;..}.
-   [OK]          Ast                                  136   .{}<-.
-   [OK]          Ast                                  137   .*{}<-.
-   [OK]          Ast                                  138   .*{;..}<-.
-   [OK]          Indent                                 0   Partial_ast.indent...
-   [OK]          Indent                                 1   Partial_ast.indent...
-   [OK]          Indent                                 2   Partial_ast.indent...
-   [OK]          Indent                                 3   Partial_ast.indent...
-   [OK]          Literal_lexer                          0   string: string: no...
-   [OK]          Literal_lexer                          1   string: simple (pr...
-   [OK]          Literal_lexer                          2   string: simple (no...
-   [OK]          Literal_lexer                          3   string: numeric es...
-   [OK]          Literal_lexer                          4   string: numeric es...
-   [OK]          Literal_lexer                          5   string: raw tab (p...
-   [OK]          Literal_lexer                          6   string: raw tab (n...
-   [OK]          Literal_lexer                          7   string: backslash ...
-   [OK]          Literal_lexer                          8   string: backslash ...
-   [OK]          Literal_lexer                          9   string: backslash ...
-   [OK]          Literal_lexer                         10   string: backslash ...
-   [OK]          Literal_lexer                         11   char: not a charac...
-   [OK]          Literal_lexer                         12   char: escaped newl...
-   [OK]          Literal_lexer                         13   char: letter.
-   [OK]          Literal_lexer                         14   char: escaped back...
-   [OK]          Literal_lexer                         15   char: escaped sing...
-   [OK]          Literal_lexer                         16   char: escaped doub...
-   [OK]          Literal_lexer                         17   char: backslash n.
-   [OK]          Literal_lexer                         18   char: backslash t.
-   [OK]          Literal_lexer                         19   char: backslash b.
-   [OK]          Literal_lexer                         20   char: backslash r.
-   [OK]          Literal_lexer                         21   char: backslash sp...
-   [OK]          Literal_lexer                         22   char: decimal escape.
-   [OK]          Literal_lexer                         23   char: octal escape.
-   [OK]          Literal_lexer                         24   char: hex escape.
-   [OK]          Fmt                                    0   lazy_: not using l...
-   [OK]          Fmt                                    1   lazy_: using lazy.
-   [OK]          Fmt                                    2   list_pn: evaluatio...
-   [OK]          Fmt                                    3   list_pn: does not ...
-   [OK]          Fmt                                    4   list_k: evaluation...
-   [OK]          Fmt                                    5   list_k: does not c...
-   [OK]          Fmt                                    6   sequence: 1 element.
-   [OK]          Fmt                                    7   sequence: empty list.
-   [OK]          Fmt                                    8   sequence: list.
-   [OK]          Fmt                                    9   sequence: long list.
-   [OK]          Range                                  0   make: "" None.
-   [OK]          Range                                  1   make: "" (0, 0).
-   [OK]          Range                                  2   make: "" (1, 0).
-   [OK]          Range                                  3   make: "" (-1, -1).
-   [OK]          Range                                  4   make: "" (1, 1).
-   [OK]          Range                                  5   make: "\n" None.
-   [OK]          Range                                  6   make: "\n" (0, 0).
-   [OK]          Range                                  7   make: "\n" (1, 0).
-   [OK]          Range                                  8   make: "\n" (-1, -1).
-   [OK]          Range                                  9   make: "\n" (1, 2).
-   [OK]          Range                                 10   make: "xxxx\nxxxxx...
-   [OK]          Range                                 11   make: "xxxx\nxxxxx...
-   [OK]          Range                                 12   make: "xxxx\nxxxxx...
-   [OK]          Range                                 13   make: "\n\n" None.
-   [OK]          Range                                 14   make: "\n\n" (0, 0).
-   [OK]          Range                                 15   make: "\n\n" (1, 2).
-   [OK]          Range                                 16   make: "\nxxxx\nxxx...
-   [OK]          Range                                 17   make: "xxx\nxxxx\n...
-   [OK]          Range                                 18   make: "xxx\nxxxx\n...
-   [OK]          Range                                 19   make: "xxx\nxxxx\n...
-   [OK]          Range                                 20   make: "xxx\nxxxx\n...
-   [OK]          Range                                 21   make: "xxx\nxxxx\n...
-   [OK]          Range                                 22   make: "xxx\nxxxx\n...
-   [OK]          Range                                 23   make: "xxx\nxxxx\n...
-   [OK]          Range                                 24   make: "xxx\nxxxx\n...
-   [OK]          Translation_unit                       0   parse_and_format s...
-   [OK]          Translation_unit                       1   parse_and_format u...
-   [OK]          Translation_unit                       2   parse_and_format c...
-   [OK]          Translation_unit                       3   parse_and_format c...
-   [OK]          Translation_unit                       4   parse_and_format c...
-   [OK]          Translation_unit                       5   parse_and_format c...
-   [OK]          Translation_unit                       6   parse_and_format c...
-   [OK]          Translation_unit                       7   parse_and_format m...
-   [OK]          Translation_unit                       8   parse_and_format m...
-   [OK]          Translation_unit                       9   parse_and_format m...
-   [OK]          Translation_unit                      10   parse_and_format m...
-   [OK]          Translation_unit                      11   parse_and_format e...
-   [OK]          Translation_unit                      12   numeric: empty buf...
-   [OK]          Translation_unit                      13   numeric: last buff...
-   [OK]          Translation_unit                      14   numeric: already f...
-   [OK]          Translation_unit                      15   numeric: not alrea...
-   [OK]          Translation_unit                      16   numeric: with pare...
-   [OK]          Translation_unit                      17   numeric: split ove...
-   [OK]          Translation_unit                      18   numeric: invalid f...
-   [OK]          Translation_unit                      19   numeric: already f...
-   [OK]          Translation_unit                      20   numeric: partial let.
-   [OK]          Translation_unit                      21   numeric: fit on 1 ...
-   [OK]          Translation_unit                      22   numeric (file): pa...
-   [OK]          Translation_unit                      23   numeric (file): pa...
-   [OK]          Translation_unit                      24   numeric (file): fo...
-   [OK]          Translation_unit                      25   numeric (file): fo...
- 
- Full test results in `~/.opam/4.13/.opam-switch/build/ocamlformat.0.24.1/_build/default/test/unit/_build/_tests/ocamlformat'.
- Test Successful in 0.058s. 249 tests run.
-> compiled  ocamlformat.0.24.1
-> removed   ocamlformat.0.24.1
-> installed ocamlformat.0.24.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 09:27.39 ---> saved as "8d5b392b0081f1e740e3955aa6bb5616d4658cc337129236a20b55d2bc72245f"
Job succeeded
2026-03-23 09:27.49: Job succeeded