Build:
- 0
2026-02-27 04:04.32: New job: test tcpip.9.0.1 with ocaml-secondary-compiler.4.08.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
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/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
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 ocaml-secondary-compiler.4.08.1 4.08.1
RUN opam reinstall ocaml-secondary-compiler.4.08.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" != 'ocaml-secondary-compiler.4.08.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall tcpip.9.0.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" != 'tcpip.9.0.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 tcpip.9.0.1) || true
RUN opam reinstall --with-test --verbose tcpip.9.0.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" != 'tcpip.9.0.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-02-27 04:04.32: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-secondary-compiler.4.08.1-tcpip.9.0.1-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:04.32: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(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 ocaml-secondary-compiler.4.08.1 4.08.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-secondary-compiler.4.08.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\" != 'ocaml-secondary-compiler.4.08.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tcpip.9.0.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\" != 'tcpip.9.0.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 tcpip.9.0.1) || true"))
(run (shell "opam reinstall --with-test --verbose tcpip.9.0.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\" != 'tcpip.9.0.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-02-27 04:04.32: Waiting for resource in pool OCluster
2026-03-02 07:06.33: Waiting for worker…
2026-03-02 07:10.28: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files: 54% (10052/18334)
Updating files: 55% (10084/18334)
Updating files: 56% (10268/18334)
Updating files: 57% (10451/18334)
Updating files: 58% (10634/18334)
Updating files: 59% (10818/18334)
Updating files: 60% (11001/18334)
Updating files: 61% (11184/18334)
Updating files: 62% (11368/18334)
Updating files: 63% (11551/18334)
Updating files: 64% (11734/18334)
Updating files: 65% (11918/18334)
Updating files: 66% (12101/18334)
Updating files: 67% (12284/18334)
Updating files: 68% (12468/18334)
Updating files: 69% (12651/18334)
Updating files: 70% (12834/18334)
Updating files: 71% (13018/18334)
Updating files: 72% (13201/18334)
Updating files: 73% (13384/18334)
Updating files: 74% (13568/18334)
Updating files: 75% (13751/18334)
Updating files: 76% (13934/18334)
Updating files: 77% (14118/18334)
Updating files: 78% (14301/18334)
Updating files: 79% (14484/18334)
Updating files: 80% (14668/18334)
Updating files: 81% (14851/18334)
Updating files: 82% (15034/18334)
Updating files: 83% (15218/18334)
Updating files: 84% (15401/18334)
Updating files: 85% (15584/18334)
Updating files: 86% (15768/18334)
Updating files: 87% (15951/18334)
Updating files: 88% (16134/18334)
Updating files: 89% (16318/18334)
Updating files: 90% (16501/18334)
Updating files: 91% (16684/18334)
Updating files: 92% (16868/18334)
Updating files: 93% (17051/18334)
Updating files: 94% (17234/18334)
Updating files: 95% (17418/18334)
Updating files: 96% (17601/18334)
Updating files: 97% (17784/18334)
Updating files: 98% (17968/18334)
Updating files: 99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 07:11.27 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" 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-02 07:11.27 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" 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-02 07:11.27 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" 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-03-02 07:11.27 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" 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-02 07:11.27 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 07:11.29 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 07:11.29 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (962 kB/s)
- Reading package lists...
-
2026-03-02 07:11.29 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-secondary-compiler.4.08.1 4.08.1"))
ocaml-secondary-compiler is now pinned to version 4.08.1
2026-03-02 07:11.29 ---> using "26b9929e6d78f54d8f80fd7749e76b57b2a5087e9bbfce4cc04584f7009adae7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-secondary-compiler.4.08.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\" != 'ocaml-secondary-compiler.4.08.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-secondary-compiler.4.08.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install ocaml-secondary-compiler 4.08.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-secondary-compiler.4.08.1 (cached)
-> installed ocaml-secondary-compiler.4.08.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 07:11.29 ---> using "6e65f0f970e618e23463227013afdf4ddd2988a331944d724eff919672c1ffef" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tcpip.9.0.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\" != 'tcpip.9.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
tcpip.9.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 39 packages
- install arp 4.1.0 [required by tcpip]
- install base-bytes base [required by ocplib-endian]
- install cmdliner 2.1.0 [required by tcpip]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by tcpip]
- install cstruct-lwt 6.2.0 [required by tcpip]
- install digestif 1.3.0 [required by mirage-crypto-rng]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.21.1 [required by tcpip]
- install dune-configurator 3.21.1 [required by mirage-crypto-rng]
- install duration 0.2.1 [required by tcpip]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install ethernet 3.2.0 [required by tcpip]
- install fmt 0.11.0 [required by tcpip]
- install ipaddr 5.6.2 [required by tcpip]
- install ipaddr-cstruct 5.6.2 [required by tcpip]
- install logs 0.10.0 [required by tcpip]
- install lru 0.3.1 [required by tcpip]
- install lwt 6.1.1 [required by tcpip]
- install lwt-dllist 1.1.0 [required by tcpip]
- install macaddr 5.6.2 [required by tcpip]
- install macaddr-cstruct 5.6.2 [required by tcpip]
- install metrics 0.5.0 [required by tcpip]
- install mirage-crypto 2.0.3 [required by mirage-crypto-rng]
- install mirage-crypto-rng 2.0.3 [required by tcpip]
- install mirage-flow 5.0.0 [required by tcpip]
- install mirage-mtime 5.2.0 [required by tcpip]
- install mirage-net 4.0.0 [required by tcpip]
- install mirage-sleep 4.1.0 [required by tcpip]
- install mtime 2.1.0 [required by mirage-mtime]
- install ocamlbuild 0.16.1 [required by mtime]
- install ocamlfind 1.9.8 [required by mtime]
- install ocplib-endian 1.2 [required by lwt]
- install psq 0.2.1 [required by lru]
- install randomconv 0.2.0 [required by tcpip]
- install seq base [required by psq]
- install tcpip 9.0.1
- install topkg 1.1.1 [required by mtime]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved arp.4.1.0 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0 (cached)
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved ethernet.3.2.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved ipaddr.5.6.2, ipaddr-cstruct.5.6.2, macaddr.5.6.2, macaddr-cstruct.5.6.2 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lru.0.3.1 (cached)
-> retrieved lwt.6.1.1 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved metrics.0.5.0 (cached)
-> installed cmdliner.2.1.0
-> retrieved mirage-crypto.2.0.3, mirage-crypto-rng.2.0.3 (cached)
-> retrieved mirage-flow.5.0.0 (cached)
-> retrieved mirage-mtime.5.2.0 (cached)
-> retrieved mirage-net.4.0.0 (cached)
-> retrieved mirage-sleep.4.1.0 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved randomconv.0.2.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved tcpip.9.0.1 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed dune.3.21.1
-> installed duration.0.2.1
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed eqaf.0.10
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed metrics.0.5.0
-> installed mirage-mtime.5.2.0
-> installed psq.0.2.1
-> installed randomconv.0.2.0
-> installed cppo.1.8.0
-> installed macaddr-cstruct.5.6.2
-> installed lru.0.3.1
-> installed ipaddr.5.6.2
-> installed ocplib-endian.1.2
-> installed digestif.1.3.0
-> installed ipaddr-cstruct.5.6.2
-> installed dune-configurator.3.21.1
-> installed mirage-crypto.2.0.3
-> installed lwt.6.1.1
-> installed mirage-flow.5.0.0
-> installed mirage-net.4.0.0
-> installed cstruct-lwt.6.2.0
-> installed mirage-sleep.4.1.0
-> installed logs.0.10.0
-> installed ethernet.3.2.0
-> installed mirage-crypto-rng.2.0.3
-> installed arp.4.1.0
-> installed tcpip.9.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 07:13.30 ---> saved as "408553e07bd2fbffd75e1cbcc24d70e9214fd03e268f6ad77a50397ff0eddcf0"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test tcpip.9.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile tcpip 9.0.1
=== install 16 packages
- install alcotest 1.9.1 [required by tcpip]
- install astring 0.8.5 [required by alcotest]
- install mirage-vnetif 0.6.2 [required by tcpip]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install parsexp v0.17.0 [required by sexplib]
- install pcap-format 0.6.0 [required by tcpip]
- install ppx_cstruct 6.2.0 [required by pcap-format]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by ppx_cstruct]
- install re 1.14.0 [required by alcotest]
- install sexplib v0.17.0 [required by ppx_cstruct]
- install sexplib0 v0.17.0 [required by ppxlib, sexplib]
- 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 mirage-vnetif.0.6.2 (https://opam.ocaml.org/cache)
-> retrieved num.1.6 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved parsexp.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved pcap-format.0.6.0 (https://opam.ocaml.org/cache)
-> installed mirage-vnetif.0.6.2
-> retrieved ppx_cstruct.6.2.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved tcpip.9.0.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed astring.0.8.5
-> installed num.1.6
-> installed re.1.14.0
-> removed tcpip.9.0.1
-> installed uutf.1.0.4
-> installed parsexp.v0.17.0
-> installed alcotest.1.9.1
-> installed sexplib.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppx_cstruct.6.2.0
-> installed pcap-format.0.6.0
-> installed tcpip.9.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 07:15.27 ---> saved as "2da0bb3089cc77d14fb9853bcbb39835877da3e7430d79dfd94a4c45e738ac92"
/home/opam: (run (shell "opam reinstall --with-test --verbose tcpip.9.0.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\" != 'tcpip.9.0.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 tcpip 9.0.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [tcpip.9.0.1: extract]
-> retrieved tcpip.9.0.1 (cached)
Processing 2/4: [tcpip: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tcpip" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/tcpip.9.0.1)
Processing 2/4: [tcpip: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "tcpip" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/tcpip.9.0.1)
- (cd _build/default/test/mock-clock && ./test_tcp_window.exe -q -e --color=always)
- Testing `tcpip'.
- This run has ID `FRYWSGVY'.
-
- [OK] tcp_window 0 fresh window is sensible.
- [OK] tcp_window 1 fast recovery recovers fast.
- [OK] tcp_window 2 smoothed rtt, rtt variation and retra...
-
- Full test results in `~/.opam/5.4/.opam-switch/build/tcpip.9.0.1/_build/default/test/mock-clock/_build/_tests/tcpip'.
- Test Successful in 0.001s. 3 tests run.
- (cd _build/default/test && ./test.exe -q -e --color=always)
- Testing `tcpip'.
- This run has ID `E69GPJM3'.
-
- [OK] checksums 0 correct UDP IPV4 checksums ar...
- [OK] checksums 1 incorrect UDP IPV4 checksums ...
- [OK] checksums 2 0x00 UDP checksum is valid.
- [OK] checksums 3 correct but zero UDP IPV4 che...
- [OK] checksums 4 correct TCP IPV4 checksums ar...
- [OK] checksums 5 incorrect TCP IPV4 checksums ...
- [OK] ipv4 0 unmarshal ip datagram with op...
- [OK] ipv4 1 unmarshal ip datagram without...
- [OK] ipv4 2 unmarshal ip datagram with no...
- [OK] ipv4 3 size.
- [OK] ipv4 4 basic fragment 0: payload 0.
- [OK] ipv4 5 basic fragment 1: payload 1.
- [OK] ipv4 6 basic fragment 2: payload 2.
- [OK] ipv4 7 basic fragment 3: payload 10.
- [OK] ipv4 8 basic fragment 4: payload 100.
- [OK] ipv4 9 basic fragment 5: payload 1000.
- [OK] ipv4 10 basic fragment 6: payload 5000.
- [OK] ipv4 11 basic fragment 7: payload 10000.
- [OK] ipv4 12 basic reassembly.
- [OK] ipv4 13 basic reassembly timeout.
- [OK] ipv4 14 reassembly out of order.
- [OK] ipv4 15 other ip flow.
- [OK] ipv4 16 maximum amount of fragments.
- [OK] ipv4 17 reassembly multiple 0.
- [OK] ipv4 18 reassembly multiple 1.
- [OK] ipv4 19 reassembly multiple 2.
- [OK] ipv4 20 reassembly multiple 3.
- [OK] ipv4 21 reassembly multiple 4.
- [OK] ipv4 22 reassembly multiple 5.
- [OK] ipv4 23 reassembly multiple 6.
- [OK] ipv4 24 reassembly multiple 7.
- [OK] ipv4 25 reassembly multiple 8.
- [OK] ipv4 26 reassembly multiple 9.
- [OK] ipv4 27 reassembly multiple 10.
- [OK] ipv4 28 reassembly multiple 11.
- [OK] ipv4 29 reassembly multiple 12.
- [OK] ipv4 30 reassembly multiple 13.
- [OK] ipv4 31 reassembly multiple 14.
- [OK] ipv4 32 reassembly multiple 15.
- [OK] ipv4 33 reassembly multiple 16.
- [OK] ipv4 34 reassembly multiple 17.
- [OK] ipv4 35 reassembly multiple 18.
- [OK] ipv4 36 reassembly multiple 19.
- [OK] ipv4 37 reassembly multiple 20.
- [OK] ipv4 38 reassembly multiple 21.
- [OK] ipv4 39 reassembly multiple 22.
- [OK] ipv4 40 reassembly multiple 23.
- [OK] ipv4 41 reassembly multiple 24.
- [OK] ipv4 42 reassembly multiple 25.
- [OK] ipv4 43 reassembly multiple 26.
- [OK] ipv4 44 reassembly multiple 27.
- [OK] ipv4 45 reassembly multiple 28.
- [OK] ipv4 46 reassembly multiple 29.
- [OK] ipv4 47 reassembly multiple 30.
- [OK] ipv4 48 reassembly multiple 31.
- [OK] ipv4 49 reassembly multiple 32.
- [OK] ipv4 50 reassembly multiple 33.
- [OK] ipv4 51 reassembly multiple 34.
- [OK] ipv4 52 reassembly multiple 35.
- [OK] ipv4 53 reassembly multiple 36.
- [OK] ipv4 54 reassembly multiple 37.
- [OK] ipv4 55 reassembly multiple 38.
- [OK] ipv4 56 reassembly multiple 39.
- [OK] ipv4 57 reassembly multiple 40.
- [OK] ipv4 58 reassembly multiple 41.
- [OK] ipv4 59 reassembly multiple 42.
- [OK] ipv4 60 reassembly multiple 43.
- [OK] ipv4 61 reassembly multiple 44.
- [OK] ipv4 62 reassembly multiple 45.
- [OK] ipv4 63 reassembly multiple 46.
- [OK] ipv4 64 reassembly multiple 47.
- [OK] ipv4 65 reassembly multiple 48.
- [OK] ipv4 66 reassembly multiple 49.
- [OK] ipv4 67 reassembly multiple 50.
- [OK] ipv4 68 reassembly multiple 51.
- [OK] ipv4 69 reassembly multiple 52.
- [OK] ipv4 70 reassembly multiple 53.
- [OK] ipv4 71 reassembly multiple 54.
- [OK] ipv4 72 reassembly multiple 55.
- [OK] ipv4 73 reassembly multiple 56.
- [OK] ipv4 74 reassembly multiple 57.
- [OK] ipv4 75 reassembly multiple 58.
- [OK] ipv4 76 reassembly multiple 59.
- [OK] ipv4 77 reassembly multiple 60.
- [OK] ipv4 78 reassembly multiple 61.
- [OK] ipv4 79 reassembly multiple 62.
- [OK] ipv4 80 reassembly multiple 63.
- [OK] ipv4 81 reassembly multiple 64.
- [OK] ipv4 82 reassembly multiple 65.
- [OK] ipv4 83 reassembly multiple 66.
- [OK] ipv4 84 reassembly multiple 67.
- [OK] ipv4 85 reassembly multiple 68.
- [OK] ipv4 86 reassembly multiple 69.
- [OK] ipv4 87 reassembly multiple 70.
- [OK] ipv4 88 reassembly multiple 71.
- [OK] ipv4 89 reassembly multiple 72.
- [OK] ipv4 90 reassembly multiple 73.
- [OK] ipv4 91 reassembly multiple 74.
- [OK] ipv4 92 reassembly multiple 75.
- [OK] ipv4 93 reassembly multiple 76.
- [OK] ipv4 94 reassembly multiple 77.
- [OK] ipv4 95 reassembly multiple 78.
- [OK] ipv4 96 reassembly multiple 79.
- [OK] ipv4 97 reassembly multiple 80.
- [OK] ipv4 98 reassembly multiple 81.
- [OK] ipv4 99 reassembly multiple 82.
- [OK] ipv4 100 reassembly multiple 83.
- [OK] ipv4 101 reassembly multiple 84.
- [OK] ipv4 102 reassembly multiple 85.
- [OK] ipv4 103 reassembly multiple 86.
- [OK] ipv4 104 reassembly multiple 87.
- [OK] ipv4 105 reassembly multiple 88.
- [OK] ipv4 106 reassembly multiple 89.
- [OK] ipv4 107 reassembly multiple 90.
- [OK] ipv4 108 reassembly multiple 91.
- [OK] ipv4 109 reassembly multiple 92.
- [OK] ipv4 110 reassembly multiple 93.
- [OK] ipv4 111 reassembly multiple 94.
- [OK] ipv4 112 reassembly multiple 95.
- [OK] ipv4 113 reassembly multiple 96.
- [OK] ipv4 114 reassembly multiple 97.
- [OK] ipv4 115 reassembly multiple 98.
- [OK] ipv4 116 reassembly multiple 99.
- [OK] ipv4 117 reassembly multiple 100.
- [OK] ipv4 118 reassembly multiple 101.
- [OK] ipv4 119 reassembly multiple 102.
- [OK] ipv4 120 reassembly multiple 103.
- [OK] ipv4 121 reassembly multiple 104.
- [OK] ipv4 122 reassembly multiple 105.
- [OK] ipv4 123 reassembly multiple 106.
- [OK] ipv4 124 reassembly multiple 107.
- [OK] ipv4 125 reassembly multiple 108.
- [OK] ipv4 126 reassembly multiple 109.
- [OK] ipv4 127 reassembly multiple 110.
- [OK] ipv4 128 reassembly multiple 111.
- [OK] ipv4 129 reassembly multiple 112.
- [OK] ipv4 130 reassembly multiple 113.
- [OK] ipv4 131 reassembly multiple 114.
- [OK] ipv4 132 reassembly multiple 115.
- [OK] ipv4 133 reassembly multiple 116.
- [OK] ipv4 134 reassembly multiple 117.
- [OK] ipv4 135 reassembly multiple 118.
- [OK] ipv4 136 reassembly multiple 119.
- [OK] ipv4 137 reassembly multiple 120.
- [OK] ipv4 138 reassembly multiple 121.
- [OK] ipv4 139 reassembly multiple 122.
- [OK] ipv4 140 reassembly multiple 123.
- [OK] ipv4 141 reassembly multiple 124.
- [OK] ipv4 142 reassembly multiple 125.
- [OK] ipv4 143 reassembly multiple 126.
- [OK] ipv4 144 reassembly multiple 127.
- [OK] ipv4 145 reassembly multiple 128.
- [OK] ipv4 146 reassembly multiple 129.
- [OK] ipv4 147 reassembly multiple 130.
- [OK] ipv4 148 reassembly multiple 131.
- [OK] ipv4 149 reassembly multiple 132.
- [OK] ipv4 150 reassembly multiple 133.
- [OK] ipv4 151 reassembly multiple 134.
- [OK] ipv4 152 reassembly multiple 135.
- [OK] ipv4 153 reassembly multiple 136.
- [OK] ipv4 154 reassembly multiple 137.
- [OK] ipv4 155 reassembly multiple 138.
- [OK] ipv4 156 reassembly multiple 139.
- [OK] ipv4 157 reassembly multiple 140.
- [OK] ipv4 158 reassembly multiple 141.
- [OK] ipv4 159 reassembly multiple 142.
- [OK] ipv4 160 reassembly multiple 143.
- [OK] ipv4 161 reassembly multiple 144.
- [OK] ipv4 162 reassembly multiple 145.
- [OK] ipv4 163 reassembly multiple 146.
- [OK] ipv4 164 reassembly multiple 147.
- [OK] ipv4 165 reassembly multiple 148.
- [OK] ipv4 166 reassembly multiple 149.
- [OK] ipv4 167 reassembly multiple 150.
- [OK] ipv4 168 reassembly multiple 151.
- [OK] ipv4 169 reassembly multiple 152.
- [OK] ipv4 170 reassembly multiple 153.
- [OK] ipv4 171 reassembly multiple 154.
- [OK] ipv4 172 reassembly multiple 155.
- [OK] ipv4 173 reassembly multiple 156.
- [OK] ipv4 174 nothing returned.
- [OK] ipv4 175 nothing returned 0.
- [OK] ipv4 176 nothing returned 1.
- [OK] ipv4 177 nothing returned 2.
- [OK] ipv4 178 nothing returned 3.
- [OK] ipv4 179 nothing returned 4.
- [OK] ipv4 180 nothing returned 5.
- [OK] ipv4 181 nothing returned 6.
- [OK] ipv4 182 nothing returned 7.
- [OK] ipv4 183 nothing returned 8.
- [OK] ipv4 184 nothing returned 9.
- [OK] ipv4 185 nothing returned 10.
- [OK] ipv4 186 nothing returned 11.
- [OK] ipv4 187 nothing returned 12.
- [OK] ipv4 188 nothing returned 13.
- [OK] ipv4 189 nothing returned 14.
- [OK] ipv4 190 nothing returned 15.
- [OK] ipv4 191 nothing returned 16.
- [OK] ipv4 192 nothing returned 17.
- [OK] ipv4 193 nothing returned 18.
- [OK] ipv4 194 nothing returned 19.
- [OK] ipv4 195 nothing returned 20.
- [OK] ipv4 196 nothing returned 21.
- [OK] ipv4 197 nothing returned 22.
- [OK] ipv4 198 nothing returned 23.
- [OK] ipv4 199 nothing returned 24.
- [OK] ipv4 200 nothing returned 25.
- [OK] ipv4 201 nothing returned 26.
- [OK] ipv4 202 nothing returned 27.
- [OK] ipv4 203 nothing returned 28.
- [OK] ipv4 204 nothing returned 29.
- [OK] ipv4 205 nothing returned 30.
- [OK] ipv4 206 nothing returned 31.
- [OK] ipv4 207 nothing returned 32.
- [OK] ipv4 208 nothing returned 33.
- [OK] ipv4 209 nothing returned 34.
- [OK] ipv4 210 nothing returned 35.
- [OK] ipv4 211 nothing returned 36.
- [OK] ipv4 212 nothing returned 37.
- [OK] ipv4 213 nothing returned 38.
- [OK] ipv4 214 nothing returned 39.
- [OK] ipv4 215 nothing returned 40.
- [OK] ipv4 216 nothing returned 41.
- [OK] ipv4 217 nothing returned 42.
- [OK] ipv4 218 nothing returned 43.
- [OK] ipv4 219 nothing returned 44.
- [OK] ipv4 220 nothing returned 45.
- [OK] ipv4 221 nothing returned 46.
- [OK] ipv4 222 nothing returned 47.
- [OK] ipv4 223 nothing returned 48.
- [OK] ipv4 224 nothing returned 49.
- [OK] ipv4 225 nothing returned 50.
- [OK] ipv4 226 nothing returned 51.
- [OK] ipv4 227 nothing returned 52.
- [OK] ipv4 228 nothing returned 53.
- [OK] ipv4 229 nothing returned 54.
- [OK] ipv4 230 nothing returned 55.
- [OK] ipv4 231 nothing returned 56.
- [OK] ipv4 232 nothing returned 57.
- [OK] ipv4 233 nothing returned 58.
- [OK] ipv4 234 nothing returned 59.
- [OK] ipv4 235 nothing returned 60.
- [OK] ipv4 236 nothing returned 61.
- [OK] ipv4 237 nothing returned 62.
- [OK] ipv4 238 nothing returned 63.
- [OK] ipv4 239 nothing returned 64.
- [OK] ipv4 240 nothing returned 65.
- [OK] ipv4 241 nothing returned 66.
- [OK] ipv4 242 nothing returned 67.
- [OK] ipv4 243 nothing returned 68.
- [OK] ipv4 244 nothing returned 69.
- [OK] ipv4 245 nothing returned 70.
- [OK] ipv4 246 nothing returned 71.
- [OK] ipv4 247 nothing returned 72.
- [OK] ipv4 248 nothing returned 73.
- [OK] ipv4 249 nothing returned 74.
- [OK] ipv4 250 nothing returned 75.
- [OK] ipv4 251 nothing returned 76.
- [OK] ipv4 252 nothing returned 77.
- [OK] ipv4 253 nothing returned 78.
- [OK] ipv4 254 nothing returned 79.
- [OK] ipv4 255 nothing returned 80.
- [OK] ipv4 256 nothing returned 81.
- [OK] ipv4 257 nothing returned 82.
- [OK] ipv4 258 nothing returned 83.
- [OK] ipv4 259 nothing returned 84.
- [OK] ipv4 260 nothing returned 85.
- [OK] ipv4 261 nothing returned 86.
- [OK] ipv4 262 nothing returned 87.
- [OK] ipv4 263 nothing returned 88.
- [OK] ipv4 264 nothing returned 89.
- [OK] ipv4 265 nothing returned 90.
- [OK] ipv4 266 nothing returned 91.
- [OK] ipv4 267 nothing returned 92.
- [OK] ipv4 268 nothing returned 93.
- [OK] ipv4 269 nothing returned 94.
- [OK] ipv4 270 nothing returned 95.
- [OK] ipv4 271 nothing returned 96.
- [OK] ipv4 272 nothing returned 97.
- [OK] ipv4 273 nothing returned 98.
- [OK] ipv4 274 nothing returned 99.
- [OK] ipv4 275 nothing returned 100.
- [OK] ipv4 276 nothing returned 101.
- [OK] ipv4 277 nothing returned 102.
- [OK] ipv4 278 nothing returned 103.
- [OK] ipv4 279 nothing returned 104.
- [OK] ipv4 280 nothing returned 105.
- [OK] ipv4 281 nothing returned 106.
- [OK] ipv4 282 nothing returned 107.
- [OK] ipv4 283 nothing returned 108.
- [OK] ipv4 284 nothing returned 109.
- [OK] ipv4 285 nothing returned 110.
- [OK] ipv4 286 nothing returned 111.
- [OK] ipv4 287 nothing returned 112.
- [OK] ipv4 288 nothing returned 113.
- [OK] ipv4 289 nothing returned 114.
- [OK] ipv4 290 nothing returned 115.
- [OK] ipv4 291 nothing returned 116.
- [OK] ipv4 292 nothing returned 117.
- [OK] ipv4 293 nothing returned 118.
- [OK] ipv4 294 nothing returned 119.
- [OK] ipv4 295 nothing returned 120.
- [OK] ipv4 296 nothing returned 121.
- [OK] ipv4 297 nothing returned 122.
- [OK] ipv4 298 nothing returned 123.
- [OK] ipv4 299 nothing returned 124.
- [OK] ipv4 300 nothing returned 125.
- [OK] ipv4 301 nothing returned 126.
- [OK] ipv4 302 nothing returned 127.
- [OK] ipv4 303 nothing returned 128.
- [OK] ipv4 304 nothing returned 129.
- [OK] ipv4 305 nothing returned 130.
- [OK] ipv4 306 nothing returned 131.
- [OK] ipv4 307 nothing returned 132.
- [OK] ipv4 308 nothing returned 133.
- [OK] ipv4 309 nothing returned 134.
- [OK] ipv4 310 nothing returned 135.
- [OK] ipv4 311 nothing returned 136.
- [OK] ipv4 312 nothing returned 137.
- [OK] ipv4 313 nothing returned 138.
- [OK] ipv4 314 nothing returned 139.
- [OK] ipv4 315 nothing returned 140.
- [OK] ipv4 316 nothing returned 141.
- [OK] ipv4 317 nothing returned 142.
- [OK] ipv4 318 nothing returned 143.
- [OK] ipv4 319 nothing returned 144.
- [OK] ipv4 320 nothing returned 145.
- [OK] ipv4 321 nothing returned 146.
- [OK] ipv4 322 nothing returned 147.
- [OK] ipv4 323 nothing returned 148.
- [OK] ipv4 324 nothing returned 149.
- [OK] ipv4 325 nothing returned 150.
- [OK] ipv4 326 nothing returned 151.
- [OK] ipv4 327 nothing returned 152.
- [OK] ipv4 328 nothing returned 153.
- [OK] ipv4 329 nothing returned 154.
- [OK] ipv4 330 nothing returned 155.
- [OK] ipv4 331 nothing returned 156.
- [OK] ipv4 332 nothing returned 157.
- [OK] ipv4 333 nothing returned 158.
- [OK] ipv4 334 nothing returned 159.
- [OK] ipv4 335 nothing returned 160.
- [OK] ipv4 336 nothing returned 161.
- [OK] ipv4 337 nothing returned 162.
- [OK] ipv4 338 nothing returned 163.
- [OK] ipv4 339 simple fragment.
- [OK] ipv6 0 Send a UDP packet from one IP...
- [OK] ipv6 1 NA is sent when a ND is recei...
- [OK] ipv6 2 NA is received, stack fails t...
- [OK] icmpv4 0 short read.
- [OK] icmpv4 1 echo requests elicit an echo ...
- [OK] icmpv4 2 echo requests for other ips d...
- [OK] icmpv4 3 error messages are written.
- [OK] udp 0 unmarshal regression.
- [OK] udp 1 marshal/marshal.
- [OK] udp 2 marshal/unmarshal.
- [OK] udp 3 write packets.
- [OK] tcp_options 0 unmarshal broken mss.
- [OK] tcp_options 1 unmarshal option with bogus l...
- [OK] tcp_options 2 unmarshal option with zero le...
- [OK] tcp_options 3 unmarshal simple cases.
- [OK] tcp_options 4 unmarshal stops at eof.
- [OK] tcp_options 5 unmarshal non-broken tcp opti...
- [OK] tcp_options 6 unmarshalling random data ret...
- [OK] tcp_options 7 test marshalling into a cstruct.
- [OK] tcp_options 8 test marshalling without padd...
- [OK] tcp_options 9 test marshalling an unknown v...
- [OK] tcp_options 10 test options marshalling when...
- [OK] tcp_options 11 test marshalling the empty list.
- [OK] mtu+tcp 0 connections work.
- [OK] mtu+tcp 1 large server responses are re...
- [OK] mtu+tcp 2 large client requests are chu...
- [OK] mtu+tcp 3 large messages aren't unneces...
- [OK] mtu+tcp 4 iperf test doesn't crash.
- [OK] rfc5961 0 blind rst to syn_sent.
- [OK] rfc5961 1 connection refused.
- [OK] rfc5961 2 blind rst on established.
- [OK] rfc5961 3 rst on established.
- [OK] rfc5961 4 blind syn on established.
- [OK] rfc5961 5 blind data injection.
- [OK] rfc5961 6 data repeated ack.
- [OK] socket 0 two sockets connect via TCP.
- [SKIP] socket 1 icmp echo-requests are sent.
- [OK] socket 2 file descriptors are not leak...
- [OK] socket 3 file descriptors are not leak...
- [OK] socket 4 file descriptors are not leak...
- [OK] socket 5 file descriptors are not leak...
- [OK] socket 6 file descriptors are not leak...
- [OK] socket 7 file descriptors are not leak...
- [OK] socket 8 file descriptors are not leak...
- [OK] socket 9 file descriptors are not leak...
- [OK] socket 10 file descriptors are not leak...
- [OK] socket 11 file descriptors are not leak...
- [OK] connect 0 connect two stacks, basic test.
- [SKIP] connect 1 connect two stacks, uniform p...
- [OK] connect 2 connect two stacks, with trai...
- [OK] connect_ipv6 0 connect two stacks, basic test.
- [SKIP] connect_ipv6 1 connect two stacks, uniform p...
- [OK] connect_ipv6 2 connect two stacks, with trai...
- [SKIP] deadlock 0 test tcp deadlock with slow r...
- [OK] iperf 0 iperf with two stacks, basic ...
- [OK] iperf 1 iperf with two stacks, over a...
- [OK] iperf 2 iperf with two stacks, testin...
- [OK] iperf 3 iperf with two stacks and uni...
- [OK] iperf 4 iperf with two stacks and uni...
- [SKIP] iperf 5 iperf with two stacks and uni...
- [SKIP] iperf 6 iperf with two stacks, basic ...
- [SKIP] iperf 7 iperf with two stacks and uni...
- [OK] iperf 8 iperf with two stacks drop 1 ...
- [OK] iperf_ipv6 0 iperf with two stacks, basic ...
- [OK] iperf_ipv6 1 iperf with two stacks, over a...
- [OK] iperf_ipv6 2 iperf with two stacks, testin...
- [OK] iperf_ipv6 3 iperf with two stacks and uni...
- [SKIP] iperf_ipv6 4 iperf with two stacks and uni...
- [SKIP] iperf_ipv6 5 iperf with two stacks and uni...
- [SKIP] iperf_ipv6 6 iperf with two stacks, basic ...
- [SKIP] iperf_ipv6 7 iperf with two stacks and uni...
- [OK] iperf_ipv6 8 iperf with two stacks drop 1 ...
- [OK] keepalive 0 correct number of keepalives.
- [OK] keepalive 1 we don't try to send old keep...
- [SKIP] keepalive 2 check we close if we miss all...
- [SKIP] keepalive 3 check that TCP keepalives det...
- [SKIP] simultaneous_close 0 close with ack.
- [SKIP] simultaneous_close 1 close with reset, challenge a...
-
- Full test results in `~/.opam/5.4/.opam-switch/build/tcpip.9.0.1/_build/default/test/_build/_tests/tcpip'.
- Test Successful in 60.292s. 409 tests run.
-> compiled tcpip.9.0.1
-> removed tcpip.9.0.1
-> installed tcpip.9.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 07:16.40 ---> saved as "ae2131f5283eebdbd90a3dc0e776af3ee553c62a3239020d08303f90f052acdc"
Job succeeded
2026-03-02 07:16.52: Job succeeded