(not at the head of any monitored branch or PR)
2026-04-30 14:33.23: New job: test vsrocq-language-server.2.3.1 with rocq-stdlib.9.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29830/head (7a15accc2f9050d2c7e012666e2f93808daf13c0)
                              on debian-13-ocaml-5.4/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/29830/head" && git reset --hard 7a15accc
git fetch origin master
git merge --no-edit 6eba819fc9cf11948f2ec0ccb35df7352e130ee2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44
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 rocq-stdlib.9.1.0 9.1.0
RUN opam reinstall rocq-stdlib.9.1.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" != 'rocq-stdlib.9.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall vsrocq-language-server.2.3.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" != 'vsrocq-language-server.2.3.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 vsrocq-language-server.2.3.1) || true
RUN opam reinstall --with-test --verbose vsrocq-language-server.2.3.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" != 'vsrocq-language-server.2.3.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-04-30 14:33.23: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44-rocq-stdlib.9.1.0-vsrocq-language-server.2.3.1-7a15accc2f9050d2c7e012666e2f93808daf13c0"
2026-04-30 14:33.23: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
 (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 rocq-stdlib.9.1.0 9.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall rocq-stdlib.9.1.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\" != 'rocq-stdlib.9.1.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall vsrocq-language-server.2.3.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\" != 'vsrocq-language-server.2.3.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 vsrocq-language-server.2.3.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose vsrocq-language-server.2.3.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\" != 'vsrocq-language-server.2.3.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-04-30 14:33.23: Waiting for resource in pool OCluster
2026-04-30 14:33.24: Waiting for worker…
2026-04-30 14:33.24: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 6eba819fc9 Merge pull request #29818 from Vlam9988/opam-publish-ip2proxy.3.2.0
Merge made by the 'ort' strategy.
 packages/rocq-stdlib/rocq-stdlib.9.1.0/opam | 39 +++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 packages/rocq-stdlib/rocq-stdlib.9.1.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
2026-04-30 14:33.26 ---> using "3ad720629c2266fa8bdd5d2923dac1e3690d78741c5f65fb1eb4d33725df507c" 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-04-30 14:33.26 ---> using "0d128a17914946ba4fe4852d9c905008c6396e0502e54d164cf768f35be583e7" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-30 14:33.26 ---> using "d70296180507e779e1710b2206cbd2ed2063f4f7ba3a5617311725a56ede5942" 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.1
# 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                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# 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.1
2026-04-30 14:33.26 ---> using "8495d51697191c14a2d936280d33309feb632049461097708f2914849f49e434" 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-04-30 14:33.26 ---> using "e71fcfd10a966fea9cbc39c81a8170d118ef6c5bc3e82b827a8fc5873a3b02c4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 14:33.32 ---> saved as "a8ea9be08ffcd6ae13583bc6912bb857697f6a0b03c2b49285da4e3df22a4e7b"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 14:33.50 ---> saved as "e48f22d177456c810778384a12cd4b55fe68ac1e37fe1be9edf26d01cd58b5b7"

/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 [129 kB]
- Fetched 219 kB in 0s (2099 kB/s)
- Reading package lists...
2026-04-30 14:33.51 ---> saved as "7ae3b75d9c505714290ff11160f8f3ca86389d3d012bcd27b2173840cfbb87c0"

/home/opam: (run (shell "opam pin add -k version -yn rocq-stdlib.9.1.0 9.1.0"))
rocq-stdlib is now pinned to version 9.1.0
2026-04-30 14:33.52 ---> saved as "93ea6af314048b3c0ad7e08c11f8397a2225a0dfa8f2fd84514b7a971027b171"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall rocq-stdlib.9.1.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\" != 'rocq-stdlib.9.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
rocq-stdlib.9.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install conf-gmp            5              [required by zarith]
  - install conf-linux-libc-dev 0              [required by rocq-runtime]
  - install conf-pkg-config     4              [required by zarith]
  - install dune                3.22.2         [required by rocq-core]
  - install ocamlfind           1.9.8          [required by rocq-runtime]
  - install rocq-core           9.2.0          [required by rocq-stdlib]
  - install rocq-runtime        9.2.0          [required by rocq-stdlib]
  - install rocq-stdlib         9.1.0 (pinned)
  - install zarith              1.14           [required by rocq-runtime]

The following system packages will first need to be installed:
    libgmp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-linux-libc-dev.0
-> retrieved dune.3.22.2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved rocq-core.9.2.0, rocq-runtime.9.2.0  (cached)
-> retrieved rocq-stdlib.9.1.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.22.2
-> installed rocq-runtime.9.2.0
-> installed rocq-core.9.2.0
-> installed rocq-stdlib.9.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 14:37.24 ---> saved as "e3712e6737fb67a3aed32937a732d767eb1c4cd5a0b849227f34b79aaf1f181f"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall vsrocq-language-server.2.3.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\" != 'vsrocq-language-server.2.3.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
vsrocq-language-server.2.3.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== downgrade 2 packages
  - downgrade rocq-core               9.2.0 to 9.0.1 [required by vsrocq-language-server]
  - downgrade rocq-runtime            9.2.0 to 9.0.1 [required by rocq-core]
=== recompile 1 package
  - recompile rocq-stdlib             9.1.0 (pinned) [uses rocq-core]
=== install 44 packages
  - install   base                    v0.17.3        [required by ppx_inline_test, ppx_assert, ppx_yojson_conv]
  - install   cppo                    1.8.0          [required by ppx_deriving]
  - install   csexp                   1.5.2          [required by dune-configurator]
  - install   dune-configurator       3.22.2         [required by base]
  - install   jane-street-headers     v0.17.0        [required by time_now]
  - install   jsonrpc                 1.26.0         [required by vsrocq-language-server]
  - install   jst-config              v0.17.0        [required by time_now]
  - install   lsp                     1.26.0         [required by vsrocq-language-server]
  - install   num                     1.6            [required by sexplib]
  - install   ocaml-compiler-libs     v0.17.0        [required by ppxlib]
  - install   ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install   ocamlbuild              0.16.1         [required by uutf]
  - install   octavius                1.2.2          [required by ppx_js_style]
  - install   parsexp                 v0.17.0        [required by sexplib]
  - install   ppx_assert              v0.17.0        [required by vsrocq-language-server]
  - install   ppx_base                v0.17.0        [required by time_now]
  - install   ppx_cold                v0.17.0        [required by ppx_assert]
  - install   ppx_compare             v0.17.0        [required by ppx_assert]
  - install   ppx_derivers            1.2.1          [required by ppx_deriving]
  - install   ppx_deriving            6.1.1          [required by vsrocq-language-server]
  - install   ppx_enumerate           v0.17.0        [required by ppx_base]
  - 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_assert]
  - install   ppx_import              1.12.0         [required by vsrocq-language-server]
  - install   ppx_inline_test         v0.17.1        [required by vsrocq-language-server]
  - install   ppx_js_style            v0.17.1        [required by ppx_yojson_conv]
  - install   ppx_optcomp             v0.17.1        [required by vsrocq-language-server]
  - install   ppx_sexp_conv           v0.17.1        [required by vsrocq-language-server]
  - install   ppx_yojson_conv         v0.17.1        [required by vsrocq-language-server]
  - install   ppx_yojson_conv_lib     v0.17.0        [required by lsp, ppx_yojson_conv]
  - install   ppxlib                  0.38.0         [required by ppx_inline_test, ppx_deriving, ppx_assert, etc.]
  - install   ppxlib_jane             v0.17.4        [required by ppx_compare, ppx_sexp_conv]
  - install   result                  1.5            [required by vsrocq-language-server]
  - install   sel                     0.8.0          [required by vsrocq-language-server]
  - install   sexplib                 v0.17.0        [required by vsrocq-language-server]
  - install   sexplib0                v0.17.0        [required by sexplib]
  - install   stdio                   v0.17.0        [required by ppx_optcomp]
  - install   stdlib-shims            0.3.0          [required by ppxlib]
  - install   time_now                v0.17.0        [required by ppx_inline_test]
  - install   topkg                   1.1.1          [required by uutf]
  - install   uutf                    1.0.4          [required by lsp]
  - install   vsrocq-language-server  2.3.1
  - install   yojson                  3.0.0          [required by vsrocq-language-server]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2  (cached)
