- github
- ocaml
- opam-repository
- 7a15ac
- compilers,5.4,rocq-stdlib.9.1.0,revdeps,vscoq-language-server.2.3.3
(not at the head of any monitored branch or PR)
2026-04-30 14:33.23: New job: test vscoq-language-server.2.3.3 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 vscoq-language-server.2.3.3; \
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" != 'vscoq-language-server.2.3.3' && 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 vscoq-language-server.2.3.3) || true
RUN opam reinstall --with-test --verbose vscoq-language-server.2.3.3; \
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" != 'vscoq-language-server.2.3.3' && 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-vscoq-language-server.2.3.3-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 vscoq-language-server.2.3.3;\
\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\" != 'vscoq-language-server.2.3.3' && 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 vscoq-language-server.2.3.3) || true"))
(run (shell "opam reinstall --with-test --verbose vscoq-language-server.2.3.3;\
\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\" != 'vscoq-language-server.2.3.3' && 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 odawa.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.36 ---> 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.36 ---> 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.36 ---> 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.36 ---> 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.36 ---> using "e71fcfd10a966fea9cbc39c81a8170d118ef6c5bc3e82b827a8fc5873a3b02c4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 14:33.46 ---> saved as "a8ea9be08ffcd6ae13583bc6912bb857697f6a0b03c2b49285da4e3df22a4e7b"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 14:34.05 ---> 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 (2423 kB/s)
- Reading package lists...
2026-04-30 14:34.10 ---> 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:34.15 ---> 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 (https://github.com/coq/stdlib/releases/download/V9.1.0/stdlib-9.1.0.tar.gz)
-> 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.13 ---> saved as "e3712e6737fb67a3aed32937a732d767eb1c4cd5a0b849227f34b79aaf1f181f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall vscoq-language-server.2.3.3;\
\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\" != 'vscoq-language-server.2.3.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
vscoq-language-server.2.3.3 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.1.1 [required by vsrocq-language-server]
- downgrade rocq-runtime 9.2.0 to 9.1.1 [required by rocq-core]
=== recompile 1 package
- recompile rocq-stdlib 9.1.0 (pinned) [uses rocq-core]
=== install 45 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 vscoq-language-server 2.3.3
- install vsrocq-language-server 2.3.3 [required by vscoq-language-server]
- 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)
-> retrieved jsonrpc.1.26.0, lsp.1.26.0 (cached)
-> installed jane-street-headers.v0.17.0
-> 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
-> retrieved rocq-core.9.1.1, rocq-runtime.9.1.1 (cached)
-> installed num.1.6
-> installed ocaml-compiler-libs.v0.17.0
-> installed octavius.1.2.2
-> installed result.1.5
-> 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 vscoq-language-server.2.3.3, vsrocq-language-server.2.3.3 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocamlbuild.0.16.1
-> installed yojson.3.0.0
-> installed parsexp.v0.17.0
-> installed jsonrpc.1.26.0
-> installed ppx_yojson_conv_lib.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_globalize.v0.17.2
-> 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_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.1.1
-> installed rocq-core.9.1.1
-> installed rocq-stdlib.9.1.0
-> installed vsrocq-language-server.2.3.3
-> installed vscoq-language-server.2.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 14:40.08 ---> saved as "1f56d1d859486ea280623e3cbe7da36f646f9651c7a5ffcbbd56cc21e9c53e36"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test vscoq-language-server.2.3.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile vscoq-language-server 2.3.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved vscoq-language-server.2.3.3 (https://opam.ocaml.org/cache)
-> removed vscoq-language-server.2.3.3
-> installed vscoq-language-server.2.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 14:40.13 ---> saved as "e09996291389240d55b0c2337817fd80aa0856496d1d10697225789bd699624e"
/home/opam: (run (shell "opam reinstall --with-test --verbose vscoq-language-server.2.3.3;\
\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\" != 'vscoq-language-server.2.3.3' && 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 vscoq-language-server 2.3.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [vscoq-language-server.2.3.3: extract]
-> retrieved vscoq-language-server.2.3.3 (cached)
-> removed vscoq-language-server.2.3.3
-> installed vscoq-language-server.2.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 14:40.19 ---> saved as "cec71a8a22faa0f62669b1c568722c2f345ff14191ed7e597aa6be15d970c9de"
Job succeeded
2026-04-30 14:40.24: Job succeeded