Build:
- 0
2025-12-20 10:20.33: New job: test jsonrpc.1.25.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29118/head (0e93175a07cd73d3433ed9812a7b130e69127c1b)
on debian-13-ocaml-4.14/arm32v7
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29118/head" && git reset --hard 0e93175a
git fetch origin master
git merge --no-edit 55b1099664cdc48c71e3d01d8fdaef4b376ade70
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:cfd8a68737e45ef291e548fe850fe158f7c534cea5b3bc2e9404fa94ce006733
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 jsonrpc.1.25.0 1.25.0
RUN opam reinstall jsonrpc.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" != 'jsonrpc.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 jsonrpc.1.25.0) || true
RUN opam reinstall --with-test --verbose jsonrpc.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" != 'jsonrpc.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 .
2025-12-20 10:20.33: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:cfd8a68737e45ef291e548fe850fe158f7c534cea5b3bc2e9404fa94ce006733-jsonrpc.1.25.0-0e93175a07cd73d3433ed9812a7b130e69127c1b"
2025-12-20 10:20.33: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:cfd8a68737e45ef291e548fe850fe158f7c534cea5b3bc2e9404fa94ce006733)
(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 jsonrpc.1.25.0 1.25.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall jsonrpc.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\" != 'jsonrpc.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 jsonrpc.1.25.0) || true"))
(run (shell "opam reinstall --with-test --verbose jsonrpc.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\" != 'jsonrpc.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"))
)
2025-12-20 10:20.33: Waiting for resource in pool OCluster
2025-12-20 10:20.34: Waiting for worker…
2025-12-20 10:21.23: Got resource from pool OCluster
Building on kydoime.caelum.ci.dev
All commits already cached
HEAD is now at 55b1099664 Merge pull request #29100 from samoht/release-cohttp-v6.2.1
Updating 55b1099664..0e93175a07
Fast-forward
packages/jsonrpc/jsonrpc.1.25.0/opam | 50 +++++++++++++++
packages/lsp/lsp.1.25.0/opam | 60 +++++++++++++++++
.../ocaml-lsp-server/ocaml-lsp-server.1.25.0/opam | 75 ++++++++++++++++++++++
3 files changed, 185 insertions(+)
create mode 100644 packages/jsonrpc/jsonrpc.1.25.0/opam
create mode 100644 packages/lsp/lsp.1.25.0/opam
create mode 100644 packages/ocaml-lsp-server/ocaml-lsp-server.1.25.0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:cfd8a68737e45ef291e548fe850fe158f7c534cea5b3bc2e9404fa94ce006733)
2025-12-20 10:21.28 ---> using "b53b53e126bbb719e0261701daf74518943f53dcb0cf0bff3b6fd01f6cd047c1" from cache
/: (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"))
2025-12-20 10:21.28 ---> using "4d6fd82a91eb76677b68f4f8a6960a14cf6d33adef2bdef8fb20fba24f598720" 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
2025-12-20 10:21.28 ---> using "ce50a099fe4a44bec2d033d57988c7541b7eb16404515e930cc2fc5bf620ba49" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=arm32 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 79
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-12-20 10:21.28 ---> using "e74e422ee5a52ffa00769526cacb076eafa704d685d0eaf4395ee3271929be01" 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/"))
2025-12-20 10:21.28 ---> using "04046079482a7606182b24af08de34eea57d9655bf400692dce7e07afda83f65" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-20 10:21.29 ---> using "e84ebcaca36e6e27b434721fb28afdaab036eeb1fb0594e469b7823e86ea319e" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-20 10:21.33 ---> saved as "aea3c9f454f458ba145b6bddd77c9311f905e266310054af65ee17384e73f1be"
/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 armhf Packages [81.4 kB]
- Fetched 172 kB in 0s (936 kB/s)
- Reading package lists...
-
2025-12-20 10:21.34 ---> saved as "f907be2f52f0bb37de475321d51fca5bd0c7e2ae1dde8481cf8ac3693b7cb3d3"
/home/opam: (run (shell "opam pin add -k version -yn jsonrpc.1.25.0 1.25.0"))
jsonrpc is now pinned to version 1.25.0
2025-12-20 10:21.35 ---> saved as "6791ddd7bface426813aa9082d688e83d263b950cd91897009004e8ef353067d"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall jsonrpc.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\" != 'jsonrpc.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"))
jsonrpc.1.25.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install dune 3.20.2 [required by jsonrpc]
- install jsonrpc 1.25.0 (pinned)
- install yojson 3.0.0 [required by jsonrpc]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2 (cached)
-> retrieved jsonrpc.1.25.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed dune.3.20.2
-> installed yojson.3.0.0
-> installed jsonrpc.1.25.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-20 10:22.37 ---> saved as "da6f3bccd03de705a768856fecc4fd50d2111fa3deeef86e9b6b07b8141cf311"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test jsonrpc.1.25.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile jsonrpc 1.25.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed jsonrpc.1.25.0
-> installed jsonrpc.1.25.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-20 10:22.42 ---> saved as "0013f28acdfd6c1cab20a11ea8d6cc7c3260b15b3b362d459937d27dcbfd7a9b"
/home/opam: (run (shell "opam reinstall --with-test --verbose jsonrpc.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\" != 'jsonrpc.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"))
The following actions will be performed:
=== recompile 1 package
- recompile jsonrpc 1.25.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [jsonrpc: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "jsonrpc" "-j" "79" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/jsonrpc.1.25.0)
-> compiled jsonrpc.1.25.0
-> removed jsonrpc.1.25.0
-> installed jsonrpc.1.25.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-20 10:22.46 ---> saved as "9147e33c03a3a1f80f8ec8be6a871ddd111bc6d0f32bf3411d21daa3f7b23b43"
Job succeeded
2025-12-20 10:22.49: Job succeeded