Build:
- 0
2026-03-31 17:12.33: New job: test rpclib.10.2.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29629/head (572a2c12b2952d8199d41ad676be326f45956f81)
on ubuntu-24.04-ocaml-5.4/riscv64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29629/head" && git reset --hard 572a2c12
git fetch origin master
git merge --no-edit 4b07b3403ca6031c1a5af00d48d6aa90de102e54
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:db117072c7c4e333c4bbebd64086f61a6041c264211df9d20a6cd5bfe5b2fce0
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.2.0 10.2.0
RUN opam reinstall rpclib.10.2.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'rpclib.10.2.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.2.0) || true
RUN opam reinstall --with-test --verbose rpclib.10.2.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'rpclib.10.2.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 .
2026-03-31 17:12.33: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:db117072c7c4e333c4bbebd64086f61a6041c264211df9d20a6cd5bfe5b2fce0-rpclib.10.2.0-572a2c12b2952d8199d41ad676be326f45956f81"
2026-03-31 17:12.33: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:db117072c7c4e333c4bbebd64086f61a6041c264211df9d20a6cd5bfe5b2fce0)
(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.2.0 10.2.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rpclib.10.2.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 \"\\\"ubuntu-24.04\\\"\"; 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.2.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.2.0) || true"))
(run (shell "opam reinstall --with-test --verbose rpclib.10.2.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 \"\\\"ubuntu-24.04\\\"\"; 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.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-31 17:12.33: Waiting for resource in pool OCluster
2026-03-31 17:12.35: Waiting for worker…
2026-03-31 18:44.18: Got resource from pool OCluster
Building on riscv-bm-02.sw.ci.dev
All commits already cached
Updating files: 14% (2635/18575)
Updating files: 15% (2787/18575)
Updating files: 16% (2972/18575)
Updating files: 17% (3158/18575)
Updating files: 18% (3344/18575)
Updating files: 19% (3530/18575)
Updating files: 20% (3715/18575)
Updating files: 21% (3901/18575)
Updating files: 22% (4087/18575)
Updating files: 23% (4273/18575)
Updating files: 24% (4458/18575)
Updating files: 25% (4644/18575)
Updating files: 26% (4830/18575)
Updating files: 27% (5016/18575)
Updating files: 27% (5114/18575)
Updating files: 28% (5201/18575)
Updating files: 29% (5387/18575)
Updating files: 30% (5573/18575)
Updating files: 31% (5759/18575)
Updating files: 32% (5944/18575)
Updating files: 33% (6130/18575)
Updating files: 34% (6316/18575)
Updating files: 35% (6502/18575)
Updating files: 36% (6687/18575)
Updating files: 37% (6873/18575)
Updating files: 38% (7059/18575)
Updating files: 39% (7245/18575)
Updating files: 39% (7374/18575)
Updating files: 40% (7430/18575)
Updating files: 41% (7616/18575)
Updating files: 42% (7802/18575)
Updating files: 43% (7988/18575)
Updating files: 44% (8173/18575)
Updating files: 45% (8359/18575)
Updating files: 46% (8545/18575)
Updating files: 47% (8731/18575)
Updating files: 48% (8916/18575)
Updating files: 49% (9102/18575)
Updating files: 50% (9288/18575)
Updating files: 51% (9474/18575)
Updating files: 52% (9659/18575)
Updating files: 52% (9690/18575)
Updating files: 53% (9845/18575)
Updating files: 54% (10031/18575)
Updating files: 55% (10217/18575)
Updating files: 56% (10402/18575)
Updating files: 57% (10588/18575)
Updating files: 58% (10774/18575)
Updating files: 59% (10960/18575)
Updating files: 60% (11145/18575)
Updating files: 61% (11331/18575)
Updating files: 62% (11517/18575)
Updating files: 63% (11703/18575)
Updating files: 64% (11888/18575)
Updating files: 64% (11893/18575)
Updating files: 65% (12074/18575)
Updating files: 66% (12260/18575)
Updating files: 67% (12446/18575)
Updating files: 68% (12631/18575)
Updating files: 69% (12817/18575)
Updating files: 70% (13003/18575)
Updating files: 71% (13189/18575)
Updating files: 72% (13374/18575)
Updating files: 73% (13560/18575)
Updating files: 74% (13746/18575)
Updating files: 75% (13932/18575)
Updating files: 76% (14117/18575)
Updating files: 76% (14169/18575)
Updating files: 77% (14303/18575)
Updating files: 78% (14489/18575)
Updating files: 79% (14675/18575)
Updating files: 80% (14860/18575)
Updating files: 81% (15046/18575)
Updating files: 82% (15232/18575)
Updating files: 83% (15418/18575)
Updating files: 84% (15603/18575)
Updating files: 85% (15789/18575)
Updating files: 86% (15975/18575)
Updating files: 87% (16161/18575)
Updating files: 88% (16346/18575)
Updating files: 89% (16532/18575)
Updating files: 89% (16539/18575)
Updating files: 90% (16718/18575)
Updating files: 91% (16904/18575)
Updating files: 92% (17089/18575)
Updating files: 93% (17275/18575)
Updating files: 94% (17461/18575)
Updating files: 95% (17647/18575)
Updating files: 96% (17832/18575)
Updating files: 97% (18018/18575)
Updating files: 98% (18204/18575)
Updating files: 99% (18390/18575)
Updating files: 100% (18575/18575)
Updating files: 100% (18575/18575), done.
HEAD is now at 4b07b3403c Merge pull request #29556 from samoht/release-alcobar-v0.3
Updating 4b07b3403c..572a2c12b2
Fast-forward
.../ppx_deriving_rpc/ppx_deriving_rpc.10.2.0/opam | 42 +++++++++++++++++++
packages/rpclib-async/rpclib-async.10.2.0/opam | 41 +++++++++++++++++++
packages/rpclib-html/rpclib-html.10.2.0/opam | 37 +++++++++++++++++
packages/rpclib-js/rpclib-js.10.2.0/opam | 38 +++++++++++++++++
packages/rpclib-lwt/rpclib-lwt.10.2.0/opam | 42 +++++++++++++++++++
packages/rpclib/rpclib.10.2.0/opam | 47 ++++++++++++++++++++++
6 files changed, 247 insertions(+)
create mode 100644 packages/ppx_deriving_rpc/ppx_deriving_rpc.10.2.0/opam
create mode 100644 packages/rpclib-async/rpclib-async.10.2.0/opam
create mode 100644 packages/rpclib-html/rpclib-html.10.2.0/opam
create mode 100644 packages/rpclib-js/rpclib-js.10.2.0/opam
create mode 100644 packages/rpclib-lwt/rpclib-lwt.10.2.0/opam
create mode 100644 packages/rpclib/rpclib.10.2.0/opam
(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:db117072c7c4e333c4bbebd64086f61a6041c264211df9d20a6cd5bfe5b2fce0)
2026-03-31 18:44.29 ---> using "1afbf1c3817e9b9dd6c849f18c81cd54a70004b6185886ebbe0968654155dfcc" 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-03-31 18:44.29 ---> using "9b74c082db0c46a9fca1dadff78b3c50d84e0e944eee3374d82cf17f17770155" 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
2026-03-31 18:44.29 ---> using "95de59af29bdd834715db31461a90e98c4d9e8936809b86c1714c103dc64821f" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# 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-03-31 18:44.29 ---> using "d9f9a4ef15dc79d85792d5e2bea1311b6ab8722163a614575e3ca995c2c1650f" 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-03-31 18:44.29 ---> using "5c1f7c0b9beb70c056f5e09479f03e7e0c5b8cc27d9ce59673ca7abc913b9344" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-31 18:44.35 ---> using "64ce389f6407b313e4594203eeff258a8ffd19867be5c8aa5feefe32bf098c8d" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-31 18:44.35 ---> using "0c045063ae010436704ae38b0ea44ed9f162d9ef7b84f21366963e725fe3c27b" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1602 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [953 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [1118 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [627 kB]
- Fetched 4679 kB in 2s (2036 kB/s)
- Reading package lists...
-
2026-03-31 18:44.35 ---> using "8d12c9b1f32e1014c09208770e3d6ef607c54f498f76568ebba5847d5d876ff0" from cache
/home/opam: (run (shell "opam pin add -k version -yn rpclib.10.2.0 10.2.0"))
rpclib is now pinned to version 10.2.0
2026-03-31 18:44.35 ---> using "785e8208079569cc612ec5051551e9ca67be682c0badc049ed725b5b0164663a" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rpclib.10.2.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 \"\\\"ubuntu-24.04\\\"\"; 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.2.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.2.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.22.0 [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.2.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.22.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rpclib.10.2.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.22.0
-> installed result.1.5
-> installed base64.3.5.2
-> installed yojson.3.0.0
-> installed rpclib.10.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-31 18:44.35 ---> using "29c657f6948ef8fe22ae22000e9372298b34df9243ceb99258718ffa87c6754c" from cache
/home/opam: (run (network host)
(shell "(opam reinstall --with-test rpclib.10.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile rpclib 10.2.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 fmt.0.11.0
-> installed astring.0.8.5
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> removed rpclib.10.2.0
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
-> installed rpclib.10.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-31 18:45.38 ---> saved as "d7264b6c1640049fe23becb02a254f4b5d9fe66754b2858072e67e30f5e625fb"
/home/opam: (run (shell "opam reinstall --with-test --verbose rpclib.10.2.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 \"\\\"ubuntu-24.04\\\"\"; 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.2.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.2.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [rpclib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rpclib" "-j" "3" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rpclib.10.2.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" "3" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rpclib.10.2.0)
- (cd _build/default/tests/lib && ./suite.exe)
- Testing `suite'.
- This run has ID `SGWUVG19'.
-
- [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.
- [OK] Rpc.t roundtrip 0 XMLRPC/Int.
- [OK] Rpc.t roundtrip 1 XMLRPC/Int32.
- [OK] Rpc.t roundtrip 2 XMLRPC/Bool.
- [OK] Rpc.t roundtrip 3 XMLRPC/Float.
- [OK] Rpc.t roundtrip 4 XMLRPC/String.
- [OK] Rpc.t roundtrip 5 XMLRPC/enum.
- [OK] Rpc.t roundtrip 6 XMLRPC/dict.
- [OK] Rpc.t roundtrip 7 XMLRPC/unit.
- [OK] Rpc.t roundtrip 8 XMLRPC/Int32.compat.
- [OK] Rpc.t roundtrip 9 XMLRPC/DateTime.
- [OK] Rpc.t roundtrip 10 XMLRPC/Base64.
- [OK] Rpc.t roundtrip 11 JSONRPC/Int.
- [OK] Rpc.t roundtrip 12 JSONRPC/Int32.
- [OK] Rpc.t roundtrip 13 JSONRPC/Bool.
- [OK] Rpc.t roundtrip 14 JSONRPC/Float.
- [OK] Rpc.t roundtrip 15 JSONRPC/String.
- [OK] Rpc.t roundtrip 16 JSONRPC/enum.
- [OK] Rpc.t roundtrip 17 JSONRPC/dict.
- [OK] Rpc.t roundtrip 18 JSONRPC/unit.
- [OK] Rpc.t roundtrip 19 JSONRPC/Int32.compat.
- [OK] Rpc.t roundtrip 20 JSONRPC/DateTime.
- [OK] Rpc.t roundtrip 21 JSONRPC/Base64.
- [OK] Rpc.t roundtrip 22 Rpc.t/Int.
- [OK] Rpc.t roundtrip 23 Rpc.t/Int32.
- [OK] Rpc.t roundtrip 24 Rpc.t/Bool.
- [OK] Rpc.t roundtrip 25 Rpc.t/Float.
- [OK] Rpc.t roundtrip 26 Rpc.t/String.
- [OK] Rpc.t roundtrip 27 Rpc.t/enum.
- [OK] Rpc.t roundtrip 28 Rpc.t/dict.
- [OK] Rpc.t roundtrip 29 Rpc.t/unit.
- [OK] Rpc.t roundtrip 30 Rpc.t/Int32.compat.
- [OK] Rpc.t roundtrip 31 Rpc.t/DateTime.
- [OK] Rpc.t roundtrip 32 Rpc.t/Base64.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/rpclib.10.2.0/_build/default/tests/lib/_build/_tests/suite'.
- Test Successful in 0.028s. 43 tests run.
-> compiled rpclib.10.2.0
-> removed rpclib.10.2.0
-> installed rpclib.10.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-31 18:46.07 ---> saved as "6a352abc62e0aca6a9a0bba2e2cfeef9d8a08fdff62e58af7ac0c73d6209b9f1"
Job succeeded
2026-03-31 18:46.42: Job succeeded