Build:
- 0
2025-12-20 10:20.33: New job: build 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/ppc64le
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:81f85c10f2933cea40d8b9a8f96cbce66d0489e32b142e76538bc3ed16d33845
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
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-12-20 10:20.33: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:81f85c10f2933cea40d8b9a8f96cbce66d0489e32b142e76538bc3ed16d33845-jsonrpc.1.25.0-0e93175a07cd73d3433ed9812a7b130e69127c1b"
2025-12-20 10:20.33: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:81f85c10f2933cea40d8b9a8f96cbce66d0489e32b142e76538bc3ed16d33845)
(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"))
)
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:20.34: Got resource from pool OCluster
Building on orithia.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:81f85c10f2933cea40d8b9a8f96cbce66d0489e32b142e76538bc3ed16d33845)
2025-12-20 10:20.48 ---> using "7be6c410434bd1454d0728c1bb988b40ae9018b7c522b9ccd77ded25da68e1ef" from cache
/: (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:20.48 ---> using "6d32a1e096c3e30be71d03f2bee6867f563f1bc00e69df7d197bba17910dae29" 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:20.48 ---> using "d127b5dcd77ec1a8fa82dfa133b5b1795303ff45fe69aa96df27ee6a9e203dfe" 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=ppc64 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 175
# 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:20.48 ---> using "c89b844e41099787f33f851fd27f08abf5765d99a637d5d95c0724fa18a8e8f5" 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:20.48 ---> using "2fe79dd763e1da590c522e42bbebc7f441fd688ee44b11aadd621292ffa08558" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-20 10:21.39 ---> saved as "80c13217a9caef4d8a38bedeee9ed52010a23316438b8ebe106d9a1f09e34adc"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-20 10:21.58 ---> saved as "3ad7d55131c0dec429023537907abcdc4698c09a0eff01854faf88bca590bc36"
/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 ppc64el Packages [81.4 kB]
- Fetched 172 kB in 0s (456 kB/s)
- Reading package lists...
-
2025-12-20 10:22.00 ---> saved as "35d2e69628c8ee862338b7b8154f143a215f012bc2c2bc0ea05613b8ae37ddb2"
/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:22.00 ---> saved as "0a344e7f2a29566aef3fc55cce01e84bdee35b2579781974745194c8470e3c1e"
/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 (https://github.com/ocaml/ocaml-lsp/releases/download/1.25.0/lsp-1.25.0.tbz)
-> 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.27 ---> saved as "68410056f47e214be04f1bcbb2f9abeea3e722147a6baaa2bc7f423e15565793"
Job succeeded
2025-12-20 10:22.38: Job succeeded