-> installed cppo.1.8.0
-> retrieved jane-street-headers.v0.17.0  (cached)
-> installed jane-street-headers.v0.17.0
-> retrieved jsonrpc.1.26.0, lsp.1.26.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_import.1.12.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_js_style.v0.17.1  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ppx_derivers.1.2.1
-> retrieved ppx_yojson_conv.v0.17.1  (cached)
-> retrieved ppx_yojson_conv_lib.v0.17.0  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved result.1.5  (cached)
-> installed dune-configurator.3.22.2
-> installed result.1.5
-> retrieved rocq-core.9.0.1, rocq-runtime.9.0.1  (cached)
-> installed num.1.6
-> installed ocaml-compiler-libs.v0.17.0
-> installed octavius.1.2.2
-> retrieved rocq-stdlib.9.1.0  (cached)
-> retrieved sel.0.8.0  (cached)
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.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 topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved vsrocq-language-server.2.3.1  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed yojson.3.0.0
-> installed ocamlbuild.0.16.1
-> installed jsonrpc.1.26.0
-> installed ppx_yojson_conv_lib.v0.17.0
-> installed parsexp.v0.17.0
-> installed sexplib.v0.17.0
-> installed base.v0.17.3
-> installed topkg.1.1.1
-> installed stdio.v0.17.0
-> installed uutf.1.0.4
-> installed lsp.1.26.0
-> installed ppxlib.0.38.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_js_style.v0.17.1
-> installed ppx_import.1.12.0
-> installed ppx_deriving.6.1.1
-> installed ppx_compare.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_sexp_conv.v0.17.1
-> installed sel.0.8.0
-> installed ppx_yojson_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
-> removed   rocq-stdlib.9.1.0
-> removed   rocq-core.9.2.0
-> removed   rocq-runtime.9.2.0
-> installed rocq-runtime.9.0.1
-> installed rocq-core.9.0.1
-> installed rocq-stdlib.9.1.0
-> installed vsrocq-language-server.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 14:40.48 ---> saved as "f4e0c5b4597879992ca26d558a23c90763299cf3df6556bc6afb1cee7c603e1b"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test vsrocq-language-server.2.3.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile vsrocq-language-server 2.3.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved vsrocq-language-server.2.3.1  (https://opam.ocaml.org/cache)
-> removed   vsrocq-language-server.2.3.1
-> installed vsrocq-language-server.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 14:40.57 ---> saved as "7c3348fdc1379fea3ebc14905edbbc7a66fa765284940c34f81d6d97f64db046"

/home/opam: (run (shell  "opam reinstall --with-test --verbose vsrocq-language-server.2.3.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\" != 'vsrocq-language-server.2.3.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 vsrocq-language-server 2.3.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [vsrocq-language-server.2.3.1: extract]
-> retrieved vsrocq-language-server.2.3.1  (cached)
Processing  2/4: [vsrocq-language-server: make dune-files]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "dune-files" (CWD=/home/opam/.opam/5.4/.opam-switch/build/vsrocq-language-server.2.3.1)
Processing  2/4: [vsrocq-language-server: etc/rocq-wrap-coqc.sh dune]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "etc/rocq-wrap-coqc.sh" "dune" "build" "-p" "vsrocq-language-server" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/vsrocq-language-server.2.3.1)
- ++ command -v rocq
- + rocq=/home/opam/.opam/5.4/bin/rocq
- + rm -rf .wrappers
- + mkdir .wrappers
- + cat
- + chmod +x .wrappers/coqc
- + export PATH=/home/opam/.opam/5.4/.opam-switch/build/vsrocq-language-server.2.3.1/.wrappers:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
- + PATH=/home/opam/.opam/5.4/.opam-switch/build/vsrocq-language-server.2.3.1/.wrappers:/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
- + dune build -p vsrocq-language-server -j 255
-> compiled  vsrocq-language-server.2.3.1
-> removed   vsrocq-language-server.2.3.1
-> installed vsrocq-language-server.2.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 14:41.06 ---> saved as "c7d3cda4648491071f31b1cb18996b8778cef831daa9ef1f73b968c2adc79754"
Job succeeded
2026-04-30 14:41.13: Job succeeded