Build:
  1. 0
2026-03-14 21:40.00: New job: test ocaml-lsp-server.1.25.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29544/head (795fe89e9cf21e4fcdfc2f486774c5a05a2dd4bd)
                              on debian-13-ocaml-5.4/i386

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29544/head" && git reset --hard 795fe89e
git fetch origin master
git merge --no-edit 8d34e0cf3c0ccacb6c8a26c24d0e5eb0b17fbf9d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:30070b9c98c970b58b5493dcfc5809f1437b956d581925cd1e4498e3be84024f
SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ]
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 ocaml-lsp-server.1.25.0 1.25.0
RUN opam reinstall ocaml-lsp-server.1.25.0; \
    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" != 'ocaml-lsp-server.1.25.0' && 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 ocaml-lsp-server.1.25.0) || true
RUN opam reinstall --with-test --verbose ocaml-lsp-server.1.25.0; \
    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" != 'ocaml-lsp-server.1.25.0' && 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-14 21:40.00: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:30070b9c98c970b58b5493dcfc5809f1437b956d581925cd1e4498e3be84024f-ocaml-lsp-server.1.25.0-795fe89e9cf21e4fcdfc2f486774c5a05a2dd4bd"
2026-03-14 21:40.00: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:30070b9c98c970b58b5493dcfc5809f1437b956d581925cd1e4498e3be84024f)
 (shell /usr/bin/linux32 /bin/sh -c)
 (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 ocaml-lsp-server.1.25.0 1.25.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocaml-lsp-server.1.25.0;\
             \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\" != 'ocaml-lsp-server.1.25.0' && 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 ocaml-lsp-server.1.25.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ocaml-lsp-server.1.25.0;\
             \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\" != 'ocaml-lsp-server.1.25.0' && 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-14 21:40.00: Waiting for resource in pool OCluster
2026-03-14 21:40.01: Waiting for worker…
2026-03-14 21:40.03: Got resource from pool OCluster
Building on phoebe
All commits already cached
HEAD is now at 8d34e0cf3c Merge pull request #29540 from davesnx/release-melange-fest-0.2.0
Updating 8d34e0cf3c..795fe89e9c
Fast-forward
 packages/ocaml-lsp-server/ocaml-lsp-server.1.21.0-4.14/opam | 2 +-
 packages/ocaml-lsp-server/ocaml-lsp-server.1.25.0/opam      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(from ocaml/opam:debian-13-ocaml-5.4@sha256:30070b9c98c970b58b5493dcfc5809f1437b956d581925cd1e4498e3be84024f)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:30070b9c98c970b58b5493dcfc5809f1437b956d581925cd1e4498e3be84024f' locally
docker.io/ocaml/opam@sha256:30070b9c98c970b58b5493dcfc5809f1437b956d581925cd1e4498e3be84024f: Pulling from ocaml/opam
cdaf5c618b8f: Already exists
37b25bd564f1: Already exists
b4419f8ddf31: Already exists
fcddae90f741: Already exists
7bdc78f9e5b7: Already exists
5691c8ad5025: Already exists
a00659447ced: Already exists
6da4c329d826: Already exists
7eb67c4488c7: Already exists
ecb12f6f1366: Already exists
0bb29fc35e8f: Already exists
38773acba29b: Already exists
4ecb7fe6e6cd: Already exists
a6ded0c5c651: Already exists
a618a67fa30c: Already exists
7cfbd53f9185: Already exists
2dd6d5e64b1f: Already exists
2dd6d5e64b1f: Already exists
66e4c8c5b80d: Already exists
93512fc5f7ca: Already exists
99a5c1cc5cf4: Already exists
e77a47d92406: Already exists
4f4fb700ef54: Already exists
1e645893c166: Already exists
4d79b77ccb64: Already exists
8f92218ad268: Already exists
d37cd7807d67: Already exists
eae9cdbb8e94: Already exists
00e84e4dddf6: Already exists
ec5e1e9d7a11: Already exists
5a366988733e: Already exists
5d3dff2b6c80: Already exists
2d08b04c2596: Already exists
fb41acb401da: Already exists
7af27a693e4f: Already exists
615b51657365: Already exists
ac9ea76617e5: Already exists
2f380e108faf: Already exists
abe564c0399a: Already exists
4958a3486050: Already exists
7937a8b7141c: Already exists
2e40cefb48f7: Already exists
f621bcf90303: Already exists
52843526e764: Already exists
6b4582dba7d3: Already exists
0989d6de0bfa: Already exists
278bff09f876: Already exists
7b517c3d6b3e: Already exists
Digest: sha256:30070b9c98c970b58b5493dcfc5809f1437b956d581925cd1e4498e3be84024f
Status: Downloaded newer image for ocaml/opam@sha256:30070b9c98c970b58b5493dcfc5809f1437b956d581925cd1e4498e3be84024f
2026-03-14 21:41.55 ---> saved as "6ef7c4dfa260c69dbf612c0803aa6fe165260bac8a8ff025165083c7f4ed60d5"

/: (shell /usr/bin/linux32 /bin/sh -c)

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-14 21:41.56 ---> saved as "3199f099a77ac9cdfac788573d428334b470c4e7fe1ffddbcb4c5146f0e10ea1"

/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-14 21:42.30 ---> saved as "ba5a4094a68eef7de1a11a89c715ddc6528663faa70258af692f4e39f366de7d"

/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_32 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-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-option-bytecode-only.1, ocaml-options-vanilla.1
# ocaml:native         false
# ocaml:native-tools   false
# ocaml:native-dynlink false
# 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+bytecode-only
2026-03-14 21:42.31 ---> saved as "1d80201dfba3de61832ef7491ce0b9f61f0709652fcb71d32b855a5869a83751"

/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-14 21:42.40 ---> saved as "a2cd4e37e09ded74dbd214fec828521980ebbfce4f7dc237ebce061bc4732070"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-14 21:42.50 ---> saved as "9230aeed33eff7295d38d61916e9df7956c3f5d77e25831f8a2230a63dc2013f"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-14 21:43.23 ---> saved as "7ecf0336e875362261543733d4e06ae914d49425cd70729ef317e1b07f6ef1e0"

/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 i386 Packages [9430 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main i386 Packages [102 kB]
- Fetched 9764 kB in 2s (4808 kB/s)
- Reading package lists...
- 
2026-03-14 21:43.26 ---> saved as "0a79efa229e0b9eb2045bbda1963423793d07c2c7ecbde9f372a453d3c45aae5"

/home/opam: (run (shell "opam pin add -k version -yn ocaml-lsp-server.1.25.0 1.25.0"))
ocaml-lsp-server is now pinned to version 1.25.0
2026-03-14 21:43.27 ---> saved as "079f838af392e20f93d0f780640af1077f6268340bc9802452654bd818fc6dca"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocaml-lsp-server.1.25.0;\
                        \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\" != 'ocaml-lsp-server.1.25.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-lsp-server.1.25.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 33 packages
  - install astring             0.8.5           [required by ocaml-lsp-server]
  - install base                v0.16.4         [required by ocaml-lsp-server]
  - install camlp-streams       5.0.1           [required by ocaml-lsp-server]
  - install chrome-trace        3.21.1          [required by ocaml-lsp-server]
  - install csexp               1.5.2           [required by ocaml-lsp-server]
  - install dune                3.21.1          [required by ocaml-lsp-server]
  - install dune-build-info     3.21.1          [required by ocaml-lsp-server]
  - install dune-configurator   3.21.1          [required by base]
  - install dune-rpc            3.21.1          [required by ocaml-lsp-server]
  - install dyn                 3.21.1          [required by ocaml-lsp-server]
  - install fiber               3.7.0           [required by ocaml-lsp-server]
  - install fs-io               3.21.1          [required by stdune]
  - install jsonrpc             1.25.0          [required by ocaml-lsp-server]
  - install lsp                 1.25.0          [required by ocaml-lsp-server]
  - install merlin-lib          5.6.1-504       [required by ocaml-lsp-server]
  - install ocaml-index         5.6.1-504
  - install ocaml-lsp-server    1.25.0 (pinned)
  - install ocamlbuild          0.16.1          [required by astring]
  - install ocamlc-loc          3.21.1          [required by ocaml-lsp-server]
  - install ocamlfind           1.9.8           [required by astring]
  - install ocamlformat-rpc-lib 0.28.1          [required by ocaml-lsp-server]
  - install ordering            3.21.1          [required by ocaml-lsp-server]
  - install pp                  2.0.0           [required by ocaml-lsp-server]
  - install ppx_yojson_conv_lib v0.16.0         [required by ocaml-lsp-server]
  - install re                  1.14.0          [required by ocaml-lsp-server]
  - install sexplib0            v0.16.0         [required by base]
  - install spawn               v0.17.0         [required by ocaml-lsp-server]
  - install stdune              3.21.1          [required by ocaml-lsp-server]
  - install top-closure         3.21.1          [required by stdune]
  - install topkg               1.1.1           [required by astring]
  - install uutf                1.0.4           [required by lsp]
  - install xdg                 3.21.1          [required by ocaml-lsp-server]
  - install yojson              3.0.0           [required by ocaml-lsp-server]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved chrome-trace.3.21.1, dune.3.21.1, dune-build-info.3.21.1, dune-configurator.3.21.1, dune-rpc.3.21.1, dyn.3.21.1, fs-io.3.21.1, ocamlc-loc.3.21.1, ordering.3.21.1, stdune.3.21.1, top-closure.3.21.1, xdg.3.21.1  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved fiber.3.7.0  (cached)
-> retrieved jsonrpc.1.25.0, lsp.1.25.0, ocaml-lsp-server.1.25.0  (cached)
-> retrieved merlin-lib.5.6.1-504, ocaml-index.5.6.1-504  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlformat-rpc-lib.0.28.1  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved ppx_yojson_conv_lib.v0.16.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved spawn.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 astring.0.8.5
-> installed dune.3.21.1
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed pp.2.0.0
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed spawn.v0.17.0
-> installed yojson.3.0.0
-> installed ppx_yojson_conv_lib.v0.16.0
-> installed ocamlformat-rpc-lib.0.28.1
-> installed jsonrpc.1.25.0
-> installed top-closure.3.21.1
-> installed xdg.3.21.1
-> installed ordering.3.21.1
-> installed chrome-trace.3.21.1
-> installed dune-build-info.3.21.1
-> installed fs-io.3.21.1
-> installed dune-configurator.3.21.1
-> installed dyn.3.21.1
-> installed ocamlc-loc.3.21.1
-> installed lsp.1.25.0
-> installed stdune.3.21.1
-> installed merlin-lib.5.6.1-504
-> installed base.v0.16.4
-> installed fiber.3.7.0
-> installed dune-rpc.3.21.1
-> installed ocaml-index.5.6.1-504
-> installed ocaml-lsp-server.1.25.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-14 21:46.49 ---> saved as "987497e8ce08809938ac1889767db8e94324351765ee75efa9295e54aa8793c3"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ocaml-lsp-server.1.25.0) || true"))
  * Missing dependency:
    - ocaml-lsp-server >= 1.25.0 -> ppx_expect >= v0.17.0
    unmet availability conditions, e.g. 'arch != "x86_32" & os != "win32"'

No solution found, exiting
2026-03-14 21:46.57 ---> saved as "c93a3e58874269cc24a38590d6ff6e8e22c39cb8e59a5a92ea2eb2a1279e080b"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ocaml-lsp-server.1.25.0;\
                        \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\" != 'ocaml-lsp-server.1.25.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
  * Missing dependency:
    - ocaml-lsp-server >= 1.25.0 -> ppx_expect >= v0.17.0
    unmet availability conditions, e.g. 'arch != "x86_32" & os != "win32"'

No solution found, exiting
'opam reinstall --with-test --verbose ocaml-lsp-server.1.25.0' failed.
"/usr/bin/linux32" "/bin/sh" "-c" "opam reinstall --with-test --verbose ocaml-lsp-server.1.25.0;
        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" != 'ocaml-lsp-server.1.25.0' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 20
2026-03-14 21:47.10: Job failed: Failed: Build failed
2026-03-14 21:47.10: Log analysis:
2026-03-14 21:47.10: >>> 
No solution found, exiting
 (score = 100)
2026-03-14 21:47.10: >>> 
No solution found, exiting
 (score = 100)
2026-03-14 21:47.10: [SKIP] Package not available