Build:
- 0
2026-02-27 04:04.19: New job: test extprot.1.7.0 with ocaml-secondary-compiler.4.08.1-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-1 4.08.1-1
RUN opam reinstall ocaml-secondary-compiler.4.08.1-1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-secondary-compiler.4.08.1-1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall extprot.1.7.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'extprot.1.7.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test extprot.1.7.0) || true
RUN opam reinstall --with-test --verbose extprot.1.7.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'extprot.1.7.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-02-27 04:04.19: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-secondary-compiler.4.08.1-1-extprot.1.7.0-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:04.19: 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-1 4.08.1-1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-secondary-compiler.4.08.1-1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-secondary-compiler.4.08.1-1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall extprot.1.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'extprot.1.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test extprot.1.7.0) || true"))
(run (shell "opam reinstall --with-test --verbose extprot.1.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'extprot.1.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-27 04:04.19: Waiting for resource in pool OCluster
2026-03-02 05:51.06: Waiting for worker…
2026-03-02 05:58.17: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
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 05:58.19 ---> 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 05:58.19 ---> 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 05:58.19 ---> 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 05:58.19 ---> 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 05:58.19 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 05:58.20 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 05:58.20 ---> 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 (885 kB/s)
- Reading package lists...
-
2026-03-02 05:58.20 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-secondary-compiler.4.08.1-1 4.08.1-1"))
ocaml-secondary-compiler is now pinned to version 4.08.1-1
2026-03-02 05:58.20 ---> using "b44739e461a05019571129e607d8f83c09b00ce64ac384037276720e0cfa00bc" 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-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-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-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-1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-secondary-compiler.4.08.1-1 (cached)
-> installed ocaml-secondary-compiler.4.08.1-1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 05:58.20 ---> using "706491e990339b7da27f75607fd0a10bd654feebf3b990f4484bddb57d6a5a74" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall extprot.1.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'extprot.1.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
extprot.1.7.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
- install base-bytes base [required by extprot]
- install camlp-streams 5.0.1 [required by camlp4]
- install camlp4 5.4 [required by extprot]
- install cppo 1.8.0 [required by extlib]
- install dune 3.21.1 [required by extlib]
- install extlib 1.8.0 [required by extprot]
- install extprot 1.7.0
- install ocamlbuild 0.16.1 [required by camlp4]
- install ocamlfind 1.9.8 [required by extprot]
- install omake 0.10.7 [required by extprot]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved camlp4.5.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved dune.3.21.1 (cached)
-> retrieved extlib.1.8.0 (cached)
-> retrieved extprot.1.7.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved omake.0.10.7 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed dune.3.21.1
-> installed camlp-streams.5.0.1
-> installed cppo.1.8.0
-> installed extlib.1.8.0
-> installed omake.0.10.7
-> installed camlp4.5.4
-> installed extprot.1.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 06:01.55 ---> saved as "37a5e2aeaa1840f6ffd6edc8cfbf898dc5f6e0363a630c67cb28582a78db9b86"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test extprot.1.7.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile extprot 1.7.0
=== install 5 packages
- install base64 3.5.2 [required by extprot]
- install ounit 2.2.7 [required by extprot]
- install ounit2 2.2.7 [required by ounit]
- install seq base [required by ounit2]
- install stdlib-shims 0.3.0 [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2 (https://opam.ocaml.org/cache)
-> retrieved extprot.1.7.0 (https://opam.ocaml.org/cache)
-> retrieved ounit.2.2.7, ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> removed extprot.1.7.0
-> installed stdlib-shims.0.3.0
-> installed ounit2.2.2.7
-> installed ounit.2.2.7
-> installed extprot.1.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 06:04.41 ---> saved as "448c4544bffef2f2d184c730825c096d6935c185ea62bfdc22ae70d7ce13cd45"
/home/opam: (run (shell "opam reinstall --with-test --verbose extprot.1.7.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'extprot.1.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile extprot 1.7.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [extprot.1.7.0: extract]
-> retrieved extprot.1.7.0 (cached)
Processing 2/4: [extprot: omake]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "omake" (CWD=/home/opam/.opam/5.4/.opam-switch/build/extprot.1.7.0)
- *** omake: reading OMakefiles
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/Pervasives.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/build/C.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/build/Common.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/configure/Configure.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/build/OCaml.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/build/LaTeX.om
- --- Checking for ocamlfind... (found /home/opam/.opam/5.4/bin/ocamlfind)
- --- Checking for ocamlc.opt... (found /home/opam/.opam/5.4/bin/ocamlc.opt)
- --- Checking for ocamlopt.opt... (found /home/opam/.opam/5.4/bin/ocamlopt.opt)
- --- Checking for ocamldep.opt... (found /home/opam/.opam/5.4/bin/ocamldep.opt)
- --- Checking for ocamllex.opt... (found /home/opam/.opam/5.4/bin/ocamllex.opt)
- --- Checking whether ocamlc understands the "z" warnings... (NO)
- --- Checking whether ocamlopt can create cmxs plugins... (NO)
- --- Checking if ocamldep understands -modules... (yes)
- *** omake: finished reading OMakefiles (0.18 sec)
- - build runtime types.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o types.cmo -c types.ml
- File "types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler types.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o types.cmo -c types.ml
- File "types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime monad.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o monad.cmo -c monad.ml
- File "monad.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler pretty_print.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o pretty_print.cmo -c pretty_print.ml
- File "pretty_print.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime monad.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -inline 100 -I . -o monad.cmx -c monad.ml
- File "monad.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler protocol_types.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -w e -g -g -o protocol_types.cmo -c protocol_types.ml
- File "protocol_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime types.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -inline 100 -I . -o types.cmx -c types.ml
- File "types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler types.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o types.cmx -c types.ml
- File "types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime pretty_print.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o pretty_print.cmo -c pretty_print.ml
- File "pretty_print.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime codec.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o codec.cmo -c codec.ml
- File "codec.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler codec.cmx
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o codec.cmo -c codec.ml
- File "codec.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler pretty_print.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o pretty_print.cmx -c pretty_print.ml
- File "pretty_print.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler protocol_types.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -w e -g -inline 100 -o protocol_types.cmx -c protocol_types.ml
- File "protocol_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime random_gen.cmo
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o random_gen.cmo -c random_gen.ml
- File "random_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime pretty_print.cmi
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -inline 100 -I . -o pretty_print.cmx -c pretty_print.ml
- File "pretty_print.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime codec.cmi
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -inline 100 -I . -o codec.cmx -c codec.ml
- File "codec.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler codec.cmx
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o codec.cmx -c codec.ml
- File "codec.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler error.cmx
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o error.cmo -c error.ml
- File "error.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime random_gen.cmo
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -inline 100 -I . -o random_gen.cmx -c random_gen.ml
- File "random_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime error.cmx
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o error.cmo -c error.ml
- File "error.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler ptypes.cmx
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o ptypes.cmo -c ptypes.ml
- File "ptypes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime msg_buffer.cmo
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o msg_buffer.cmo -c msg_buffer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
-
- File "msg_buffer.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler msg_buffer.cmo
- + ocamlfind ocamlc -package extlib,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o msg_buffer.cmo -c msg_buffer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
-
- File "msg_buffer.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler error.cmx
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o error.cmx -c error.ml
- File "error.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime error.cmx
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -inline 100 -I . -o error.cmx -c error.ml
- File "error.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime msg_buffer.cmo
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -inline 100 -I . -o msg_buffer.cmx -c msg_buffer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
-
- File "msg_buffer.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler msg_buffer.cmo
- + ocamlfind ocamlopt -package extlib,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o msg_buffer.cmx -c msg_buffer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
-
- File "msg_buffer.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler ptypes.cmx
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o ptypes.cmx -c ptypes.ml
- File "ptypes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime inspect_msg.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o inspect_msg.cmo -c inspect_msg.ml
- File "inspect_msg.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler gencode_types.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -w e -g -g -o gencode_types.cmo -c gencode_types.ml
- File "gencode_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build runtime field.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -g -I . -o field.cmi -c field.mli
- File "field.mli", lines 51-54, characters 2-11:
- 51 | ..functor (C : sig
- 52 | val compress : Reader.String_reader.t -> Reader.String_reader.t
- 53 | val decompress : Reader.String_reader.t -> Reader.String_reader.t
- 54 | end) -> S
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- - build runtime inspect_msg.cmi
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -ppopt -DLITTLE_ENDIAN -for-pack Extprot -g -inline 100 -I . -o inspect_msg.cmx -c inspect_msg.ml
- File "inspect_msg.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler gencode_types.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -w e -g -inline 100 -o gencode_types.cmx -c gencode_types.ml
- File "gencode_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler parser.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix,camlp4.extend -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -w e -g -g -o parser.cmo -c parser.ml
- File "parser.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler reader.cmx
- + ocamlfind ocamlc -package extlib,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o reader.cmo -c reader.ml
- File "reader.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler parser.cmi
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix,camlp4.extend -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -w e -g -inline 100 -o parser.cmx -c parser.ml
- File "parser.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler gencode.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o gencode.cmo -c gencode.ml
- File "gencode.ml", line 10, characters 22-29:
- 10 | let failwithfmt fmt = kprintf (fun s -> if true then failwith s) fmt
- ^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
-
- File "gencode.ml", line 12, characters 2-9:
- 12 | kprintf (fun s -> print_endline "Found 1 error:"; print_endline s; exit 1) fmt
- ^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
-
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4,
- and its interface was not compiled with -opaque
-
- File "gencode.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler reader.cmx
- + ocamlfind ocamlopt -package extlib,camlp4.macro -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o reader.cmx -c reader.ml
- File "reader.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler gencode.cmi
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o gencode.cmx -c gencode.ml
- File "gencode.ml", line 10, characters 22-29:
- 10 | let failwithfmt fmt = kprintf (fun s -> if true then failwith s) fmt
- ^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
-
- File "gencode.ml", line 12, characters 2-9:
- 12 | kprintf (fun s -> print_endline "Found 1 error:"; print_endline s; exit 1) fmt
- ^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
-
- File "gencode.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler gen_OCaml.cmx
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o gen_OCaml.cmo -c gen_OCaml.ml
- File "gen_OCaml.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "gen_OCaml.ml", line 1313, characters 18-53:
- 1313 | and Make_reader : functor (RD : READER_OPS) -> READER =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 60 [unused-module]: unused module RD.
- - build compiler gen_OCaml.cmx
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o gen_OCaml.cmx -c gen_OCaml.ml
- File "gen_OCaml.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "gen_OCaml.ml", line 1313, characters 18-53:
- 1313 | and Make_reader : functor (RD : READER_OPS) -> READER =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 60 [unused-module]: unused module RD.
-
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4,
- and its interface was not compiled with -opaque
- - build compiler extprotc.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -g -o extprotc.cmo -c extprotc.ml
- File "extprotc.ml", line 62, characters 2-9:
- 62 | kprintf
- ^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
-
- File "extprotc.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build compiler extprotc.cmi
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,camlp4.lib,camlp4.quotations,unix -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -syntax camlp4o -I /home/opam/.opam/5.4/lib/ocaml/camlp4/Camlp4Parsers -g -inline 100 -o extprotc.cmx -c extprotc.ml
- File "extprotc.ml", line 62, characters 2-9:
- 62 | kprintf
- ^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
-
- File "extprotc.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- *** omake: done (13.94 sec, 35/35 scans, 49/123 rules, 175/208 digests)
Processing 2/4: [extprot: omake test]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "omake" "test" (CWD=/home/opam/.opam/5.4/.opam-switch/build/extprot.1.7.0)
- *** omake: reading OMakefiles
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/Pervasives.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/build/C.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/build/Common.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/configure/Configure.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/build/OCaml.om
- OMake warning: could not create and/or lock a cache file for
- /home/opam/.opam/5.4/lib/omake/build/LaTeX.om
- *** omake: finished reading OMakefiles (0.12 sec)
- - build test dummy_type.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o dummy_type.cmo -c dummy_type.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "dummy_type.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test wrapped_types.cmo
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o wrapped_types.cmo -c wrapped_types.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "wrapped_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test digest_type.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o digest_type.cmo -c digest_type.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "digest_type.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test dummy_type.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o dummy_type.cmx -c dummy_type.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "dummy_type.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test prettyprint.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o prettyprint.cmo -c prettyprint.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "prettyprint.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test test_util.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o test_util.cmo -c test_util.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "test_util.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test digest_type.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o digest_type.cmx -c digest_type.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test wrapped_types.cmo
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o wrapped_types.cmx -c wrapped_types.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test test_util.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o test_util.cmx -c test_util.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test prettyprint.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o prettyprint.cmx -c prettyprint.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "digest_type.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "wrapped_types.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "test_util.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "prettyprint.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test register_test.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o register_test.cmo -c register_test.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "register_test.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test prettyprint.opt
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o prettyprint.opt ../runtime/extprot.cmxa prettyprint.cmx -linkpkg
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test register_test.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o register_test.cmx -c register_test.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "register_test.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test test.cmo
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o test.cmo -c test.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "test.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test test.cmo
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o test.cmx -c test.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "test.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test test_types.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o test_types.cmi -c test_types.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "test_types.mli", line 739, characters 2-13:
- 739 | open Record
- ^^^^^^^^^^^
- Warning 33 [unused-open]: unused open Record.
-
- File "test_types.mli", line 3313, characters 2-12:
- 3313 | open Wsum_
- ^^^^^^^^^^
- Warning 33 [unused-open]: unused open Wsum_.
- - build test test_types.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o test_types.cmx -c test_types.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- *** omake: saved .omakedb
- - build test test_subsets.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o test_subsets.cmo -c test_subsets.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test gen_data.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o gen_data.cmo -c gen_data.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test test_extensions.o
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o test_extensions.cmo -c test_extensions.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test test_conv.cmo
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o test_conv.cmo -c test_conv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "test_conv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "gen_data.ml", line 104, characters 18-25:
- 104 | let add b fmt = kprintf (B.add_string b) fmt
- ^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
-
- File "gen_data.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "test_extensions.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test test_conv.cmo
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o test_conv.cmx -c test_conv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test gen_data.cmi
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o gen_data.cmx -c gen_data.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test test_extensions.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o test_extensions.cmx -c test_extensions.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "test_subsets.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test test_subsets.o
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o test_subsets.cmx -c test_subsets.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "gen_data.ml", line 104, characters 18-25:
- 104 | let add b fmt = kprintf (B.add_string b) fmt
- ^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
-
- File "gen_data.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "test_extensions.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "test_conv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "test_subsets.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test bm_01.cmi
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o bm_01.cmo -c bm_01.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test unit_write.cmx
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o unit_write.cmo -c unit_write.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test test_lazy_fields.cmx
- + ocamlfind ocamlc -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -g -I . -I ../runtime -o test_lazy_fields.cmo -c test_lazy_fields.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "bm_01.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "unit_write.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test bm_01.cmi
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o bm_01.cmx -c bm_01.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "test_lazy_fields.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test unit_write.cmx
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o unit_write.cmx -c unit_write.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test test_lazy_fields.cmx
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o test_lazy_fields.cmx -c test_lazy_fields.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
-
- File "bm_01.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "unit_write.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-
- File "test_lazy_fields.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- - build test bm_01.opt
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o bm_01.opt ../runtime/extprot.cmxa digest_type.cmx dummy_type.cmx wrapped_types.cmx test_types.cmx gen_data.cmx bm_01.cmx -linkpkg
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test run_tests.opt
- + ocamlfind ocamlopt -package dynlink,camlp4,extlib,bytes,str,base64,oUnit -w +a-4-32-44-48 -warn-error +a-3-4-6-7-9-18-27..29-32..99 -bin-annot -w Aelz-32-35-41-44-48 -g -inline 100 -I . -I ../runtime -o run_tests.opt ../runtime/extprot.cmxa test_util.cmx register_test.cmx dummy_type.cmx digest_type.cmx wrapped_types.cmx test_types.cmx gen_data.cmx unit_write.cmx test_conv.cmx test_extensions.cmx test_lazy_fields.cmx test_subsets.cmx test.cmx -linkpkg
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aelz', is deprecated.
- Use the equivalent signed form: +A-e-l-z-32-35-41-44-48.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- - build test <test>
- + ./run_tests -verbose
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration suite_name = "anon"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration cache_filename = "/home/opam/.opam/5.4/.opam-switch/build/extprot.1.7.0/test/oUnit-$(suite_name).cache"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration run_gc_full_major = "true"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration display = "true"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration results_style_1_X = "true"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration testdata_dir = "none"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration health_check_interval = "1."
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration verbose = "true"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration chooser = "simple"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration output_html_dir = "none"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration processes_kill_period = "5."
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration runner = "sequential"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration shards = "18"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration processes_grace_period = "5."
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration log_encoding = "utf-8"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration output_junit_file = "none"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration ci = "false"
- 2026-03-02T06:06:13+00:00 builder#00 I: Configuration output_file = "none"
- 2026-03-02T06:06:13+00:00 builder#00 I: Start test All tests:0:versioned serialization:0:versioned (de)serialize.
- 2026-03-02T06:06:13+00:00 builder#00 I: Test All tests:0:versioned serialization:0:versioned (de)serialize is successful.
- 2026-03-02T06:06:13+00:00 builder#00 I: End test All tests:0:versioned serialization:0:versioned (de)serialize.
- 2026-03-02T06:06:13+00:00 builder#00 I: Start test All tests:0:versioned serialization:1:versioned read/write.
- 2026-03-02T06:06:13+00:00 builder#00 I: Test All tests:0:versioned serialization:1:versioned read/write is successful.
- 2026-03-02T06:06:13+00:00 builder#00 I: End test All tests:0:versioned serialization:1:versioned read/write.
- 2026-03-02T06:06:13+00:00 builder#00 I: Start test All tests:0:versioned serialization:2:versioned IO read/write.
- 2026-03-02T06:06:13+00:00 builder#00 I: Test All tests:0:versioned serialization:2:versioned IO read/write is successful.
- 2026-03-02T06:06:13+00:00 builder#00 I: End test All tests:0:versioned serialization:2:versioned IO read/write.
- 2026-03-02T06:06:13+00:00 builder#00 I: Start test All tests:1:roundtrip:0:complex type.
- 2026-03-02T06:06:36+00:00 builder#00 I: Test All tests:1:roundtrip:0:complex type is successful.
- 2026-03-02T06:06:36+00:00 builder#00 I: End test All tests:1:roundtrip:0:complex type.
- 2026-03-02T06:06:36+00:00 builder#00 I: Start test All tests:1:roundtrip:1:message using record type.
- 2026-03-02T06:06:36+00:00 builder#00 I: Test All tests:1:roundtrip:1:message using record type is successful.
- 2026-03-02T06:06:36+00:00 builder#00 I: End test All tests:1:roundtrip:1:message using record type.
- 2026-03-02T06:06:36+00:00 builder#00 I: Start test All tests:1:roundtrip:2:message sum using record types.
- 2026-03-02T06:06:37+00:00 builder#00 I: Test All tests:1:roundtrip:2:message sum using record types is successful.
- 2026-03-02T06:06:37+00:00 builder#00 I: End test All tests:1:roundtrip:2:message sum using record types.
- 2026-03-02T06:06:37+00:00 builder#00 I: Start test All tests:1:roundtrip:3:fields of record type.
- 2026-03-02T06:06:37+00:00 builder#00 I: Test All tests:1:roundtrip:3:fields of record type is successful.
- 2026-03-02T06:06:37+00:00 builder#00 I: End test All tests:1:roundtrip:3:fields of record type.
- 2026-03-02T06:06:37+00:00 builder#00 I: Start test All tests:1:roundtrip:4:integer.
- 2026-03-02T06:06:38+00:00 builder#00 I: Test All tests:1:roundtrip:4:integer is successful.
- 2026-03-02T06:06:38+00:00 builder#00 I: End test All tests:1:roundtrip:4:integer.
- 2026-03-02T06:06:38+00:00 builder#00 I: Start test All tests:1:roundtrip:5:bool.
- 2026-03-02T06:06:38+00:00 builder#00 I: Test All tests:1:roundtrip:5:bool is successful.
- 2026-03-02T06:06:38+00:00 builder#00 I: End test All tests:1:roundtrip:5:bool.
- 2026-03-02T06:06:38+00:00 builder#00 I: Start test All tests:1:roundtrip:6:byte.
- 2026-03-02T06:06:38+00:00 builder#00 I: Test All tests:1:roundtrip:6:byte is successful.
- 2026-03-02T06:06:38+00:00 builder#00 I: End test All tests:1:roundtrip:6:byte.
- 2026-03-02T06:06:38+00:00 builder#00 I: Start test All tests:1:roundtrip:7:long.
- 2026-03-02T06:06:39+00:00 builder#00 I: Test All tests:1:roundtrip:7:long is successful.
- 2026-03-02T06:06:39+00:00 builder#00 I: End test All tests:1:roundtrip:7:long.
- 2026-03-02T06:06:39+00:00 builder#00 I: Start test All tests:1:roundtrip:8:float.
- 2026-03-02T06:06:40+00:00 builder#00 I: Test All tests:1:roundtrip:8:float is successful.
- 2026-03-02T06:06:40+00:00 builder#00 I: End test All tests:1:roundtrip:8:float.
- 2026-03-02T06:06:40+00:00 builder#00 I: Start test All tests:1:roundtrip:9:string.
- 2026-03-02T06:06:41+00:00 builder#00 I: Test All tests:1:roundtrip:9:string is successful.
- 2026-03-02T06:06:41+00:00 builder#00 I: End test All tests:1:roundtrip:9:string.
- 2026-03-02T06:06:41+00:00 builder#00 I: Start test All tests:1:roundtrip:10:abstract type (Digest_type.t).
- 2026-03-02T06:06:41+00:00 builder#00 I: Test All tests:1:roundtrip:10:abstract type (Digest_type.t) is successful.
- 2026-03-02T06:06:41+00:00 builder#00 I: End test All tests:1:roundtrip:10:abstract type (Digest_type.t).
- 2026-03-02T06:06:41+00:00 builder#00 I: Start test All tests:1:roundtrip:11:sum type.
- 2026-03-02T06:06:43+00:00 builder#00 I: Test All tests:1:roundtrip:11:sum type is successful.
- 2026-03-02T06:06:43+00:00 builder#00 I: End test All tests:1:roundtrip:11:sum type.
- 2026-03-02T06:06:43+00:00 builder#00 I: Start test All tests:1:roundtrip:12:lists and arrays.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:1:roundtrip:12:lists and arrays is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:1:roundtrip:12:lists and arrays.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:2:write composed types:0:tuple.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:2:write composed types:0:tuple is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:2:write composed types:0:tuple.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:2:write composed types:1:msg_sum.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:2:write composed types:1:msg_sum is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:2:write composed types:1:msg_sum.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:2:write composed types:2:simple_sum.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:2:write composed types:2:simple_sum is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:2:write composed types:2:simple_sum.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:2:write composed types:3:nested message.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:2:write composed types:3:nested message is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:2:write composed types:3:nested message.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:2:write composed types:4:lists and arrays.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:2:write composed types:4:lists and arrays is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:2:write composed types:4:lists and arrays.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:3:write simple types:0:bool (true).
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:3:write simple types:0:bool (true) is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:3:write simple types:0:bool (true).
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:3:write simple types:1:bool (false).
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:3:write simple types:1:bool (false) is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:3:write simple types:1:bool (false).
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:3:write simple types:2:byte.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:3:write simple types:2:byte is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:3:write simple types:2:byte.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:3:write simple types:3:int.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:3:write simple types:3:int is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:3:write simple types:3:int.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:3:write simple types:4:long.
- 2026-03-02T06:06:57+00:00 builder#00 I: Test All tests:3:write simple types:4:long is successful.
- 2026-03-02T06:06:57+00:00 builder#00 I: End test All tests:3:write simple types:4:long.
- 2026-03-02T06:06:57+00:00 builder#00 I: Start test All tests:3:write simple types:5:float.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:3:write simple types:5:float is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:3:write simple types:5:float.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:3:write simple types:6:string.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:3:write simple types:6:string is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:3:write simple types:6:string.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:4:error recovery:0:skip to EOM on error (conversion).
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:4:error recovery:0:skip to EOM on error (conversion) is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:4:error recovery:0:skip to EOM on error (conversion).
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:5:limits:0:max_elements.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:5:limits:0:max_elements is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:5:limits:0:max_elements.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:5:limits:1:max_string_length.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:5:limits:1:max_string_length is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:5:limits:1:max_string_length.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:5:limits:2:max_message_length.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:5:limits:2:max_message_length is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:5:limits:2:max_message_length.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:6:Conv:0:Serialize versioned roundtrip.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:6:Conv:0:Serialize versioned roundtrip is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:6:Conv:0:Serialize versioned roundtrip.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:6:Conv:1:read_frame + deserialize_versioned'.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:6:Conv:1:read_frame + deserialize_versioned' is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:6:Conv:1:read_frame + deserialize_versioned'.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:0:default msg constructor.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:0:default msg constructor is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:0:default msg constructor.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:1:dropping unknown fields.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:1:dropping unknown fields is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:1:dropping unknown fields.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:2:dropping unknown fields (sequence).
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:2:dropping unknown fields (sequence) is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:2:dropping unknown fields (sequence).
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:3:tuple to primitive type.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:3:tuple to primitive type is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:3:tuple to primitive type.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:4:primitive type to tuple.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:4:primitive type to tuple is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:4:primitive type to tuple.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:5:primitive type to non-constant variant.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:5:primitive type to non-constant variant is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:5:primitive type to non-constant variant.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:6:primitive type promoted to message.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:6:primitive type promoted to message is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:6:primitive type promoted to message.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:7:numeric type widening.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:7:numeric type widening is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:7:numeric type widening.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:8:constructor extension.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:8:constructor extension is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:8:constructor extension.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:0:sum type.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:0:sum type is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:0:sum type.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:1:nested message.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:1:nested message is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:1:nested message.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:2:lists and arrays.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:2:lists and arrays is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:2:lists and arrays.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:3:tuples.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:3:tuples is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:3:tuples.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:4:bool.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:4:bool is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:4:bool.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:5:explicit default values for primitive types 1.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:5:explicit default values for primitive types 1 is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:5:explicit default values for primitive types 1.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:6:explicit default values for primitive types 2.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:6:explicit default values for primitive types 2 is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:6:explicit default values for primitive types 2.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:7:explicit default values for primitive types 3.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:7:explicit default values for primitive types 3 is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:7:explicit default values for primitive types 3.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:8:propagation of default values across polymorphic types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:8:propagation of default values across polymorphic types is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:8:propagation of default values across polymorphic types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:9:default value for message whose fields have default values 1.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:9:default value for message whose fields have default values 1 is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:9:default value for message whose fields have default values 1.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:10:default value for message whose fields have default values 2.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:10:default value for message whose fields have default values 2 is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:10:default value for message whose fields have default values 2.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:11:default value for message whose fields have default values 3.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:11:default value for message whose fields have default values 3 is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:11:default value for message whose fields have default values 3.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:7:extensions:9:default_values:12:default value for message with polymorphic types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:12:default value for message with polymorphic types is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:7:extensions:9:default_values:12:default value for message with polymorphic types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:0:write primitive types (values).
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:0:write primitive types (values) is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:0:write primitive types (values).
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:1:write primitive types (thunks).
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:1:write primitive types (thunks) is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:1:write primitive types (thunks).
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:2:write list types (values).
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:2:write list types (values) is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:2:write list types (values).
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:3:write list types (thunks).
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:3:write list types (thunks) is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:3:write list types (thunks).
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:4:write array types (values).
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:4:write array types (values) is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:4:write array types (values).
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:5:write array types (thunks).
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:5:write array types (thunks) is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:5:write array types (thunks).
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:6:primitive types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:6:primitive types is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:6:primitive types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:7:primitive types, bit-for-bit compat with eager.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:7:primitive types, bit-for-bit compat with eager is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:7:primitive types, bit-for-bit compat with eager.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:8:external types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:8:external types is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:8:external types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:9:record types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:9:record types is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:9:record types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:10:lazy with default.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:10:lazy with default is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:10:lazy with default.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:11:lists.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:11:lists is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:11:lists.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:12:arrays.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:12:arrays is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:12:arrays.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:13:tuples.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:13:tuples is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:13:tuples.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:14:tuples, compat with eager fields.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:14:tuples, compat with eager fields is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:14:tuples, compat with eager fields.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:15:sum types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:15:sum types is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:15:sum types.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:16:sum types, compat with eager fields.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:16:sum types, compat with eager fields is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:16:sum types, compat with eager fields.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:17:nested messages.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:17:nested messages is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:17:nested messages.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:18:message variants.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:18:message variants is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:18:message variants.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:19:subsets of messages with lazy fields.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:19:subsets of messages with lazy fields is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:19:subsets of messages with lazy fields.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:20:subsets with type ascription.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:20:subsets with type ascription is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:20:subsets with type ascription.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:21:complex type serialization compat.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:21:complex type serialization compat is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:21:complex type serialization compat.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:22:default values.
- 2026-03-02T06:06:58+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:22:default values is successful.
- 2026-03-02T06:06:58+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:22:default values.
- 2026-03-02T06:06:58+00:00 builder#00 I: Start test All tests:8:lazy fields:0:lazy fields:23:randomized testing.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:23:randomized testing is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:8:lazy fields:0:lazy fields:23:randomized testing.
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:0:basic functionality.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:0:basic functionality is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:0:basic functionality.
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:1:record types (monomorphic).
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:1:record types (monomorphic) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:1:record types (monomorphic).
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:2:record types (polymorphic).
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:2:record types (polymorphic) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:2:record types (polymorphic).
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:3:default values, missing wanted fields (simple).
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:3:default values, missing wanted fields (simple) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:3:default values, missing wanted fields (simple).
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:4:default values, missing skipped fields (simple).
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:4:default values, missing skipped fields (simple) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:4:default values, missing skipped fields (simple).
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:5:default values, polymorphic record.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:5:default values, polymorphic record is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:5:default values, polymorphic record.
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:6:field type ascription.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:6:field type ascription is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:6:field type ascription.
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:7:field type ascription, polymorphic records.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:7:field type ascription, polymorphic records is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:7:field type ascription, polymorphic records.
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:8:type promotion after field type ascription.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:8:type promotion after field type ascription is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:8:type promotion after field type ascription.
- 2026-03-02T06:07:06+00:00 builder#00 I: Start test All tests:9:subsets:0:subsets:9:type options after field type ascription.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:9:type options after field type ascription is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: End test All tests:9:subsets:0:subsets:9:type options after field type ascription.
- 2026-03-02T06:07:06+00:00 builder#00 I: ==============
- 2026-03-02T06:07:06+00:00 builder#00 I: Summary:
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:9:type options after field type ascription is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:8:type promotion after field type ascription is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:7:field type ascription, polymorphic records is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:6:field type ascription is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:5:default values, polymorphic record is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:4:default values, missing skipped fields (simple) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:3:default values, missing wanted fields (simple) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:2:record types (polymorphic) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:1:record types (monomorphic) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:9:subsets:0:subsets:0:basic functionality is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:23:randomized testing is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:22:default values is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:21:complex type serialization compat is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:20:subsets with type ascription is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:19:subsets of messages with lazy fields is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:18:message variants is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:17:nested messages is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:16:sum types, compat with eager fields is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:15:sum types is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:14:tuples, compat with eager fields is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:13:tuples is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:12:arrays is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:11:lists is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:10:lazy with default is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:9:record types is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:8:external types is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:7:primitive types, bit-for-bit compat with eager is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:6:primitive types is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:5:write array types (thunks) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:4:write array types (values) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:3:write list types (thunks) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:2:write list types (values) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:1:write primitive types (thunks) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:8:lazy fields:0:lazy fields:0:write primitive types (values) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:12:default value for message with polymorphic types is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:11:default value for message whose fields have default values 3 is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:10:default value for message whose fields have default values 2 is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:9:default value for message whose fields have default values 1 is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:8:propagation of default values across polymorphic types is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:7:explicit default values for primitive types 3 is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:6:explicit default values for primitive types 2 is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:5:explicit default values for primitive types 1 is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:4:bool is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:3:tuples is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:2:lists and arrays is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:1:nested message is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:9:default_values:0:sum type is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:8:constructor extension is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:7:numeric type widening is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:6:primitive type promoted to message is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:5:primitive type to non-constant variant is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:4:primitive type to tuple is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:3:tuple to primitive type is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:2:dropping unknown fields (sequence) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:1:dropping unknown fields is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:7:extensions:0:default msg constructor is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:6:Conv:1:read_frame + deserialize_versioned' is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:6:Conv:0:Serialize versioned roundtrip is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:5:limits:2:max_message_length is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:5:limits:1:max_string_length is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:5:limits:0:max_elements is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:4:error recovery:0:skip to EOM on error (conversion) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:3:write simple types:6:string is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:3:write simple types:5:float is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:3:write simple types:4:long is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:3:write simple types:3:int is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:3:write simple types:2:byte is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:3:write simple types:1:bool (false) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:3:write simple types:0:bool (true) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:2:write composed types:4:lists and arrays is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:2:write composed types:3:nested message is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:2:write composed types:2:simple_sum is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:2:write composed types:1:msg_sum is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:2:write composed types:0:tuple is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:12:lists and arrays is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:11:sum type is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:10:abstract type (Digest_type.t) is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:9:string is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:8:float is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:7:long is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:6:byte is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:5:bool is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:4:integer is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:3:fields of record type is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:2:message sum using record types is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:1:message using record type is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:1:roundtrip:0:complex type is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:0:versioned serialization:2:versioned IO read/write is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:0:versioned serialization:1:versioned read/write is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Test All tests:0:versioned serialization:0:versioned (de)serialize is successful.
- 2026-03-02T06:07:06+00:00 builder#00 I: Ran: 90 tests in: 53.18 seconds.
- 2026-03-02T06:07:06+00:00 builder#00 I: Cases: 90.
- 2026-03-02T06:07:06+00:00 builder#00 I: Tried: 90.
- 2026-03-02T06:07:06+00:00 builder#00 I: Errors: 0.
- 2026-03-02T06:07:06+00:00 builder#00 I: Failures: 0.
- 2026-03-02T06:07:06+00:00 builder#00 I: Skip: 0.
- 2026-03-02T06:07:06+00:00 builder#00 I: Todo: 0.
- 2026-03-02T06:07:06+00:00 builder#00 I: Timeout: 0.
- *** omake: done (2 min 06.58 sec, 16/51 scans, 24/189 rules, 82/127 digests)
-> compiled extprot.1.7.0
-> removed extprot.1.7.0
Processing 4/4: [extprot: omake install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "omake" "install" "prefix=/home/opam/.opam/5.4" (CWD=/home/opam/.opam/5.4/.opam-switch/build/extprot.1.7.0)
- *** omake: reading OMakefiles
- *** omake: finished reading OMakefiles (0.18 sec)
- - build . <install>
- + ocamlfind install -patch-version git extprot runtime/META runtime/extprot.cma runtime/extprot.cmxa runtime/extprot.cmxs runtime/extprot.cmx runtime/extprot.cmi runtime/extprot.a runtime/*.mli
- Installed /home/opam/.opam/5.4/lib/extprot/reader.mli
- Installed /home/opam/.opam/5.4/lib/extprot/limits.mli
- Installed /home/opam/.opam/5.4/lib/extprot/field.mli
- Installed /home/opam/.opam/5.4/lib/extprot/conv.mli
- Installed /home/opam/.opam/5.4/lib/extprot/buffer_pool.mli
- Installed /home/opam/.opam/5.4/lib/extprot/extprot.a
- Installed /home/opam/.opam/5.4/lib/extprot/extprot.cmi
- Installed /home/opam/.opam/5.4/lib/extprot/extprot.cmx
- Installed /home/opam/.opam/5.4/lib/extprot/extprot.cmxs
- Installed /home/opam/.opam/5.4/lib/extprot/extprot.cmxa
- Installed /home/opam/.opam/5.4/lib/extprot/extprot.cma
- Installed /home/opam/.opam/5.4/lib/extprot/META
- *** omake: done (0.22 sec, 0/0 scans, 1/1 rules, 0/45 digests)
-> installed extprot.1.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 06:07.12 ---> saved as "599227dea73af990de5e4641913194fe276fd2be177af619c1da545d1eb7e238"
Job succeeded
2026-03-02 06:07.27: Job succeeded