(not at the head of any monitored branch or PR)
2026-03-19 16:28.51: New job: test lsp.1.26.0-5.5~preview, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29565/head (a540e38baa7b2d1d7e6218b3bc3eb48112a04ff2)
                              on debian-13-ocaml-5.4-flambda/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/29565/head" && git reset --hard a540e38b
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:7c0891fd8beae10290a2658a0474b5895aff790d4909224a497eb8e69cd96c1d
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 lsp.1.26.0-5.5~preview 1.26.0-5.5~preview
RUN opam reinstall lsp.1.26.0-5.5~preview; \
    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" != 'lsp.1.26.0-5.5~preview' && 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 lsp.1.26.0-5.5~preview) || true
RUN opam reinstall --with-test --verbose lsp.1.26.0-5.5~preview; \
    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" != 'lsp.1.26.0-5.5~preview' && 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-19 16:28.51: Using cache hint "ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:7c0891fd8beae10290a2658a0474b5895aff790d4909224a497eb8e69cd96c1d-lsp.1.26.0-5.5~preview-a540e38baa7b2d1d7e6218b3bc3eb48112a04ff2"
2026-03-19 16:28.51: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:7c0891fd8beae10290a2658a0474b5895aff790d4909224a497eb8e69cd96c1d)
 (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 lsp.1.26.0-5.5~preview 1.26.0-5.5~preview"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lsp.1.26.0-5.5~preview;\
             \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\" != 'lsp.1.26.0-5.5~preview' && 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 lsp.1.26.0-5.5~preview) || true"))
 (run (shell  "opam reinstall --with-test --verbose lsp.1.26.0-5.5~preview;\
             \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\" != 'lsp.1.26.0-5.5~preview' && 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-19 16:28.51: Waiting for resource in pool OCluster
2026-03-19 16:32.09: Waiting for worker…
2026-03-19 16:35.23: Got resource from pool OCluster
Building on phoebe
All commits already cached
Updating files:  61% (11380/18508)
Updating files:  62% (11475/18508)
Updating files:  63% (11661/18508)
Updating files:  64% (11846/18508)
Updating files:  65% (12031/18508)
Updating files:  66% (12216/18508)
Updating files:  67% (12401/18508)
Updating files:  68% (12586/18508)
Updating files:  69% (12771/18508)
Updating files:  70% (12956/18508)
Updating files:  71% (13141/18508)
Updating files:  72% (13326/18508)
Updating files:  73% (13511/18508)
Updating files:  74% (13696/18508)
Updating files:  75% (13881/18508)
Updating files:  76% (14067/18508)
Updating files:  77% (14252/18508)
Updating files:  78% (14437/18508)
Updating files:  79% (14622/18508)
Updating files:  80% (14807/18508)
Updating files:  81% (14992/18508)
Updating files:  82% (15177/18508)
Updating files:  83% (15362/18508)
Updating files:  84% (15547/18508)
Updating files:  85% (15732/18508)
Updating files:  86% (15917/18508)
Updating files:  87% (16102/18508)
Updating files:  88% (16288/18508)
Updating files:  89% (16473/18508)
Updating files:  90% (16658/18508)
Updating files:  91% (16843/18508)
Updating files:  92% (17028/18508)
Updating files:  93% (17213/18508)
Updating files:  94% (17398/18508)
Updating files:  95% (17583/18508)
Updating files:  96% (17768/18508)
Updating files:  97% (17953/18508)
Updating files:  98% (18138/18508)
Updating files:  99% (18323/18508)
Updating files: 100% (18508/18508)
Updating files: 100% (18508/18508), done.
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..a540e38baa
Fast-forward
 packages/jsonrpc/jsonrpc.1.26.0-5.5~preview/opam   | 51 +++++++++++++++
 packages/lsp/lsp.1.26.0-5.5~preview/opam           | 61 +++++++++++++++++
 .../ocaml-lsp-server.1.26.0-5.5~preview/opam       | 76 ++++++++++++++++++++++
 3 files changed, 188 insertions(+)
 create mode 100644 packages/jsonrpc/jsonrpc.1.26.0-5.5~preview/opam
 create mode 100644 packages/lsp/lsp.1.26.0-5.5~preview/opam
 create mode 100644 packages/ocaml-lsp-server/ocaml-lsp-server.1.26.0-5.5~preview/opam

(from ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:7c0891fd8beae10290a2658a0474b5895aff790d4909224a497eb8e69cd96c1d)
2026-03-19 16:35.38 ---> using "b55e6c75cd3e8053866e4459977add5a75875074668e87228d5137df1d1d0c8a" 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-19 16:35.38 ---> using "24078f698e249320f871d9180db343a7ee7bc21c73578fb180eab6e09c7abd0f" 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-19 16:36.07 ---> saved as "36badae868645acbe44c3490b81c1cabf663e611f03f9c98077db7b1995ff464"

/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       5.4
# invariant            ["ocaml-variants" {= "5.4.0+options"}]
# compiler-packages    ocaml-compiler.5.4.0, ocaml-option-flambda.1, ocaml-options-only-flambda.1, ocaml-variants.5.4.0+options
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0+options+flambda
2026-03-19 16:36.08 ---> saved as "e1f629f1f781341675d01a80405ab30de7933ca7f3c9dbde5fba16da4b4a82f1"

/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-19 16:36.25 ---> saved as "ec22a0db5465ecd60ade74a7450ad0c501d7a35b42534d9256127ad6bfdfa329"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-19 16:36.52 ---> saved as "2d5bf69bca6094ebbf9a3c7ce225544e1a60e055409568a81bc2d2793cdf2667"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-19 16:37.14 ---> saved as "ee4581b78063a83e57b853907eb26ddf6311cb6a7396e61fb204b7b423e7bda9"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- 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-security trixie-security/main amd64 Packages [115 kB]
- Fetched 206 kB in 0s (1769 kB/s)
- Reading package lists...
- 
2026-03-19 16:37.15 ---> saved as "2a7672c20c45c868c0280b49e4c37f7b8b04e3448315e7c87ad42b0f2a63dc23"

/home/opam: (run (shell "opam pin add -k version -yn lsp.1.26.0-5.5~preview 1.26.0-5.5~preview"))
lsp is now pinned to version 1.26.0-5.5~preview
2026-03-19 16:37.16 ---> saved as "32ed2650815cc28ffefdde34e71998148b8cbebab5c8e8e5a59700df29909a91"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lsp.1.26.0-5.5~preview;\
                        \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\" != 'lsp.1.26.0-5.5~preview' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lsp.1.26.0-5.5~preview is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install dune                3.22.0                      [required by lsp]
  - install jsonrpc             1.26.0-5.5~preview          [required by lsp]
  - install lsp                 1.26.0-5.5~preview (pinned)
  - install ocamlbuild          0.16.1                      [required by uutf]
  - install ocamlfind           1.9.8                       [required by uutf]
  - install ppx_yojson_conv_lib v0.17.0                     [required by lsp]
  - install topkg               1.1.1                       [required by uutf]
  - install uutf                1.0.4                       [required by lsp]
  - install yojson              3.0.0                       [required by lsp]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0  (cached)
-> retrieved jsonrpc.1.26.0-5.5~preview, lsp.1.26.0-5.5~preview  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_yojson_conv_lib.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed dune.3.22.0
-> installed yojson.3.0.0
-> installed ppx_yojson_conv_lib.v0.17.0
-> installed jsonrpc.1.26.0-5.5~preview
-> installed lsp.1.26.0-5.5~preview
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 16:38.53 ---> saved as "68855d7b6c24f2b8ad257d3a9c766b5200a3a6142bc895472bee0eee9343e8c3"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test lsp.1.26.0-5.5~preview) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile lsp                     1.26.0-5.5~preview (pinned)
=== install 28 packages
  - install   base                    v0.17.3                     [required by ppx_expect]
  - install   cinaps                  v0.15.1                     [required by lsp]
  - install   csexp                   1.5.2                       [required by dune-configurator]
  - install   dune-configurator       3.22.0                      [required by base]
  - install   jane-street-headers     v0.17.0                     [required by time_now]
  - install   jst-config              v0.17.0                     [required by time_now]
  - install   ocaml-compiler-libs     v0.17.0                     [required by ppxlib]
  - install   ocaml_intrinsics_kernel v0.17.1                     [required by base]
  - install   ppx_assert              v0.17.0                     [required by jst-config]
  - install   ppx_base                v0.17.0                     [required by time_now]
  - install   ppx_cold                v0.17.0                     [required by ppx_base]
  - install   ppx_compare             v0.17.0                     [required by ppx_base]
  - install   ppx_derivers            1.2.1                       [required by ppxlib]
  - install   ppx_enumerate           v0.17.0                     [required by ppx_base]
  - install   ppx_expect              v0.17.3                     [required by lsp]
  - install   ppx_globalize           v0.17.2                     [required by ppx_base]
  - install   ppx_hash                v0.17.0                     [required by ppx_base]
  - install   ppx_here                v0.17.0                     [required by ppx_expect]
  - install   ppx_inline_test         v0.17.1                     [required by ppx_expect]
  - install   ppx_optcomp             v0.17.1                     [required by time_now]
  - install   ppx_sexp_conv           v0.17.1                     [required by ppx_base]
  - install   ppxlib                  0.37.0                      [required by ppx_expect]
  - install   ppxlib_jane             v0.17.4                     [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install   re                      1.14.0                      [required by cinaps]
  - install   sexplib0                v0.17.0                     [required by base]
  - install   stdio                   v0.17.0                     [required by ppx_expect]
  - install   stdlib-shims            0.3.0                       [required by ppxlib]
  - install   time_now                v0.17.0                     [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (https://opam.ocaml.org/cache)
-> retrieved cinaps.v0.15.1  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0  (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.17.0
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.17.0  (https://opam.ocaml.org/cache)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_expect.v0.17.3  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_globalize.v0.17.2  (https://opam.ocaml.org/cache)
-> retrieved ppx_hash.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.37.0  (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0  (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.22.0
-> installed ocaml-compiler-libs.v0.17.0
-> retrieved stdio.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.17.0  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> removed   lsp.1.26.0-5.5~preview
-> installed re.1.14.0
-> installed cinaps.v0.15.1
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed lsp.1.26.0-5.5~preview
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 16:40.29 ---> saved as "9d8e9229fa5b1c3c9f856151b5532e1b22d25d2ab3bff1e543d01a22fcf1da7c"

/home/opam: (run (shell  "opam reinstall --with-test --verbose lsp.1.26.0-5.5~preview;\
                        \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\" != 'lsp.1.26.0-5.5~preview' && 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 lsp 1.26.0-5.5~preview (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [lsp: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lsp" "-j" "71" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lsp.1.26.0-5.5~preview)
-> compiled  lsp.1.26.0-5.5~preview
-> removed   lsp.1.26.0-5.5~preview
-> installed lsp.1.26.0-5.5~preview
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 16:40.44 ---> saved as "f18d099d5a554f9d1fefc202ee5b2d23ed9cddc17e326874b7d3e8ada239d169"
Job succeeded
2026-03-19 16:41.01: Job succeeded