Build:
- 0
2026-01-25 08:34.58: New job: test capnp-rpc-unix.2.1.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29277/head (4a74999d158c085f74d21f9352b04f3e1180ec36)
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/29277/head" && git reset --hard 4a74999d
git fetch origin master
git merge --no-edit 64cd1a4d8a05bc4bcc3bda0e3ce31640883df344
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3
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 capnp-rpc-unix.2.1.1 2.1.1
RUN opam reinstall capnp-rpc-unix.2.1.1; \
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" != 'capnp-rpc-unix.2.1.1' && 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 capnp-rpc-unix.2.1.1) || true
RUN opam reinstall --with-test --verbose capnp-rpc-unix.2.1.1; \
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" != 'capnp-rpc-unix.2.1.1' && 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-01-25 08:34.58: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3-capnp-rpc-unix.2.1.1-4a74999d158c085f74d21f9352b04f3e1180ec36"
2026-01-25 08:34.58: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3)
(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 capnp-rpc-unix.2.1.1 2.1.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall capnp-rpc-unix.2.1.1;\
\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\" != 'capnp-rpc-unix.2.1.1' && 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 capnp-rpc-unix.2.1.1) || true"))
(run (shell "opam reinstall --with-test --verbose capnp-rpc-unix.2.1.1;\
\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\" != 'capnp-rpc-unix.2.1.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-25 08:34.58: Waiting for resource in pool OCluster
2026-01-25 08:35.00: Waiting for worker…
2026-01-25 08:35.01: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 64cd1a4d8a Merge pull request #29273 from jberdine/release-csexp-query-0.1.0
Updating 64cd1a4d8a..4a74999d15
Fast-forward
packages/capnp-rpc-net/capnp-rpc-net.2.1.1/opam | 47 +++++++++++++++++++++++
packages/capnp-rpc-unix/capnp-rpc-unix.2.1.1/opam | 47 +++++++++++++++++++++++
packages/capnp-rpc/capnp-rpc.2.1.1/opam | 44 +++++++++++++++++++++
3 files changed, 138 insertions(+)
create mode 100644 packages/capnp-rpc-net/capnp-rpc-net.2.1.1/opam
create mode 100644 packages/capnp-rpc-unix/capnp-rpc-unix.2.1.1/opam
create mode 100644 packages/capnp-rpc/capnp-rpc.2.1.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:9f4103f7d94b5db36adc57e1243e7aafbc77118b03f3c64c9d783f6875957bd3)
2026-01-25 08:36.23 ---> using "85f72cf1fe4e2d7307f2dbfaf295ab13f00915a95088b79c0422ecbd77383032" 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-01-25 08:36.23 ---> using "b02ad14703d9a6022e6a4ebbb7f55749cd97d344bdad9b05e63eef3edfda1a1f" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
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.
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.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-25 08:36.23 ---> using "b0edc034279433e01e50abadb20dabe284d5b12533654f8d8acd5a7fc6bacb50" 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=debian os-version=13
# 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
2026-01-25 08:36.23 ---> using "144beff2504a7c5add593a600a2daa80b340c062f26e44c1d24db352dce3c53f" 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-01-25 08:36.23 ---> using "4834f93979a713d08a251d8caefbb8a36efb0f41be2636e33defc122c0b7cbae" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-25 08:36.25 ---> saved as "97124694f8b9f2778032030f78bb48e49d8e36bb762be7b1b4e748f4a4b97a17"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-25 08:36.44 ---> saved as "cc57eb9d8498209166dcf78b70c0d884c22ef12bd7eb59c9b081fe07a4c8428b"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
- Fetched 9999 kB in 1s (8375 kB/s)
- Reading package lists...
-
2026-01-25 08:36.46 ---> saved as "d0eb5f2effde0bab218fa3152d18ca1eec91b4e349414e5a2e161034490432fb"
/home/opam: (run (shell "opam pin add -k version -yn capnp-rpc-unix.2.1.1 2.1.1"))
capnp-rpc-unix is now pinned to version 2.1.1
2026-01-25 08:36.47 ---> saved as "cf95cd31eb67809bf2e1f11571a50f3c53ea243b725ff50392f458be3abf1be9"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall capnp-rpc-unix.2.1.1;\
\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\" != 'capnp-rpc-unix.2.1.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
capnp-rpc-unix.2.1.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 72 packages
- install angstrom 0.16.1 [required by uri]
- install asetmap 0.8.1 [required by prometheus]
- install asn1-combinators 0.3.2 [required by capnp-rpc-net]
- install astring 0.8.5 [required by capnp-rpc-unix]
- install base v0.17.3 [required by capnp]
- install base-bytes base [required by extunix]
- install base64 3.5.2 [required by capnp-rpc-unix]
- install bigstringaf 0.10.0 [required by eio]
- install capnp 3.6.0 [required by capnp-rpc-net]
- install capnp-rpc 2.1.1 [required by capnp-rpc-net]
- install capnp-rpc-net 2.1.1 [required by capnp-rpc-unix]
- install capnp-rpc-unix 2.1.1 (pinned)
- install cmdliner 2.1.0 [required by capnp-rpc-unix]
- install conf-capnproto 2 [required by capnp-rpc-net]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-pkg-config 4 [required by zarith]
- install cppo 1.8.0 [required by ocplib-endian]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by capnp-rpc-unix]
- install digestif 1.3.0 [required by mirage-crypto-rng]
- install domain-local-await 1.0.1 [required by eio]
- install domain-name 0.5.0 [required by tls]
- install dune 3.21.0 [required by capnp-rpc-unix]
- install dune-configurator 3.21.0 [required by extunix]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eio 1.3 [required by capnp-rpc-unix]
- install eqaf 0.10 [required by mirage-crypto]
- install extunix 0.4.4 [required by capnp-rpc-unix]
- install fmt 0.11.0 [required by capnp-rpc-unix]
- install gmap 0.3.0 [required by x509]
- install hmap 0.8.1 [required by eio]
- install ipaddr 5.6.1 [required by capnp-rpc-unix]
- install kdf 1.0.0 [required by tls]
- install logs 0.10.0 [required by capnp-rpc-unix]
- install lwt 6.0.0 [required by prometheus]
- install lwt-dllist 1.1.0 [required by eio]
- install macaddr 5.6.1 [required by ipaddr]
- install mirage-crypto 2.0.2 [required by capnp-rpc-net]
- install mirage-crypto-ec 2.0.2 [required by tls]
- install mirage-crypto-pk 2.0.2 [required by tls]
- install mirage-crypto-rng 2.0.2 [required by capnp-rpc-unix]
- install mtime 2.1.0 [required by eio]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by astring]
- install ocamlfind 1.9.8 [required by astring]
- install ocplib-endian 1.2 [required by capnp]
- install ohex 0.2.0 [required by tls]
- install optint 0.3.0 [required by eio]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by extunix]
- install prometheus 1.3 [required by capnp-rpc-net]
- install psq 0.2.1 [required by eio]
- install ptime 1.2.0 [required by capnp-rpc-net]
- install re 1.14.0 [required by prometheus]
- install res 5.0.2 [required by capnp]
- install result 1.5 [required by capnp]
- install seq base [required by psq]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdint 0.7.2 [required by capnp, capnp-rpc]
- install stdio v0.17.0 [required by capnp]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by uri]
- install thread-table 1.0.0 [required by domain-local-await]
- install tls 2.0.3 [required by tls-eio]
- install tls-eio 2.0.3 [required by capnp-rpc-net]
- install topkg 1.1.1 [required by astring]
- install uri 4.4.0 [required by capnp-rpc-net]
- install x509 1.0.6 [required by capnp-rpc-net]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
capnproto libcapnp-dev 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" "capnproto" "libcapnp-dev" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libcapnp-1.1.0: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 ... 20653 files and directories currently installed.)
- Preparing to unpack .../0-libcapnp-1.1.0_1.1.0-2_amd64.deb ...
- Unpacking libcapnp-1.1.0:amd64 (1.1.0-2) ...
- Selecting previously unselected package capnproto.
- Preparing to unpack .../1-capnproto_1.1.0-2_amd64.deb ...
- Unpacking capnproto (1.1.0-2) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../2-libssl-dev_3.5.4-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Selecting previously unselected package libcapnp-dev:amd64.
- Preparing to unpack .../3-libcapnp-dev_1.1.0-2_amd64.deb ...
- Unpacking libcapnp-dev:amd64 (1.1.0-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../4-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 .../5-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 .../6-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-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 libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libcapnp-1.1.0:amd64 (1.1.0-2) ...
- Setting up libcapnp-dev:amd64 (1.1.0-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up capnproto (1.1.0-2) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asetmap.0.8.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved capnp.3.6.0 (cached)
-> retrieved capnp-rpc.2.1.1, capnp-rpc-net.2.1.1, capnp-rpc-unix.2.1.1 (https://github.com/mirage/capnp-rpc/releases/download/v2.1.1/capnp-rpc-2.1.1.tbz)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-capnproto.2
-> installed conf-gmp.5
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-local-await.1.0.1 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eio.1.3 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved extunix.0.4.4 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved gmap.0.3.0 (cached)
-> installed cmdliner.2.1.0
-> retrieved hmap.0.8.1 (cached)
-> retrieved ipaddr.5.6.1, macaddr.5.6.1 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.0.0 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved optint.0.3.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved prometheus.1.3 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved res.5.0.2 (cached)
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdint.0.7.2 (cached)
-> retrieved stdio.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved thread-table.1.0.0 (cached)
-> retrieved tls.2.0.3, tls-eio.2.0.3 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved x509.1.0.6 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed asetmap.0.8.1
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed dune.3.21.0
-> installed duration.0.2.1
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> installed optint.0.3.0
-> installed ppx_derivers.1.2.1
-> installed psq.0.2.1
-> installed re.1.14.0
-> installed res.5.0.2
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed stdint.0.7.2
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed thread-table.1.0.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.1
-> installed digestif.1.3.0
-> installed domain-local-await.1.0.1
-> installed dune-configurator.3.21.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.0.2
-> installed kdf.1.0.0
-> installed eio.1.3
-> installed uri.4.4.0
-> installed lwt.6.0.0
-> installed prometheus.1.3
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.0.2
-> installed mirage-crypto-pk.2.0.2
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed mirage-crypto-ec.2.0.2
-> installed capnp.3.6.0
-> installed x509.1.0.6
-> installed ppxlib.0.37.0
-> installed tls.2.0.3
-> installed tls-eio.2.0.3
-> installed capnp-rpc.2.1.1
-> installed capnp-rpc-net.2.1.1
-> installed extunix.0.4.4
-> installed capnp-rpc-unix.2.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-25 08:38.24 ---> saved as "fdf75e5c84a510df4a68cbeb5e41135b19b7073aff8dd52086509897f8d5f5f7"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test capnp-rpc-unix.2.1.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile capnp-rpc-unix 2.1.1 (pinned)
=== install 10 packages
- install alcotest 1.9.1 [required by capnp-rpc-unix]
- install camlp-streams 5.0.1 [required by mdx]
- install eio_linux 1.3 [required by eio_main]
- install eio_main 1.3 [required by capnp-rpc-unix]
- install eio_posix 1.3 [required by eio_main]
- install iomux 0.4 [required by eio_posix]
- install mdx 2.5.1 [required by capnp-rpc-unix]
- install ocaml-version 4.0.3 [required by mdx]
- install uring 2.7.0 [required by eio_linux]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
-> retrieved eio_linux.1.3, eio_main.1.3, eio_posix.1.3 (https://opam.ocaml.org/cache)
-> retrieved iomux.0.4 (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.1 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved ocaml-version.4.0.3 (https://opam.ocaml.org/cache)
-> retrieved uring.2.7.0 (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed iomux.0.4
-> installed uutf.1.0.4
-> installed eio_posix.1.3
-> removed capnp-rpc-unix.2.1.1
-> installed uring.2.7.0
-> installed alcotest.1.9.1
-> installed mdx.2.5.1
-> installed eio_linux.1.3
-> installed eio_main.1.3
-> installed capnp-rpc-unix.2.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-25 08:39.13 ---> saved as "fd21184cb9029ac8a2d7d2997d5bfbd290fbeb055dfccf854efbe8c96c8583e3"
/home/opam: (run (shell "opam reinstall --with-test --verbose capnp-rpc-unix.2.1.1;\
\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\" != 'capnp-rpc-unix.2.1.1' && 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 capnp-rpc-unix 2.1.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [capnp-rpc-unix: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "capnp-rpc-unix" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/capnp-rpc-unix.2.1.1)
Processing 2/4: [capnp-rpc-unix: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "capnp-rpc-unix" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/capnp-rpc-unix.2.1.1)
- (cd _build/default/examples/testlib && /usr/bin/capnp compile -o /home/opam/.opam/5.4/bin/capnpc-ocaml calculator.capnp)
- calculator.capnp --> calculator.mli calculator.ml
- (cd _build/default/examples/testlib && /usr/bin/capnp compile -o /home/opam/.opam/5.4/bin/capnpc-ocaml test_api.capnp)
- test_api.capnp --> test_api.mli test_api.ml
- (cd _build/default/test && ./test.exe)
- Testing `capnp-rpc'.
- This run has ID `SJEG6NYE'.
-
- [OK] eio 0 Simple.
- [OK] eio 1 Crypto.
- [OK] eio 2 Bad crypto.
- [OK] eio 3 Parallel.
- [OK] eio 4 Embargo.
- [OK] eio 5 Resolve.
- [OK] eio 6 Registry.
- [OK] eio 7 Calculator.
- [OK] eio 8 Calculator 2.
- [OK] eio 9 Calculator 3.
- [OK] eio 10 Cancel.
- [OK] eio 11 Indexing.
- [OK] eio 12 Options.
- [OK] eio 13 Sturdy URI.
- [OK] eio 14 Sturdy self.
- [OK] eio 15 Table restorer.
- [OK] eio 16 Fn restorer.
- [OK] eio 17 Broken ref.
- [OK] eio 18 Broken ref 2.
- [OK] eio 19 Broken ref 3.
- [OK] eio 20 Broken ref 4.
- [OK] eio 21 Parallel connect.
- [OK] eio 22 Parallel fails.
- [OK] eio 23 Crossed calls.
- [OK] eio 24 Store.
- [OK] eio 25 File store.
- [OK] eio 26 Await settled.
- [OK] eio 27 Late bootstrap.
- [OK] eio 28 Listen address.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/capnp-rpc-unix.2.1.1/_build/default/test/_build/_tests/capnp-rpc'.
- Test Successful in 1.275s. 29 tests run.
2026-01-25 10:35.01: Cancelling: Timeout (120.0 minutes)
Job cancelled
2026-01-25 10:35.05: Timeout (120.0 minutes)