(for PR #29075)
2025-12-11 21:27.27: New job: test rpclib.10.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29075/head (2d04beee37100f8a8d89ef140421171f0eeb5625)
on centos-10-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/29075/head" && git reset --hard 2d04beee
git fetch origin master
git merge --no-edit 0a807743922f8e480818f3e2a1bdf8281f406d0d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-5.4@sha256:7243a4642175aeabd19bf5427e37df29cd2f81e7406966a632d4363191b32c99
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 rpclib.10.0.0 10.0.0
RUN opam reinstall rpclib.10.0.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 "\"centos-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'rpclib.10.0.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 rpclib.10.0.0) || true
RUN opam reinstall --with-test --verbose rpclib.10.0.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 "\"centos-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'rpclib.10.0.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-11 21:27.27: Using cache hint "ocaml/opam:centos-10-ocaml-5.4@sha256:7243a4642175aeabd19bf5427e37df29cd2f81e7406966a632d4363191b32c99-rpclib.10.0.0-2d04beee37100f8a8d89ef140421171f0eeb5625"
2025-12-11 21:27.27: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-5.4@sha256:7243a4642175aeabd19bf5427e37df29cd2f81e7406966a632d4363191b32c99)
(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 rpclib.10.0.0 10.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rpclib.10.0.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 \"\\\"centos-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rpclib.10.0.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 rpclib.10.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose rpclib.10.0.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 \"\\\"centos-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rpclib.10.0.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-11 21:27.27: Waiting for resource in pool OCluster
2025-12-11 21:45.28: Waiting for worker…
2025-12-11 21:48.44: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 88% (16754/19008)
Updating files: 89% (16918/19008)
Updating files: 90% (17108/19008)
Updating files: 91% (17298/19008)
Updating files: 92% (17488/19008)
Updating files: 93% (17678/19008)
Updating files: 94% (17868/19008)
Updating files: 95% (18058/19008)
Updating files: 96% (18248/19008)
Updating files: 97% (18438/19008)
Updating files: 98% (18628/19008)
Updating files: 99% (18818/19008)
Updating files: 100% (19008/19008)
Updating files: 100% (19008/19008), done.
HEAD is now at 0a80774392 Merge pull request #29069 from mseri/release-doi2bib-0.9.0
Merge made by the 'ort' strategy.
.../ppx_deriving_rpc/ppx_deriving_rpc.10.0.0/opam | 42 +++++++++++++++++++
packages/rpclib-async/rpclib-async.10.0.0/opam | 41 +++++++++++++++++++
packages/rpclib-html/rpclib-html.10.0.0/opam | 37 +++++++++++++++++
packages/rpclib-js/rpclib-js.10.0.0/opam | 38 +++++++++++++++++
packages/rpclib-lwt/rpclib-lwt.10.0.0/opam | 42 +++++++++++++++++++
packages/rpclib/rpclib.10.0.0/opam | 47 ++++++++++++++++++++++
6 files changed, 247 insertions(+)
create mode 100644 packages/ppx_deriving_rpc/ppx_deriving_rpc.10.0.0/opam
create mode 100644 packages/rpclib-async/rpclib-async.10.0.0/opam
create mode 100644 packages/rpclib-html/rpclib-html.10.0.0/opam
create mode 100644 packages/rpclib-js/rpclib-js.10.0.0/opam
create mode 100644 packages/rpclib-lwt/rpclib-lwt.10.0.0/opam
create mode 100644 packages/rpclib/rpclib.10.0.0/opam
(from ocaml/opam:centos-10-ocaml-5.4@sha256:7243a4642175aeabd19bf5427e37df29cd2f81e7406966a632d4363191b32c99)
2025-12-11 21:48.50 ---> using "585d31324eba99552d5ca80f85a48e7e587f9391a47cecb2ad15336f5e2b2ea6" 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-11 21:48.50 ---> using "06f5e1785665d6a8b734eeb6687bc43b944254312939b57474eb61968aae8413" 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-11 21:48.50 ---> using "2f55d7d41ecbcc95fa9baf4c23c15a9633f57a8975ea753556d57bff639600e0" 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=x86_64 os=linux os-distribution=centos os-version=10
# 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-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.0
2025-12-11 21:48.50 ---> using "c0218fb713d1f66c3b2b82409b9b27b710863f7b2ad2b099aa86e7ebd1a21243" 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-11 21:48.50 ---> using "b10f3e05dedc83bf1263bbe8618765e626d7c07f169adbee092de8c8660663b3" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-11 21:49.02 ---> saved as "c28f4bf61bf824126ca48638814b13efdaa4fded82608ddff622bd9d0e010de9"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-11 21:49.44 ---> saved as "c802b1c467892457160b2f5c1b3ca1f82f00cc646f2f3bb8ba4723f20a865480"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS 53 kB/s | 14 kB 00:00
- CentOS Stream 10 - BaseOS 8.0 MB/s | 6.8 MB 00:00
- CentOS Stream 10 - AppStream 103 kB/s | 14 kB 00:00
- CentOS Stream 10 - AppStream 7.5 MB/s | 3.5 MB 00:00
- CentOS Stream 10 - CRB 112 kB/s | 13 kB 00:00
- CentOS Stream 10 - CRB 2.9 MB/s | 774 kB 00:00
- CentOS Stream 10 - Extras packages 116 kB/s | 15 kB 00:00
- CentOS Stream 10 - Extras packages 49 kB/s | 8.1 kB 00:00
- Metadata cache created.
2025-12-11 21:49.56 ---> saved as "2b6e9db220d43a2edcbaf75cb4ad38dcc12847019f271567df72c44cb723fb2e"
/home/opam: (run (shell "opam pin add -k version -yn rpclib.10.0.0 10.0.0"))
rpclib is now pinned to version 10.0.0
2025-12-11 21:49.58 ---> saved as "06fa9ddfededf2286410f6d88262de97477d9896d3602bcca61271fbc5bd0594"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rpclib.10.0.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 \"\\\"centos-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rpclib.10.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
rpclib.10.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
- install base64 3.5.2 [required by rpclib]
- install cmdliner 2.1.0 [required by rpclib]
- install dune 3.20.2 [required by rpclib]
- install ocamlbuild 0.16.1 [required by rresult, xmlm]
- install ocamlfind 1.9.8 [required by rresult, xmlm]
- install result 1.5 [required by rpclib]
- install rpclib 10.0.0 (pinned)
- install rresult 0.7.0 [required by rpclib]
- install topkg 1.1.1 [required by rresult, xmlm]
- install xmlm 1.4.0 [required by rpclib]
- install yojson 3.0.0 [required by rpclib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved dune.3.20.2 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rpclib.10.0.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved xmlm.1.4.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed xmlm.1.4.0
-> installed dune.3.20.2
-> installed base64.3.5.2
-> installed result.1.5
-> installed yojson.3.0.0
-> installed rpclib.10.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 21:50.50 ---> saved as "08711e45ad928771e19f2822f1b5303e105b956687e5a888c133b48e2583963e"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test rpclib.10.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile rpclib 10.0.0 (pinned)
=== install 7 packages
- install alcotest 1.9.1 [required by rpclib]
- install astring 0.8.5 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed re.1.14.0
-> removed rpclib.10.0.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed rpclib.10.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 21:51.06 ---> saved as "141949b750c4fe975432c0100f6a00b5a0c1b399af7dd5f9d497677799c319ea"
/home/opam: (run (shell "opam reinstall --with-test --verbose rpclib.10.0.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 \"\\\"centos-10\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'rpclib.10.0.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 rpclib 10.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [rpclib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rpclib" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rpclib.10.0.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/lib/.json.objs/byte -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/result -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/yojson -I src/lib/.rpclib_core.objs/byte -cmi-file src/lib/.json.objs/byte/jsonrpc.cmi -no-alias-deps -o src/lib/.json.objs/byte/jsonrpc.cmo -c -impl src/lib/jsonrpc.ml)
- File "src/lib/jsonrpc.ml", line 68, characters 4-15:
- 68 | | unsupported -> raise (JsonToRpcError unsupported)
- ^^^^^^^^^^^
- Warning 11 [redundant-case]: this match case is unused.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/lib/.json.objs/byte -I src/lib/.json.objs/native -I /home/opam/.opam/5.4/lib/base64 -I /home/opam/.opam/5.4/lib/result -I /home/opam/.opam/5.4/lib/rresult -I /home/opam/.opam/5.4/lib/yojson -I src/lib/.rpclib_core.objs/byte -I src/lib/.rpclib_core.objs/native -cmi-file src/lib/.json.objs/byte/jsonrpc.cmi -no-alias-deps -o src/lib/.json.objs/native/jsonrpc.cmx -c -impl src/lib/jsonrpc.ml)
- File "src/lib/jsonrpc.ml", line 68, characters 4-15:
- 68 | | unsupported -> raise (JsonToRpcError unsupported)
- ^^^^^^^^^^^
- Warning 11 [redundant-case]: this match case is unused.
Processing 2/4: [rpclib: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "rpclib" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rpclib.10.0.0)
- (cd _build/default/tests/lib && ./suite.exe)
- Testing `suite'.
- This run has ID `9ONDMJ4R'.
-
- [OK] Client_server_test 0 test_call_core.
- [OK] Json 0 Jsonrpc.of_string.
- [OK] Json 1 Jsonrpc.of_string ~strict:false.
- [OK] Json 2 Jsonrpc.call_of_string.
- [OK] Json 3 Jsonrpc.response_of_string.
- [OK] Json 4 Jsonrpc.response_of_string ~s...
- [OK] Xml_xapi 0 Xapi XML tests.
- [OK] Encoding 0 test.
- [OK] Encoding 1 test not strict.
- [OK] Encoding 2 test strict.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/rpclib.10.0.0/_build/default/tests/lib/_build/_tests/suite'.
- Test Successful in 0.002s. 10 tests run.
-> compiled rpclib.10.0.0
-> removed rpclib.10.0.0
-> installed rpclib.10.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 21:51.14 ---> saved as "5eeb6d8c573590c6baed68902dd85ef7236d714c0fd2baf982a25134af6826c4"
Job succeeded
2025-12-11 21:51.41: Job succeeded