- github
- ocaml
- opam-repository
- 395113
- extras,ocaml-4.14-fp,ocluster.0.2.1,tests
(not at the head of any monitored branch or PR)
2026-03-17 10:26.06: New job: test ocluster.0.2.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
on debian-13-ocaml-4.14-fp/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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14-fp@sha256:7f2143490bb3cfb2a155174ede2e8fc5cc06f50112fd4fa0b1043ef977e8f301
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 ocluster.0.2.1 0.2.1
RUN opam reinstall ocluster.0.2.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" != 'ocluster.0.2.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 ocluster.0.2.1) || true
RUN opam reinstall --with-test --verbose ocluster.0.2.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" != 'ocluster.0.2.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-03-17 10:26.06: Using cache hint "ocaml/opam:debian-13-ocaml-4.14-fp@sha256:7f2143490bb3cfb2a155174ede2e8fc5cc06f50112fd4fa0b1043ef977e8f301-ocluster.0.2.1-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:26.06: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14-fp@sha256:7f2143490bb3cfb2a155174ede2e8fc5cc06f50112fd4fa0b1043ef977e8f301)
(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 ocluster.0.2.1 0.2.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocluster.0.2.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\" != 'ocluster.0.2.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 ocluster.0.2.1) || true"))
(run (shell "opam reinstall --with-test --verbose ocluster.0.2.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\" != 'ocluster.0.2.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-03-17 10:26.06: Waiting for resource in pool OCluster
2026-03-17 12:17.58: Waiting for worker…
2026-03-17 12:19.36: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
packages/bimage-lwt/bimage-lwt.0.3.0/opam | 6 +++++-
packages/bimage-lwt/bimage-lwt.0.3.1/opam | 6 +++++-
packages/bimage-lwt/bimage-lwt.0.4.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.0.11.0/opam | 4 +++-
packages/caqti-lwt/caqti-lwt.1.0.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.2.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.3.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.6.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.7.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.8.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.9.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.0.1/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.1.1/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.2.4/opam | 6 +++++-
packages/fuseau-lwt/fuseau-lwt.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.1.13/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.2/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.3/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.0.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.3.1.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.2.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.1/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.2/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.1.0/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.2.0/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.3.0/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.1/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.2/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.3/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.4/opam | 7 ++++++-
packages/lwt_eio/lwt_eio.0.5.1/opam | 7 ++++++-
packages/lwt_eio/lwt_eio.0.5/opam | 7 ++++++-
packages/lwt_glib/lwt_glib.1.0.1/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.1.0/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.1.1/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.0/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.1/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.0.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.0.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.1.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.3/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.4/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.3/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.1.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.8.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.8.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.3/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.6/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.7/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.8/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.9/opam | 6 +++++-
packages/mwt/mwt.0.1.0/opam | 6 +++++-
packages/nocrypto/nocrypto.0.5.4-1/opam | 6 +++++-
packages/nocrypto/nocrypto.0.5.4-2/opam | 6 +++++-
packages/ocluster/ocluster.0.1/opam | 4 +++-
packages/ocluster/ocluster.0.2.1/opam | 6 +++++-
packages/ocluster/ocluster.0.2/opam | 4 +++-
packages/ocluster/ocluster.0.3.0/opam | 6 +++++-
packages/picos/picos.0.3.0/opam | 6 +++++-
packages/picos/picos.0.4.0/opam | 6 +++++-
packages/picos_lwt/picos_lwt.0.5.0/opam | 6 +++++-
packages/picos_lwt/picos_lwt.0.6.0/opam | 6 +++++-
packages/tezt/tezt.2.0.0/opam | 6 +++++-
packages/tezt/tezt.3.0.0/opam | 4 +++-
packages/tezt/tezt.3.1.0/opam | 4 +++-
packages/tezt/tezt.3.1.1/opam | 4 +++-
packages/tezt/tezt.4.0.0/opam | 4 +++-
packages/tezt/tezt.4.1.0/opam | 4 +++-
packages/tezt/tezt.4.2.0/opam | 4 +++-
packages/tezt/tezt.4.3.0/opam | 4 +++-
84 files changed, 403 insertions(+), 84 deletions(-)
(from ocaml/opam:debian-13-ocaml-4.14-fp@sha256:7f2143490bb3cfb2a155174ede2e8fc5cc06f50112fd4fa0b1043ef977e8f301)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14-fp@sha256:7f2143490bb3cfb2a155174ede2e8fc5cc06f50112fd4fa0b1043ef977e8f301' locally
docker.io/ocaml/opam@sha256:7f2143490bb3cfb2a155174ede2e8fc5cc06f50112fd4fa0b1043ef977e8f301: Pulling from ocaml/opam
866771c43bf5: Already exists
818e60f19055: Pulling fs layer
a9c0f9875679: Pulling fs layer
4d0bafe9c21a: Pulling fs layer
390882e3ca42: Pulling fs layer
7f1309deb748: Pulling fs layer
f13f79cebbb2: Pulling fs layer
390882e3ca42: Waiting
7f1309deb748: Waiting
070b7978d10a: Pulling fs layer
f13f79cebbb2: Waiting
f19a9073eb91: Pulling fs layer
9ea5002679f1: Pulling fs layer
070b7978d10a: Waiting
f19a9073eb91: Waiting
8de100742279: Pulling fs layer
3d2848b9e9b9: Pulling fs layer
9ea5002679f1: Waiting
1db328698e0d: Pulling fs layer
8de100742279: Waiting
5d796fa05d62: Pulling fs layer
9fa356e32c0c: Pulling fs layer
3d2848b9e9b9: Waiting
1db328698e0d: Waiting
5d796fa05d62: Waiting
1fdfcf40563a: Pulling fs layer
9fa356e32c0c: Waiting
7dd154aa3301: Pulling fs layer
1fdfcf40563a: Waiting
7dd154aa3301: Waiting
eee873cd0e21: Pulling fs layer
0bcb9ce43efd: Pulling fs layer
2a5bee4c58bf: Pulling fs layer
0bcb9ce43efd: Waiting
eee873cd0e21: Waiting
ee4d4af6aa39: Pulling fs layer
2a5bee4c58bf: Waiting
4f4fb700ef54: Pulling fs layer
ee4d4af6aa39: Waiting
92fcd944e0fc: Pulling fs layer
4f4fb700ef54: Waiting
ee316b311fc8: Pulling fs layer
92fcd944e0fc: Waiting
beccfc338b8c: Pulling fs layer
ee316b311fc8: Waiting
fd1a0487aa63: Pulling fs layer
beccfc338b8c: Waiting
cf80de5261c4: Pulling fs layer
fd1a0487aa63: Waiting
26f67db28f96: Pulling fs layer
bd0162c57841: Pulling fs layer
761d286b9f5b: Pulling fs layer
26f67db28f96: Waiting
bd0162c57841: Waiting
f5fa4dd6859a: Pulling fs layer
342eddfc52b6: Pulling fs layer
9258164ba4dd: Pulling fs layer
761d286b9f5b: Waiting
7fe1d9cb7a52: Pulling fs layer
f5fa4dd6859a: Waiting
342eddfc52b6: Waiting
9258164ba4dd: Waiting
efdfa63c5eeb: Pulling fs layer
7fe1d9cb7a52: Waiting
c3e218fac0fa: Pulling fs layer
efdfa63c5eeb: Waiting
30807e3466ba: Pulling fs layer
c3e218fac0fa: Waiting
dc1843a17021: Pulling fs layer
30807e3466ba: Waiting
04f7fde3402b: Pulling fs layer
f24f7e372a66: Pulling fs layer
04f7fde3402b: Waiting
dc1843a17021: Waiting
f24f7e372a66: Waiting
229a3df2b386: Pulling fs layer
74e41e9f4cb6: Pulling fs layer
068a75f56217: Pulling fs layer
a65c72446668: Pulling fs layer
a65c72446668: Waiting
74e41e9f4cb6: Waiting
229a3df2b386: Waiting
068a75f56217: Waiting
818e60f19055: Verifying Checksum
818e60f19055: Download complete
a9c0f9875679: Download complete
818e60f19055: Pull complete
a9c0f9875679: Pull complete
4d0bafe9c21a: Verifying Checksum
4d0bafe9c21a: Download complete
390882e3ca42: Download complete
4d0bafe9c21a: Pull complete
390882e3ca42: Pull complete
070b7978d10a: Download complete
f13f79cebbb2: Verifying Checksum
f13f79cebbb2: Download complete
f19a9073eb91: Verifying Checksum
f19a9073eb91: Download complete
9ea5002679f1: Verifying Checksum
9ea5002679f1: Download complete
8de100742279: Verifying Checksum
8de100742279: Download complete
7f1309deb748: Verifying Checksum
7f1309deb748: Download complete
3d2848b9e9b9: Verifying Checksum
3d2848b9e9b9: Download complete
1db328698e0d: Verifying Checksum
1db328698e0d: Download complete
5d796fa05d62: Verifying Checksum
5d796fa05d62: Download complete
9fa356e32c0c: Verifying Checksum
9fa356e32c0c: Download complete
1fdfcf40563a: Download complete
7dd154aa3301: Download complete
eee873cd0e21: Verifying Checksum
eee873cd0e21: Download complete
0bcb9ce43efd: Verifying Checksum
0bcb9ce43efd: Download complete
2a5bee4c58bf: Verifying Checksum
2a5bee4c58bf: Download complete
ee4d4af6aa39: Verifying Checksum
ee4d4af6aa39: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
92fcd944e0fc: Download complete
ee316b311fc8: Verifying Checksum
ee316b311fc8: Download complete
beccfc338b8c: Verifying Checksum
beccfc338b8c: Download complete
fd1a0487aa63: Download complete
cf80de5261c4: Download complete
26f67db28f96: Download complete
bd0162c57841: Download complete
761d286b9f5b: Download complete
f5fa4dd6859a: Verifying Checksum
f5fa4dd6859a: Download complete
342eddfc52b6: Verifying Checksum
342eddfc52b6: Download complete
9258164ba4dd: Verifying Checksum
9258164ba4dd: Download complete
7fe1d9cb7a52: Verifying Checksum
7fe1d9cb7a52: Download complete
c3e218fac0fa: Verifying Checksum
c3e218fac0fa: Download complete
dc1843a17021: Download complete
04f7fde3402b: Verifying Checksum
04f7fde3402b: Download complete
f24f7e372a66: Verifying Checksum
f24f7e372a66: Download complete
30807e3466ba: Verifying Checksum
30807e3466ba: Download complete
efdfa63c5eeb: Verifying Checksum
efdfa63c5eeb: Download complete
068a75f56217: Download complete
74e41e9f4cb6: Download complete
7f1309deb748: Pull complete
f13f79cebbb2: Pull complete
229a3df2b386: Verifying Checksum
229a3df2b386: Download complete
070b7978d10a: Pull complete
f19a9073eb91: Pull complete
9ea5002679f1: Pull complete
8de100742279: Pull complete
3d2848b9e9b9: Pull complete
1db328698e0d: Pull complete
5d796fa05d62: Pull complete
9fa356e32c0c: Pull complete
1fdfcf40563a: Pull complete
7dd154aa3301: Pull complete
eee873cd0e21: Pull complete
0bcb9ce43efd: Pull complete
2a5bee4c58bf: Pull complete
ee4d4af6aa39: Pull complete
4f4fb700ef54: Pull complete
92fcd944e0fc: Pull complete
ee316b311fc8: Pull complete
beccfc338b8c: Pull complete
fd1a0487aa63: Pull complete
cf80de5261c4: Pull complete
26f67db28f96: Pull complete
bd0162c57841: Pull complete
761d286b9f5b: Pull complete
f5fa4dd6859a: Pull complete
342eddfc52b6: Pull complete
9258164ba4dd: Pull complete
7fe1d9cb7a52: Pull complete
efdfa63c5eeb: Pull complete
c3e218fac0fa: Pull complete
30807e3466ba: Pull complete
dc1843a17021: Pull complete
04f7fde3402b: Pull complete
f24f7e372a66: Pull complete
229a3df2b386: Pull complete
74e41e9f4cb6: Pull complete
068a75f56217: Pull complete
a65c72446668: Pull complete
Digest: sha256:7f2143490bb3cfb2a155174ede2e8fc5cc06f50112fd4fa0b1043ef977e8f301
Status: Downloaded newer image for ocaml/opam@sha256:7f2143490bb3cfb2a155174ede2e8fc5cc06f50112fd4fa0b1043ef977e8f301
2026-03-17 12:19.40 ---> using "883943ce505e3734078ccaca03eeeea27b184022e292787fbeec7d6ed40aa05d" 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-17 12:19.40 ---> using "c22bd495e2365ad68d894f920e77c45999738dd2750d173443e66cbd2416adf9" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 12:19.40 ---> using "1966795e443a3d4fe2a2ef329acf8256ce670ac8a7e7140861d727f02aec219a" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-options-only-fp"]
# compiler-packages ocaml-option-fp.1, ocaml-options-only-fp.1, ocaml-variants.4.14.2+options
# 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+options+fp
2026-03-17 12:19.40 ---> using "4d5117b8d0bb328bed295b5149302b4cc2cc7dd8bd8767af8c38c45cce0e0794" 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-17 12:19.40 ---> using "b6824d1648decdd3339f31d33bc2087633a3a578ecac217d7ac7fe5a5da2bc6c" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 12:19.41 ---> using "57d91f5b5272eaf759c8f66ea837d48db835333399fe2782c3002a840a3b2345" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 12:19.58 ---> saved as "00781e5991d8aebd88b3890ac265074472d1a2910a69fc58bc64b9aa35183f80"
/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 [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 1s (10.6 MB/s)
- Reading package lists...
2026-03-17 12:20.00 ---> saved as "2d90c85356d45a45b089f5f780890630782066d69b467a9c32da63c31e2ff663"
/home/opam: (run (shell "opam pin add -k version -yn ocluster.0.2.1 0.2.1"))
ocluster is now pinned to version 0.2.1
2026-03-17 12:20.01 ---> saved as "72a604ca7d8c8aea0993ba2b4df803c7ae082016c3fdf1d34f946906695c32fc"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocluster.0.2.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\" != 'ocluster.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocluster.0.2.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 129 packages
- install angstrom 0.16.1 [required by uri]
- install asetmap 0.8.1 [required by capnp-rpc-lwt, capnp-rpc-net]
- install asn1-combinators 0.2.6 [required by capnp-rpc-net]
- install astring 0.8.5 [required by fpath, capnp-rpc-net, capnp-rpc-lwt, etc.]
- install base v0.16.4 [required by ppx_expect]
- install base-bytes base [required by extunix]
- install base64 3.5.2 [required by capnp-rpc-net, capnp-rpc-unix]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by ca-certs]
- install ca-certs 0.2.3 [required by conduit-lwt-unix]
- install camlp-streams 5.0.1 [required by tar]
- install capnp 3.6.0 [required by capnp-rpc-lwt, capnp-rpc-net]
- install capnp-rpc 1.2.3 [required by capnp-rpc-lwt, capnp-rpc-net]
- install capnp-rpc-lwt 1.2.3 [required by ocluster]
- install capnp-rpc-net 1.2.3 [required by ocluster]
- install capnp-rpc-unix 1.2.3 [required by ocluster]
- install checkseum 0.5.2 [required by decompress]
- install cmdliner 1.3.0 [required by ocluster]
- install cohttp 6.1.1 [required by cohttp-lwt-unix]
- install cohttp-lwt 6.1.1 [required by cohttp-lwt-unix, prometheus-app]
- install cohttp-lwt-unix 6.1.1 [required by ocluster-worker]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install conf-capnproto 2 [required by capnp-rpc-lwt, capnp-rpc-net]
- install conf-gmp 5 [required by zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-libev 4-13 [required by ocluster]
- install conf-pkg-config 4 [required by zarith, conf-sqlite3]
- install conf-sqlite3 1 [required by sqlite3]
- install cppo 1.8.0 [required by ocplib-endian, ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by capnp-rpc-net]
- install cstruct-lwt 6.2.0 [required by capnp-rpc-unix]
- install decompress 1.5.3 [required by tar]
- install digestif 1.3.0 [required by ocluster]
- install domain-name 0.5.0 [required by tls]
- install dune 3.21.1 [required by ocluster]
- install dune-build-info 3.21.1 [required by ocluster]
- install dune-compiledb 0.6.0 [required by sqlite3]
- install dune-configurator 3.21.1 [required by extunix, mirage-crypto, mirage-crypto-rng, sqlite3]
- install duration 0.2.1 [required by mirage-crypto-rng, mirage-crypto-rng-lwt]
- install eqaf 0.9 [required by digestif]
- install extunix 0.4.3 [required by capnp-rpc-unix, ocluster-worker]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install fmt 0.11.0 [required by ocluster]
- install fpath 0.7.3 [required by ocluster]
- install gmap 0.3.0 [required by x509]
- install hex 1.5.0 [required by ezjsonm]
- install hkdf 1.0.4 (deprecated) [required by tls]
- install http 6.1.1 [required by cohttp-lwt-unix]
- install ipaddr 5.6.2 [required by tls]
- install ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
- install jane-street-headers v0.16.0 [required by time_now]
- install jsonm 1.0.2 [required by ezjsonm]
- install jst-config v0.16.0 [required by time_now]
- install logs 0.10.0 [required by ocluster]
- install lwt 6.1.1 [required by ocluster]
- install lwt-dllist 1.1.0 [required by ocluster]
- install macaddr 5.6.2 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install mirage-clock 4.2.0 [required by tls-mirage]
- install mirage-crypto 0.11.3 [required by ocluster]
- install mirage-crypto-ec 0.11.3 [required by tls]
- install mirage-crypto-pk 0.11.3 [required by tls, tls-mirage]
- install mirage-crypto-rng 0.11.3 [required by capnp-rpc-net]
- install mirage-crypto-rng-lwt 0.11.3 [required by capnp-rpc-unix]
- install mirage-flow 3.0.0 [required by capnp-rpc-net, capnp-rpc-unix]
- install mirage-kv 6.1.1 [required by tls-mirage]
- install mtime 2.1.0 [required by mirage-crypto-rng-lwt]
- install num 1.6 [required by sexplib]
- install obuilder 0.5.1 [required by ocluster]
- install obuilder-spec 0.5.1 [required by obuilder]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by fpath]
- install ocamlfind 1.9.8 [required by fpath]
- install ocluster 0.2.1 (pinned)
- install ocluster-api 0.2.1 [required by ocluster]
- install ocluster-worker 0.2.1 [required by ocluster]
- install ocplib-endian 1.2 [required by capnp]
- install optint 0.3.0 [required by mirage-kv]
- install parsexp v0.16.0 [required by sexplib]
- install pbkdf 1.2.0 [required by x509]
- install ppx_assert v0.16.0 [required by jst-config]
- install ppx_base v0.16.0 [required by time_now]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_base]
- install ppx_derivers 1.2.1 [required by ppxlib, ppx_deriving]
- install ppx_deriving 6.0.3 [required by obuilder, ocluster-api]
- install ppx_deriving_yojson 3.9.1 [required by ocluster-api]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_expect v0.16.2 [required by ocluster]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_hash v0.16.0 [required by ppx_base]
- install ppx_here v0.16.0 [required by ppx_expect]
- install ppx_inline_test v0.16.1 [required by ppx_expect]
- install ppx_optcomp v0.16.0 [required by time_now]
- install ppx_sexp_conv v0.16.0 [required by ocluster]
- install ppxlib 0.35.0 [required by ppx_expect]
- install prometheus 1.3 [required by ocluster]
- install prometheus-app 1.3 [required by ocluster]
- install psq 0.2.1 [required by ocluster]
- install ptime 1.2.0 [required by capnp-rpc-net]
- install re 1.14.0 [required by ppx_expect]
- install res 5.0.2 [required by capnp]
- install result 1.5 [required by capnp]
- install rresult 0.7.0 [required by bos]
- install seq base [required by psq]
- install sexplib v0.16.0 [required by obuilder]
- install sexplib0 v0.16.0 [required by cohttp-lwt, dune-compiledb, ppx_sexp_conv, etc.]
- install sha 1.15.4 [required by obuilder]
- install sqlite3 5.4.0 [required by ocluster]
- install stdint 0.7.2 [required by capnp-rpc-lwt]
- install stdio v0.16.0 [required by ppx_expect]
- install stdlib-shims 0.3.0 [required by sha]
- install stringext 1.6.0 [required by uri]
- install tar 2.6.0 [required by tar-unix]
- install tar-unix 2.6.0 [required by obuilder]
- install time_now v0.16.0 [required by ppx_inline_test]
- install tls 0.17.3 [required by capnp-rpc-net]
- install tls-mirage 0.17.3 [required by capnp-rpc-net]
- install topkg 1.1.1 [required by fpath]
- install uri 4.4.0 [required by capnp-rpc-lwt, capnp-rpc-net]
- install uri-sexp 4.4.0 [required by cohttp]
- install uutf 1.0.4 [required by ezjsonm]
- install x509 0.16.5 [required by capnp-rpc-net]
- install yojson 3.0.0 [required by obuilder]
- install zarith 1.14 [required by asn1-combinators]
The following system packages will first need to be installed:
capnproto libcapnp-dev libev-dev libgmp-dev libsqlite3-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" "libev-dev" "libgmp-dev" "libsqlite3-dev" "pkg-config"
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../libsqlite3-0_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-0:amd64 (3.46.1-7+deb13u1) over (3.46.1-7) ...
- Setting up libsqlite3-0:amd64 (3.46.1-7+deb13u1) ...
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../openssl-provider-legacy_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking openssl-provider-legacy (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- Setting up openssl-provider-legacy (3.5.5-1~deb13u1) ...
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../libssl3t64_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- Setting up libssl3t64:amd64 (3.5.5-1~deb13u1) ...
- 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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../00-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 .../01-capnproto_1.1.0-2_amd64.deb ...
- Unpacking capnproto (1.1.0-2) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../02-libssl-dev_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.5-1~deb13u1) ...
- Selecting previously unselected package libcapnp-dev:amd64.
- Preparing to unpack .../03-libcapnp-dev_1.1.0-2_amd64.deb ...
- Unpacking libcapnp-dev:amd64 (1.1.0-2) ...
- Selecting previously unselected package libev4t64:amd64.
- Preparing to unpack .../04-libev4t64_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev4t64:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libev-dev:amd64.
- Preparing to unpack .../05-libev-dev_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev-dev:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../06-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 .../07-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 .../08-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../09-libsqlite3-dev_3.46.1-7+deb13u1_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Preparing to unpack .../10-openssl_3.5.5-1~deb13u1_amd64.deb ...
- Unpacking openssl (3.5.5-1~deb13u1) over (3.5.4-1~deb13u2) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../11-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../12-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../13-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libev4t64:amd64 (1:4.33-2.1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-7+deb13u1) ...
- Setting up libssl-dev:amd64 (3.5.5-1~deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libcapnp-1.1.0:amd64 (1.1.0-2) ...
- Setting up libev-dev:amd64 (1:4.33-2.1+b1) ...
- Setting up openssl (3.5.5-1~deb13u1) ...
- 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+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asetmap.0.8.1 (cached)
-> retrieved asn1-combinators.0.2.6 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.0.2.3 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved capnp.3.6.0 (cached)
-> retrieved capnp-rpc.1.2.3, capnp-rpc-lwt.1.2.3, capnp-rpc-net.1.2.3, capnp-rpc-unix.1.2.3 (cached)
-> retrieved checkseum.0.5.2 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1 (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved conf-libev.4-13 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-capnproto.2
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> installed conf-sqlite3.1
-> retrieved decompress.1.5.3 (cached)
-> installed conf-libev.4-13
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.21.1, dune-build-info.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved dune-compiledb.0.6.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved extunix.0.4.3 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gmap.0.3.0 (cached)
-> installed cmdliner.1.3.0
-> retrieved hex.1.5.0 (cached)
-> retrieved hkdf.1.0.4 (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (cached)
-> retrieved jane-street-headers.v0.16.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved jst-config.v0.16.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.1 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved mirage-clock.4.2.0 (cached)
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3, mirage-crypto-rng-lwt.0.11.3 (cached)
-> retrieved mirage-flow.3.0.0 (cached)
-> retrieved mirage-kv.6.1.1 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved obuilder.0.5.1, obuilder-spec.0.5.1 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocluster.0.2.1, ocluster-api.0.2.1, ocluster-worker.0.2.1 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved optint.0.3.0 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved pbkdf.1.2.0 (cached)
-> retrieved ppx_assert.v0.16.0 (cached)
-> retrieved ppx_base.v0.16.0 (cached)
-> retrieved ppx_cold.v0.16.0 (cached)
-> retrieved ppx_compare.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_deriving_yojson.3.9.1 (cached)
-> retrieved ppx_enumerate.v0.16.0 (cached)
-> retrieved ppx_expect.v0.16.2 (cached)
-> retrieved ppx_globalize.v0.16.0 (cached)
-> retrieved ppx_hash.v0.16.0 (cached)
-> retrieved ppx_here.v0.16.0 (cached)
-> retrieved ppx_inline_test.v0.16.1 (cached)
-> retrieved ppx_optcomp.v0.16.0 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved prometheus.1.3, prometheus-app.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 rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved sha.1.15.4 (cached)
-> retrieved sqlite3.5.4.0 (cached)
-> retrieved stdint.0.7.2 (cached)
-> retrieved stdio.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved tar.2.6.0, tar-unix.2.6.0 (cached)
-> retrieved time_now.v0.16.0 (cached)
-> retrieved tls.0.17.3, tls-mirage.0.17.3 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved x509.0.16.5 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed asetmap.0.8.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.21.1
-> installed base64.3.5.2
-> installed camlp-streams.5.0.1
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed http.6.1.1
-> installed jane-street-headers.v0.16.0
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed mirage-clock.4.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.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.16.0
-> installed stdint.0.7.2
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed asn1-combinators.0.2.6
-> installed eqaf.0.9
-> installed hex.1.5.0
-> installed ipaddr.5.6.2
-> installed ezjsonm.1.3.0
-> installed sha.1.15.4
-> installed dune-build-info.3.21.1
-> installed digestif.1.3.0
-> installed parsexp.v0.16.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.16.0
-> installed bigstringaf.0.10.0
-> installed checkseum.0.5.2
-> installed dune-compiledb.0.6.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.0.11.3
-> installed decompress.1.5.3
-> installed sqlite3.5.4.0
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed uri.4.4.0
-> installed tar.2.6.0
-> installed lwt.6.1.1
-> installed cstruct-lwt.6.2.0
-> installed mirage-flow.3.0.0
-> installed mirage-kv.6.1.1
-> installed prometheus.1.3
-> installed tar-unix.2.6.0
-> installed logs.0.10.0
-> installed mirage-crypto-rng.0.11.3
-> installed base.v0.16.4
-> installed mirage-crypto-rng-lwt.0.11.3
-> installed mirage-crypto-pk.0.11.3
-> installed capnp-rpc.1.2.3
-> installed stdio.v0.16.0
-> installed bos.0.2.1
-> installed mirage-crypto-ec.0.11.3
-> installed capnp.3.6.0
-> installed x509.0.16.5
-> installed ppxlib.0.35.0
-> installed ca-certs.0.2.3
-> installed ppx_globalize.v0.16.0
-> installed capnp-rpc-lwt.1.2.3
-> installed tls.0.17.3
-> installed ppx_optcomp.v0.16.0
-> installed tls-mirage.0.17.3
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed capnp-rpc-net.1.2.3
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed ppx_hash.v0.16.0
-> installed obuilder-spec.0.5.1
-> installed ppx_deriving_yojson.3.9.1
-> installed ppx_assert.v0.16.0
-> installed conduit.8.0.0
-> installed ppx_base.v0.16.0
-> installed cohttp.6.1.1
-> installed conduit-lwt.8.0.0
-> installed obuilder.0.5.1
-> installed extunix.0.4.3
-> installed jst-config.v0.16.0
-> installed capnp-rpc-unix.1.2.3
-> installed cohttp-lwt.6.1.1
-> installed ocluster-api.0.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed time_now.v0.16.0
-> installed cohttp-lwt-unix.6.1.1
-> installed prometheus-app.1.3
-> installed ocluster-worker.0.2.1
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.2
-> installed ocluster.0.2.1
Done.
<><> hkdf.1.0.4 installed successfully ><><><><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 12:21.11 ---> saved as "71cae73a18d225a41f284da0dffd5f35ed82d0c2f6932c4a20dbf263f990e9ae"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocluster.0.2.1) || true"))
The following actions will be performed:
=== downgrade 3 packages
- downgrade cohttp 6.1.1 to 5.3.1
- downgrade cohttp-lwt 6.1.1 to 5.3.0 [uses cohttp]
- downgrade cohttp-lwt-unix 6.1.1 to 5.3.0 [uses cohttp-lwt]
=== recompile 3 packages
- recompile ocluster 0.2.1 (pinned)
- recompile ocluster-worker 0.2.1 [uses cohttp-lwt-unix]
- recompile prometheus-app 1.3 [uses cohttp-lwt]
=== upgrade 1 package
- upgrade http 6.1.1 to 6.2.1
=== install 17 packages
- install alcotest 1.9.1 [required by ocluster]
- install alcotest-lwt 1.9.1 [required by ocluster]
- install cf 0.5.0 [required by cf-lwt]
- install cf-lwt 0.5.0 [required by irmin-watcher]
- install conf-git 1.1 [required by current_git]
- install conf-libffi 2.0.0 [required by ctypes-foreign]
- install ctypes 0.24.0 [required by cf, fsevents]
- install ctypes-foreign 0.24.0 [required by cf]
- install current 0.7.3 [required by current_ocluster]
- install current_git 0.7.3 [required by current_ocluster]
- install current_incr 0.6.1 [required by current]
- install current_ocluster 0.2.1 [required by ocluster]
- install fsevents 0.3.0 [required by fsevents-lwt]
- install fsevents-lwt 0.3.0 [required by irmin-watcher]
- install inotify 2.6 [required by irmin-watcher]
- install integers 0.7.0 [required by ctypes]
- install irmin-watcher 0.5.0 [required by current_git]
The following system packages will first need to be installed:
libffi-dev
<><> 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" "libffi-dev"
- Selecting previously unselected package libffi-dev: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 ... 21037 files and directories currently installed.)
- Preparing to unpack .../libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved cf.0.5.0, cf-lwt.0.5.0 (https://opam.ocaml.org/cache)
-> retrieved cohttp.5.3.1 (https://opam.ocaml.org/cache)
-> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0 (https://opam.ocaml.org/cache)
-> installed conf-git.1.1
-> installed conf-libffi.2.0.0
-> retrieved ctypes.0.24.0, ctypes-foreign.0.24.0 (https://opam.ocaml.org/cache)
-> installed alcotest.1.9.1
-> retrieved current.0.7.3, current_git.0.7.3 (https://opam.ocaml.org/cache)
-> retrieved current_incr.0.6.1 (https://opam.ocaml.org/cache)
-> installed alcotest-lwt.1.9.1
-> retrieved current_ocluster.0.2.1, ocluster.0.2.1, ocluster-worker.0.2.1 (https://opam.ocaml.org/cache)
-> retrieved fsevents.0.3.0, fsevents-lwt.0.3.0 (https://opam.ocaml.org/cache)
-> installed current_incr.0.6.1
-> retrieved http.6.2.1 (https://opam.ocaml.org/cache)
-> retrieved inotify.2.6 (https://opam.ocaml.org/cache)
-> retrieved integers.0.7.0 (https://opam.ocaml.org/cache)
-> retrieved irmin-watcher.0.5.0 (https://opam.ocaml.org/cache)
-> retrieved prometheus-app.1.3 (https://opam.ocaml.org/cache)
-> installed inotify.2.6
-> removed ocluster.0.2.1
-> removed ocluster-worker.0.2.1
-> removed prometheus-app.1.3
-> removed cohttp-lwt-unix.6.1.1
-> removed cohttp-lwt.6.1.1
-> removed cohttp.6.1.1
-> removed http.6.1.1
-> installed cohttp.5.3.1
-> installed http.6.2.1
-> installed integers.0.7.0
-> installed current.0.7.3
-> installed cohttp-lwt.5.3.0
-> installed cohttp-lwt-unix.5.3.0
-> installed prometheus-app.1.3
-> installed ocluster-worker.0.2.1
-> installed ctypes.0.24.0
-> installed ctypes-foreign.0.24.0
-> installed cf.0.5.0
-> installed fsevents.0.3.0
-> installed cf-lwt.0.5.0
-> installed fsevents-lwt.0.3.0
-> installed irmin-watcher.0.5.0
-> installed current_git.0.7.3
-> installed current_ocluster.0.2.1
-> installed ocluster.0.2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 12:21.34 ---> saved as "0c5b02003eaaf61a2a14426040c159fe42fe4c492da9af860cf7040f88aee6c6"
/home/opam: (run (shell "opam reinstall --with-test --verbose ocluster.0.2.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\" != 'ocluster.0.2.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 ocluster 0.2.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ocluster: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocluster" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ocluster.0.2.1)
- (cd _build/default/test && ./test.exe)
- Testing `ocluster-scheduler'.
- This run has ID `Z9MSN2CT'.
-
- [OK] main 0 simple.
- [OK] main 1 simple_custom.
- [OK] main 2 fails.
- [OK] main 3 await_builder.
- [OK] main 4 already_registered.
- [OK] main 5 builder_capacity.
- [OK] main 6 network.
- [OK] main 7 worker_disconnects.
- [OK] main 8 client_disconnects.
- [OK] main 9 cancel.
- [OK] main 10 cancel_ticket.
- [OK] main 11 cancel_ticket_late.
- [OK] main 12 release_ticket.
- [OK] main 13 release_ticket_late.
- [OK] main 14 drain.
- [OK] main 15 drain_crash.
- [OK] main 16 admin.
- [OK] main 17 clients.
- [OK] plugin 0 simple.
- [OK] plugin 1 simple_custom.
- [OK] plugin 2 disconnect_while_queued.
- [OK] plugin 3 two_jobs.
- [OK] plugin 4 cancel_rate_limit.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/ocluster.0.2.1/_build/default/test/_build/_tests/ocluster-scheduler'.
- Test Successful in 0.093s. 23 tests run.
-> compiled ocluster.0.2.1
-> removed ocluster.0.2.1
-> installed ocluster.0.2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 12:21.41 ---> saved as "3b3241233d88777a03a2859c0207f926bce8226ebce2919e4940a93e202deeb0"
Job succeeded
2026-03-17 12:21.46: Job succeeded