Build:
- 0
2026-02-27 04:04.48: New job: test dates_calc.0.0.6 with ocaml-secondary-compiler.4.08.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-secondary-compiler.4.08.1 4.08.1
RUN opam reinstall ocaml-secondary-compiler.4.08.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-secondary-compiler.4.08.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall dates_calc.0.0.6; \
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" != 'dates_calc.0.0.6' && 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 dates_calc.0.0.6) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.6; \
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" != 'dates_calc.0.0.6' && 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.48: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-secondary-compiler.4.08.1-dates_calc.0.0.6-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:04.48: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocaml-secondary-compiler.4.08.1 4.08.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-secondary-compiler.4.08.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-secondary-compiler.4.08.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dates_calc.0.0.6;\
\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\" != 'dates_calc.0.0.6' && 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 dates_calc.0.0.6) || true"))
(run (shell "opam reinstall --with-test --verbose dates_calc.0.0.6;\
\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\" != 'dates_calc.0.0.6' && 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.48: Waiting for resource in pool OCluster
2026-03-02 09:00.14: Waiting for worker…
2026-03-02 09:03.28: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files: 57% (10559/18334)
Updating files: 58% (10634/18334)
Updating files: 59% (10818/18334)
Updating files: 60% (11001/18334)
Updating files: 61% (11184/18334)
Updating files: 62% (11368/18334)
Updating files: 63% (11551/18334)
Updating files: 64% (11734/18334)
Updating files: 65% (11918/18334)
Updating files: 66% (12101/18334)
Updating files: 67% (12284/18334)
Updating files: 68% (12468/18334)
Updating files: 69% (12651/18334)
Updating files: 70% (12834/18334)
Updating files: 71% (13018/18334)
Updating files: 72% (13201/18334)
Updating files: 73% (13384/18334)
Updating files: 74% (13568/18334)
Updating files: 75% (13751/18334)
Updating files: 76% (13934/18334)
Updating files: 77% (14118/18334)
Updating files: 78% (14301/18334)
Updating files: 79% (14484/18334)
Updating files: 80% (14668/18334)
Updating files: 81% (14851/18334)
Updating files: 82% (15034/18334)
Updating files: 83% (15218/18334)
Updating files: 84% (15401/18334)
Updating files: 85% (15584/18334)
Updating files: 86% (15768/18334)
Updating files: 87% (15951/18334)
Updating files: 88% (16134/18334)
Updating files: 89% (16318/18334)
Updating files: 90% (16501/18334)
Updating files: 91% (16684/18334)
Updating files: 92% (16868/18334)
Updating files: 93% (17051/18334)
Updating files: 94% (17234/18334)
Updating files: 95% (17418/18334)
Updating files: 96% (17601/18334)
Updating files: 97% (17784/18334)
Updating files: 98% (17968/18334)
Updating files: 99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 09:03.34 ---> 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 09:03.34 ---> 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 09:03.34 ---> 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 09:03.34 ---> 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 09:03.34 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 09:03.36 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 09:03.36 ---> 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 (988 kB/s)
- Reading package lists...
-
2026-03-02 09:03.36 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-secondary-compiler.4.08.1 4.08.1"))
ocaml-secondary-compiler is now pinned to version 4.08.1
2026-03-02 09:03.36 ---> using "26b9929e6d78f54d8f80fd7749e76b57b2a5087e9bbfce4cc04584f7009adae7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-secondary-compiler.4.08.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-secondary-compiler.4.08.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-secondary-compiler.4.08.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install ocaml-secondary-compiler 4.08.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-secondary-compiler.4.08.1 (cached)
-> installed ocaml-secondary-compiler.4.08.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 09:03.36 ---> using "6e65f0f970e618e23463227013afdf4ddd2988a331944d724eff919672c1ffef" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dates_calc.0.0.6;\
\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\" != 'dates_calc.0.0.6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dates_calc.0.0.6 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install dates_calc 0.0.6
- install dune 3.21.1 [required by dates_calc]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.6 (https://opam.ocaml.org/cache)
-> retrieved dune.3.21.1 (cached)
-> installed dune.3.21.1
-> installed dates_calc.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 09:04.51 ---> saved as "a1d6720bd277cda3b7e7bbc744c01a2a5ebf41c3b03f475d7f8165eb8beb49cd"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dates_calc.0.0.6) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile dates_calc 0.0.6
=== install 16 packages
- install alcotest 1.9.1 [required by dates_calc]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install ounit2 2.2.7 [required by qcheck-ounit]
- install qcheck 0.91 [required by dates_calc]
- install qcheck-core 0.91 [required by qcheck]
- install qcheck-ounit 0.91 [required by qcheck]
- install re 1.14.0 [required by alcotest]
- install seq base [required by ounit2]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.6 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> 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)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed dates_calc.0.0.6
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed dates_calc.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 09:06.57 ---> saved as "1c71842cf894a46915c80129b73f7fe4bd60ebf32d68bbc192ee6d69291deeec"
/home/opam: (run (shell "opam reinstall --with-test --verbose dates_calc.0.0.6;\
\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\" != 'dates_calc.0.0.6' && 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 dates_calc 0.0.6
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [dates_calc.0.0.6: extract]
-> retrieved dates_calc.0.0.6 (cached)
Processing 2/4: [dates_calc: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dates_calc" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/dates_calc.0.0.6)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `XAGRJZXR'.
-
- [OK] add_dates 0 exact.
- [OK] add_dates 1 ambig.
- [OK] first_last_day_of_month 0 all.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.6/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.004s. 3 tests run.
- (cd _build/default/test && ./prop.exe)
-
random seed: 277658685
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s anon_test_1
[ ] 190 0 0 190 / 1000 0.1s anon_test_1
[ ] 459 0 0 459 / 1000 0.2s anon_test_1
[ ] 718 0 0 718 / 1000 0.3s anon_test_1
[ ] 996 0 0 996 / 1000 0.4s anon_test_1
[✓] 1000 0 0 1000 / 1000 0.4s anon_test_1
-
[ ] 0 0 0 0 / 1000 0.0s anon_test_2
[ ] 7 0 0 7 / 1000 0.1s anon_test_2
[ ] 18 0 0 18 / 1000 0.2s anon_test_2
[ ] 24 0 0 24 / 1000 0.3s anon_test_2
[ ] 32 0 0 32 / 1000 0.4s anon_test_2
[ ] 42 0 0 42 / 1000 0.5s anon_test_2
[ ] 48 0 0 48 / 1000 0.7s anon_test_2
[ ] 55 0 0 55 / 1000 0.8s anon_test_2
[ ] 64 0 0 64 / 1000 0.9s anon_test_2
[ ] 71 0 0 71 / 1000 1.0s anon_test_2
[ ] 85 0 0 85 / 1000 1.1s anon_test_2
[ ] 90 0 0 90 / 1000 1.2s anon_test_2
[ ] 96 0 0 96 / 1000 1.4s anon_test_2
[ ] 106 0 0 106 / 1000 1.5s anon_test_2
[ ] 115 0 0 115 / 1000 1.6s anon_test_2
[ ] 124 0 0 124 / 1000 1.7s anon_test_2
[ ] 133 0 0 133 / 1000 1.8s anon_test_2
[ ] 143 0 0 143 / 1000 1.9s anon_test_2
[ ] 153 0 0 153 / 1000 2.0s anon_test_2
[ ] 163 0 0 163 / 1000 2.1s anon_test_2
[ ] 175 0 0 175 / 1000 2.3s anon_test_2
[ ] 184 0 0 184 / 1000 2.4s anon_test_2
[ ] 189 0 0 189 / 1000 2.5s anon_test_2
[ ] 193 0 0 193 / 1000 2.6s anon_test_2
[ ] 202 0 0 202 / 1000 2.8s anon_test_2
[ ] 208 0 0 208 / 1000 2.9s anon_test_2
[ ] 213 0 0 213 / 1000 3.0s anon_test_2
[ ] 216 0 0 216 / 1000 3.1s anon_test_2
[ ] 220 0 0 220 / 1000 3.2s anon_test_2
[ ] 224 0 0 224 / 1000 3.4s anon_test_2
[ ] 230 0 0 230 / 1000 3.5s anon_test_2
[ ] 235 0 0 235 / 1000 3.6s anon_test_2
[ ] 246 0 0 246 / 1000 3.7s anon_test_2
[ ] 256 0 0 256 / 1000 3.8s anon_test_2
[ ] 265 0 0 265 / 1000 3.9s anon_test_2
[ ] 274 0 0 274 / 1000 4.0s anon_test_2
[ ] 282 0 0 282 / 1000 4.1s anon_test_2
[ ] 290 0 0 290 / 1000 4.2s anon_test_2
[ ] 302 0 0 302 / 1000 4.3s anon_test_2
[ ] 315 0 0 315 / 1000 4.4s anon_test_2
[ ] 324 0 0 324 / 1000 4.5s anon_test_2
[ ] 333 0 0 333 / 1000 4.6s anon_test_2
[ ] 351 0 0 351 / 1000 4.8s anon_test_2
[ ] 363 0 0 363 / 1000 4.9s anon_test_2
[ ] 370 0 0 370 / 1000 5.0s anon_test_2
[ ] 384 0 0 384 / 1000 5.1s anon_test_2
[ ] 394 0 0 394 / 1000 5.2s anon_test_2
[ ] 402 0 0 402 / 1000 5.3s anon_test_2
[ ] 408 0 0 408 / 1000 5.4s anon_test_2
[ ] 417 0 0 417 / 1000 5.5s anon_test_2
[ ] 423 0 0 423 / 1000 5.6s anon_test_2
[ ] 431 0 0 431 / 1000 5.7s anon_test_2
[ ] 442 0 0 442 / 1000 5.8s anon_test_2
[ ] 453 0 0 453 / 1000 5.9s anon_test_2
[ ] 464 0 0 464 / 1000 6.0s anon_test_2
[ ] 476 0 0 476 / 1000 6.1s anon_test_2
[ ] 486 0 0 486 / 1000 6.2s anon_test_2
[ ] 495 0 0 495 / 1000 6.3s anon_test_2
[ ] 506 0 0 506 / 1000 6.4s anon_test_2
[ ] 521 0 0 521 / 1000 6.5s anon_test_2
[ ] 528 0 0 528 / 1000 6.6s anon_test_2
[ ] 539 0 0 539 / 1000 6.7s anon_test_2
[ ] 550 0 0 550 / 1000 6.8s anon_test_2
[ ] 560 0 0 560 / 1000 6.9s anon_test_2
[ ] 568 0 0 568 / 1000 7.0s anon_test_2
[ ] 576 0 0 576 / 1000 7.2s anon_test_2
[ ] 588 0 0 588 / 1000 7.3s anon_test_2
[ ] 595 0 0 595 / 1000 7.4s anon_test_2
[ ] 608 0 0 608 / 1000 7.5s anon_test_2
[ ] 621 0 0 621 / 1000 7.6s anon_test_2
[ ] 634 0 0 634 / 1000 7.7s anon_test_2
[ ] 642 0 0 642 / 1000 7.8s anon_test_2
[ ] 655 0 0 655 / 1000 7.9s anon_test_2
[ ] 662 0 0 662 / 1000 8.0s anon_test_2
[ ] 676 0 0 676 / 1000 8.2s anon_test_2
[ ] 687 0 0 687 / 1000 8.3s anon_test_2
[ ] 695 0 0 695 / 1000 8.4s anon_test_2
[ ] 705 0 0 705 / 1000 8.5s anon_test_2
[ ] 720 0 0 720 / 1000 8.6s anon_test_2
[ ] 738 0 0 738 / 1000 8.7s anon_test_2
[ ] 749 0 0 749 / 1000 8.8s anon_test_2
[ ] 763 0 0 763 / 1000 9.0s anon_test_2
[ ] 775 0 0 775 / 1000 9.1s anon_test_2
[ ] 781 0 0 781 / 1000 9.2s anon_test_2
[ ] 794 0 0 794 / 1000 9.3s anon_test_2
[ ] 809 0 0 809 / 1000 9.4s anon_test_2
[ ] 821 0 0 821 / 1000 9.5s anon_test_2
[ ] 831 0 0 831 / 1000 9.6s anon_test_2
[ ] 845 0 0 845 / 1000 9.7s anon_test_2
[ ] 851 0 0 851 / 1000 9.8s anon_test_2
[ ] 862 0 0 862 / 1000 9.9s anon_test_2
[ ] 875 0 0 875 / 1000 10.0s anon_test_2
[ ] 885 0 0 885 / 1000 10.2s anon_test_2
[ ] 902 0 0 902 / 1000 10.3s anon_test_2
[ ] 911 0 0 911 / 1000 10.4s anon_test_2
[ ] 920 0 0 920 / 1000 10.5s anon_test_2
[ ] 933 0 0 933 / 1000 10.6s anon_test_2
[ ] 941 0 0 941 / 1000 10.7s anon_test_2
[ ] 955 0 0 955 / 1000 10.8s anon_test_2
[ ] 967 0 0 967 / 1000 10.9s anon_test_2
[ ] 980 0 0 980 / 1000 11.0s anon_test_2
[ ] 989 0 0 989 / 1000 11.1s anon_test_2
[✓] 1000 0 0 1000 / 1000 11.2s anon_test_2
-
[ ] 0 0 0 0 / 1000000 0.0s h1
[ ] 9372 0 0 9372 / 1000000 0.1s h1
[ ] 18839 0 0 18839 / 1000000 0.2s h1
[ ] 27679 0 0 27679 / 1000000 0.3s h1
[ ] 37110 0 0 37110 / 1000000 0.4s h1
[ ] 46558 0 0 46558 / 1000000 0.5s h1
[ ] 55956 0 0 55956 / 1000000 0.6s h1
[ ] 65430 0 0 65430 / 1000000 0.7s h1
[ ] 74987 0 0 74987 / 1000000 0.8s h1
[ ] 84317 0 0 84317 / 1000000 0.9s h1
[ ] 93903 0 0 93903 / 1000000 1.0s h1
[ ] 103331 0 0 103331 / 1000000 1.1s h1
[ ] 112393 0 0 112393 / 1000000 1.2s h1
[ ] 121782 0 0 121782 / 1000000 1.3s h1
[ ] 131371 0 0 131371 / 1000000 1.4s h1
[ ] 140814 0 0 140814 / 1000000 1.5s h1
[ ] 150200 0 0 150200 / 1000000 1.6s h1
[ ] 159823 0 0 159823 / 1000000 1.7s h1 (collecting)
[ ] 169481 0 0 169481 / 1000000 1.8s h1
[ ] 178893 0 0 178893 / 1000000 1.9s h1
[ ] 188309 0 0 188309 / 1000000 2.0s h1
[ ] 197702 0 0 197702 / 1000000 2.1s h1
[ ] 206823 0 0 206823 / 1000000 2.2s h1
[ ] 216332 0 0 216332 / 1000000 2.3s h1
[ ] 225767 0 0 225767 / 1000000 2.4s h1
[ ] 235126 0 0 235126 / 1000000 2.5s h1
[ ] 244637 0 0 244637 / 1000000 2.6s h1
[ ] 254120 0 0 254120 / 1000000 2.7s h1
[ ] 263663 0 0 263663 / 1000000 2.8s h1
[ ] 273224 0 0 273224 / 1000000 2.9s h1
[ ] 282351 0 0 282351 / 1000000 3.0s h1
[ ] 292018 0 0 292018 / 1000000 3.1s h1
[ ] 301801 0 0 301801 / 1000000 3.2s h1
[ ] 311640 0 0 311640 / 1000000 3.3s h1
[ ] 321358 0 0 321358 / 1000000 3.4s h1
[ ] 331129 0 0 331129 / 1000000 3.5s h1
[ ] 340988 0 0 340988 / 1000000 3.6s h1
[ ] 350824 0 0 350824 / 1000000 3.7s h1
[ ] 360601 0 0 360601 / 1000000 3.8s h1
[ ] 370090 0 0 370090 / 1000000 3.9s h1
[ ] 379740 0 0 379740 / 1000000 4.0s h1
[ ] 389358 0 0 389358 / 1000000 4.1s h1
[ ] 398941 0 0 398941 / 1000000 4.2s h1
[ ] 408385 0 0 408385 / 1000000 4.3s h1
[ ] 417913 0 0 417913 / 1000000 4.4s h1
[ ] 427361 0 0 427361 / 1000000 4.5s h1
[ ] 436872 0 0 436872 / 1000000 4.6s h1
[ ] 446367 0 0 446367 / 1000000 4.7s h1
[ ] 456028 0 0 456028 / 1000000 4.8s h1
[ ] 465668 0 0 465668 / 1000000 4.9s h1
[ ] 475048 0 0 475048 / 1000000 5.0s h1
[ ] 484510 0 0 484510 / 1000000 5.1s h1
[ ] 494029 0 0 494029 / 1000000 5.2s h1
[ ] 503511 0 0 503511 / 1000000 5.3s h1
[ ] 512965 0 0 512965 / 1000000 5.4s h1
[ ] 522425 0 0 522425 / 1000000 5.5s h1
[ ] 532014 0 0 532014 / 1000000 5.6s h1
[ ] 541963 0 0 541963 / 1000000 5.7s h1
[ ] 551690 0 0 551690 / 1000000 5.8s h1
[ ] 561287 0 0 561287 / 1000000 5.9s h1
[ ] 570792 0 0 570792 / 1000000 6.0s h1
[ ] 581521 0 0 581521 / 1000000 6.1s h1
[ ] 591200 0 0 591200 / 1000000 6.2s h1
[ ] 599857 0 0 599857 / 1000000 6.3s h1
[ ] 609036 0 0 609036 / 1000000 6.4s h1
[ ] 618434 0 0 618434 / 1000000 6.5s h1
[ ] 627686 0 0 627686 / 1000000 6.6s h1
[ ] 637040 0 0 637040 / 1000000 6.7s h1
[ ] 646362 0 0 646362 / 1000000 6.8s h1
[ ] 656013 0 0 656013 / 1000000 6.9s h1
[ ] 665627 0 0 665627 / 1000000 7.0s h1
[ ] 675208 0 0 675208 / 1000000 7.1s h1
[ ] 684656 0 0 684656 / 1000000 7.2s h1 (collecting)
[ ] 694089 0 0 694089 / 1000000 7.3s h1
[ ] 703760 0 0 703760 / 1000000 7.4s h1
[ ] 713336 0 0 713336 / 1000000 7.5s h1
[ ] 722957 0 0 722957 / 1000000 7.6s h1
[ ] 732691 0 0 732691 / 1000000 7.7s h1
[ ] 742175 0 0 742175 / 1000000 7.8s h1
[ ] 751465 0 0 751465 / 1000000 7.9s h1
[ ] 760851 0 0 760851 / 1000000 8.0s h1
[ ] 770150 0 0 770150 / 1000000 8.1s h1
[ ] 779615 0 0 779615 / 1000000 8.2s h1
[ ] 789332 0 0 789332 / 1000000 8.3s h1 (collecting)
[ ] 798781 0 0 798781 / 1000000 8.4s h1
[ ] 808289 0 0 808289 / 1000000 8.5s h1
[ ] 817895 0 0 817895 / 1000000 8.6s h1
[ ] 826822 0 0 826822 / 1000000 8.7s h1
[ ] 836176 0 0 836176 / 1000000 8.8s h1
[ ] 845578 0 0 845578 / 1000000 8.9s h1
[ ] 855098 0 0 855098 / 1000000 9.0s h1
[ ] 864639 0 0 864639 / 1000000 9.1s h1
[ ] 873986 0 0 873986 / 1000000 9.2s h1
[ ] 883095 0 0 883095 / 1000000 9.3s h1
[ ] 892966 0 0 892966 / 1000000 9.4s h1
[ ] 902991 0 0 902991 / 1000000 9.5s h1
[ ] 912670 0 0 912670 / 1000000 9.6s h1
[ ] 922534 0 0 922534 / 1000000 9.7s h1
[ ] 932166 0 0 932166 / 1000000 9.8s h1
[ ] 941821 0 0 941821 / 1000000 9.9s h1
[ ] 950959 0 0 950959 / 1000000 10.0s h1
[ ] 960500 0 0 960500 / 1000000 10.1s h1
[ ] 970135 0 0 970135 / 1000000 10.2s h1
[ ] 979769 0 0 979769 / 1000000 10.3s h1
[ ] 989588 0 0 989588 / 1000000 10.4s h1 (collecting)
[ ] 999202 0 0 999202 / 1000000 10.5s h1
[✓] 1000000 0 0 1000000 / 1000000 10.5s h1
-
[ ] 0 0 0 0 / 1000000 0.0s h2
[ ] 4897 0 0 4897 / 1000000 0.1s h2
[ ] 9593 0 0 9593 / 1000000 0.2s h2
[ ] 14452 0 0 14452 / 1000000 0.3s h2
[ ] 19321 0 0 19321 / 1000000 0.4s h2
[ ] 24280 0 0 24280 / 1000000 0.5s h2
[ ] 29352 0 0 29352 / 1000000 0.6s h2
[ ] 34121 0 0 34121 / 1000000 0.7s h2
[ ] 38905 0 0 38905 / 1000000 0.8s h2
[ ] 43928 0 0 43928 / 1000000 0.9s h2
[ ] 48986 0 0 48986 / 1000000 1.0s h2
[ ] 53891 0 0 53891 / 1000000 1.1s h2
[ ] 58848 0 0 58848 / 1000000 1.2s h2
[ ] 63756 0 0 63756 / 1000000 1.3s h2
[ ] 68703 0 0 68703 / 1000000 1.4s h2
[ ] 73591 0 0 73591 / 1000000 1.5s h2
[ ] 78634 0 0 78634 / 1000000 1.6s h2
[ ] 83700 0 0 83700 / 1000000 1.7s h2
[ ] 88671 0 0 88671 / 1000000 1.8s h2
[ ] 93633 0 0 93633 / 1000000 1.9s h2
[ ] 98563 0 0 98563 / 1000000 2.0s h2 (generating)
[ ] 103454 0 0 103454 / 1000000 2.1s h2
[ ] 108454 0 0 108454 / 1000000 2.2s h2
[ ] 113511 0 0 113511 / 1000000 2.3s h2
[ ] 118470 0 0 118470 / 1000000 2.4s h2
[ ] 123571 0 0 123571 / 1000000 2.5s h2
[ ] 128565 0 0 128565 / 1000000 2.6s h2
[ ] 133546 0 0 133546 / 1000000 2.7s h2
[ ] 138416 0 0 138416 / 1000000 2.8s h2
[ ] 143339 0 0 143339 / 1000000 2.9s h2
[ ] 148385 0 0 148385 / 1000000 3.0s h2
[ ] 153511 0 0 153511 / 1000000 3.1s h2
[ ] 158482 0 0 158482 / 1000000 3.2s h2
[ ] 163507 0 0 163507 / 1000000 3.3s h2
[ ] 168416 0 0 168416 / 1000000 3.4s h2
[ ] 173197 0 0 173197 / 1000000 3.5s h2
[ ] 178107 0 0 178107 / 1000000 3.6s h2
[ ] 183092 0 0 183092 / 1000000 3.7s h2
[ ] 188045 0 0 188045 / 1000000 3.8s h2
[ ] 193048 0 0 193048 / 1000000 3.9s h2
[ ] 198040 0 0 198040 / 1000000 4.0s h2
[ ] 203109 0 0 203109 / 1000000 4.1s h2
[ ] 208173 0 0 208173 / 1000000 4.2s h2
[ ] 213076 0 0 213076 / 1000000 4.3s h2
[ ] 217970 0 0 217970 / 1000000 4.4s h2
[ ] 222789 0 0 222789 / 1000000 4.5s h2
[ ] 227709 0 0 227709 / 1000000 4.6s h2
[ ] 232693 0 0 232693 / 1000000 4.7s h2
[ ] 237785 0 0 237785 / 1000000 4.8s h2
[ ] 242774 0 0 242774 / 1000000 4.9s h2
[ ] 247649 0 0 247649 / 1000000 5.0s h2
[ ] 252596 0 0 252596 / 1000000 5.1s h2
[ ] 257624 0 0 257624 / 1000000 5.2s h2
[ ] 262570 0 0 262570 / 1000000 5.3s h2
[ ] 267665 0 0 267665 / 1000000 5.4s h2
[ ] 272736 0 0 272736 / 1000000 5.5s h2
[ ] 277607 0 0 277607 / 1000000 5.6s h2
[ ] 282421 0 0 282421 / 1000000 5.7s h2
[ ] 287279 0 0 287279 / 1000000 5.8s h2
[ ] 292224 0 0 292224 / 1000000 5.9s h2
[ ] 297031 0 0 297031 / 1000000 6.0s h2
[ ] 301905 0 0 301905 / 1000000 6.1s h2
[ ] 306881 0 0 306881 / 1000000 6.2s h2
[ ] 311750 0 0 311750 / 1000000 6.3s h2
[ ] 316333 0 0 316333 / 1000000 6.4s h2
[ ] 321166 0 0 321166 / 1000000 6.5s h2
[ ] 326185 0 0 326185 / 1000000 6.6s h2
[ ] 330927 0 0 330927 / 1000000 6.7s h2
[ ] 335811 0 0 335811 / 1000000 6.8s h2
[ ] 340658 0 0 340658 / 1000000 6.9s h2
[ ] 345539 0 0 345539 / 1000000 7.0s h2
[ ] 350467 0 0 350467 / 1000000 7.1s h2
[ ] 355335 0 0 355335 / 1000000 7.2s h2
[ ] 360119 0 0 360119 / 1000000 7.3s h2
[ ] 364973 0 0 364973 / 1000000 7.4s h2
[ ] 369978 0 0 369978 / 1000000 7.5s h2
[ ] 374842 0 0 374842 / 1000000 7.6s h2
[ ] 379656 0 0 379656 / 1000000 7.7s h2
[ ] 384603 0 0 384603 / 1000000 7.8s h2
[ ] 389548 0 0 389548 / 1000000 7.9s h2
[ ] 394395 0 0 394395 / 1000000 8.0s h2
[ ] 399207 0 0 399207 / 1000000 8.1s h2
[ ] 404181 0 0 404181 / 1000000 8.2s h2
[ ] 409184 0 0 409184 / 1000000 8.3s h2
[ ] 414107 0 0 414107 / 1000000 8.4s h2
[ ] 418967 0 0 418967 / 1000000 8.5s h2
[ ] 423821 0 0 423821 / 1000000 8.6s h2
[ ] 428687 0 0 428687 / 1000000 8.7s h2
[ ] 433634 0 0 433634 / 1000000 8.8s h2
[ ] 438552 0 0 438552 / 1000000 8.9s h2
[ ] 443504 0 0 443504 / 1000000 9.0s h2
[ ] 448429 0 0 448429 / 1000000 9.1s h2
[ ] 453444 0 0 453444 / 1000000 9.2s h2
[ ] 458396 0 0 458396 / 1000000 9.3s h2
[ ] 463348 0 0 463348 / 1000000 9.4s h2
[ ] 468382 0 0 468382 / 1000000 9.5s h2
[ ] 473423 0 0 473423 / 1000000 9.6s h2
[ ] 478454 0 0 478454 / 1000000 9.7s h2
[ ] 483514 0 0 483514 / 1000000 9.8s h2
[ ] 488555 0 0 488555 / 1000000 9.9s h2
[ ] 493325 0 0 493325 / 1000000 10.0s h2
[ ] 498278 0 0 498278 / 1000000 10.1s h2
[ ] 503139 0 0 503139 / 1000000 10.2s h2
[ ] 507992 0 0 507992 / 1000000 10.3s h2
[ ] 512866 0 0 512866 / 1000000 10.4s h2
[ ] 517740 0 0 517740 / 1000000 10.5s h2
[ ] 522646 0 0 522646 / 1000000 10.6s h2
[ ] 527603 0 0 527603 / 1000000 10.7s h2
[ ] 532474 0 0 532474 / 1000000 10.8s h2
[ ] 537346 0 0 537346 / 1000000 10.9s h2
[ ] 542139 0 0 542139 / 1000000 11.0s h2
[ ] 546899 0 0 546899 / 1000000 11.1s h2
[ ] 551804 0 0 551804 / 1000000 11.2s h2
[ ] 556739 0 0 556739 / 1000000 11.3s h2
[ ] 561612 0 0 561612 / 1000000 11.4s h2
[ ] 566502 0 0 566502 / 1000000 11.5s h2
[ ] 571032 0 0 571032 / 1000000 11.6s h2
[ ] 575908 0 0 575908 / 1000000 11.7s h2
[ ] 580841 0 0 580841 / 1000000 11.8s h2
[ ] 585766 0 0 585766 / 1000000 11.9s h2
[ ] 590640 0 0 590640 / 1000000 12.0s h2
[ ] 595600 0 0 595600 / 1000000 12.1s h2
[ ] 600643 0 0 600643 / 1000000 12.2s h2
[ ] 605580 0 0 605580 / 1000000 12.3s h2
[ ] 610578 0 0 610578 / 1000000 12.4s h2
[ ] 615412 0 0 615412 / 1000000 12.5s h2
[ ] 620081 0 0 620081 / 1000000 12.6s h2
[ ] 624901 0 0 624901 / 1000000 12.7s h2
[ ] 629944 0 0 629944 / 1000000 12.8s h2
[ ] 634931 0 0 634931 / 1000000 12.9s h2
[ ] 639800 0 0 639800 / 1000000 13.0s h2
[ ] 644625 0 0 644625 / 1000000 13.1s h2
[ ] 649594 0 0 649594 / 1000000 13.2s h2
[ ] 654456 0 0 654456 / 1000000 13.3s h2
[ ] 659249 0 0 659249 / 1000000 13.4s h2
[ ] 664350 0 0 664350 / 1000000 13.5s h2
[ ] 669406 0 0 669406 / 1000000 13.6s h2
[ ] 674330 0 0 674330 / 1000000 13.7s h2
[ ] 679332 0 0 679332 / 1000000 13.8s h2
[ ] 684429 0 0 684429 / 1000000 13.9s h2
[ ] 689072 0 0 689072 / 1000000 14.0s h2
[ ] 693663 0 0 693663 / 1000000 14.1s h2
[ ] 698262 0 0 698262 / 1000000 14.2s h2
[ ] 703199 0 0 703199 / 1000000 14.3s h2
[ ] 708037 0 0 708037 / 1000000 14.4s h2
[ ] 712953 0 0 712953 / 1000000 14.5s h2
[ ] 717861 0 0 717861 / 1000000 14.6s h2
[ ] 722715 0 0 722715 / 1000000 14.7s h2
[ ] 727622 0 0 727622 / 1000000 14.8s h2
[ ] 732352 0 0 732352 / 1000000 14.9s h2
[ ] 737277 0 0 737277 / 1000000 15.0s h2
[ ] 742005 0 0 742005 / 1000000 15.1s h2
[ ] 746824 0 0 746824 / 1000000 15.2s h2
[ ] 751689 0 0 751689 / 1000000 15.3s h2
[ ] 756694 0 0 756694 / 1000000 15.4s h2
[ ] 761497 0 0 761497 / 1000000 15.5s h2
[ ] 766467 0 0 766467 / 1000000 15.6s h2
[ ] 771396 0 0 771396 / 1000000 15.7s h2
[ ] 776254 0 0 776254 / 1000000 15.8s h2
[ ] 781168 0 0 781168 / 1000000 15.9s h2
[ ] 786110 0 0 786110 / 1000000 16.0s h2
[ ] 790978 0 0 790978 / 1000000 16.1s h2
[ ] 795895 0 0 795895 / 1000000 16.2s h2
[ ] 800706 0 0 800706 / 1000000 16.3s h2
[ ] 805517 0 0 805517 / 1000000 16.4s h2
[ ] 810413 0 0 810413 / 1000000 16.5s h2
[ ] 815312 0 0 815312 / 1000000 16.6s h2
[ ] 820146 0 0 820146 / 1000000 16.7s h2
[ ] 825021 0 0 825021 / 1000000 16.8s h2
[ ] 830018 0 0 830018 / 1000000 16.9s h2
[ ] 834960 0 0 834960 / 1000000 17.0s h2
[ ] 840018 0 0 840018 / 1000000 17.1s h2
[ ] 844967 0 0 844967 / 1000000 17.2s h2
[ ] 849962 0 0 849962 / 1000000 17.3s h2
[ ] 854878 0 0 854878 / 1000000 17.4s h2 (collecting)
[ ] 859888 0 0 859888 / 1000000 17.5s h2
[ ] 864882 0 0 864882 / 1000000 17.6s h2
[ ] 869759 0 0 869759 / 1000000 17.7s h2
[ ] 874719 0 0 874719 / 1000000 17.8s h2
[ ] 879847 0 0 879847 / 1000000 17.9s h2
[ ] 884714 0 0 884714 / 1000000 18.0s h2
[ ] 889463 0 0 889463 / 1000000 18.1s h2
[ ] 894436 0 0 894436 / 1000000 18.2s h2
[ ] 899298 0 0 899298 / 1000000 18.3s h2
[ ] 904230 0 0 904230 / 1000000 18.4s h2
[ ] 908941 0 0 908941 / 1000000 18.5s h2
[ ] 913733 0 0 913733 / 1000000 18.6s h2
[ ] 918639 0 0 918639 / 1000000 18.7s h2
[ ] 923359 0 0 923359 / 1000000 18.8s h2
[ ] 928204 0 0 928204 / 1000000 18.9s h2
[ ] 933084 0 0 933084 / 1000000 19.0s h2
[ ] 937881 0 0 937881 / 1000000 19.1s h2 (collecting)
[ ] 942814 0 0 942814 / 1000000 19.2s h2
[ ] 947826 0 0 947826 / 1000000 19.3s h2
[ ] 952749 0 0 952749 / 1000000 19.4s h2
[ ] 957431 0 0 957431 / 1000000 19.5s h2
[ ] 962136 0 0 962136 / 1000000 19.6s h2
[ ] 967015 0 0 967015 / 1000000 19.7s h2
[ ] 971847 0 0 971847 / 1000000 19.8s h2
[ ] 976663 0 0 976663 / 1000000 19.9s h2
[ ] 981421 0 0 981421 / 1000000 20.0s h2
[ ] 986235 0 0 986235 / 1000000 20.1s h2
[ ] 990987 0 0 990987 / 1000000 20.2s h2
[ ] 995772 0 0 995772 / 1000000 20.3s h2
[✓] 1000000 0 0 1000000 / 1000000 20.4s h2
-
[ ] 0 0 0 0 / 1000000 0.0s h3
[ ] 9073 0 0 9073 / 1000000 0.1s h3
[ ] 18536 0 0 18536 / 1000000 0.2s h3
[ ] 28157 0 0 28157 / 1000000 0.3s h3
[ ] 37617 0 0 37617 / 1000000 0.4s h3
[ ] 46832 0 0 46832 / 1000000 0.5s h3
[ ] 55686 0 0 55686 / 1000000 0.6s h3
[ ] 64576 0 0 64576 / 1000000 0.7s h3
[ ] 74027 0 0 74027 / 1000000 0.8s h3
[ ] 83546 0 0 83546 / 1000000 0.9s h3
[ ] 93079 0 0 93079 / 1000000 1.0s h3
[ ] 102416 0 0 102416 / 1000000 1.1s h3
[ ] 111646 0 0 111646 / 1000000 1.2s h3
[ ] 120967 0 0 120967 / 1000000 1.3s h3
[ ] 130169 0 0 130169 / 1000000 1.4s h3
[ ] 139423 0 0 139423 / 1000000 1.5s h3
[ ] 148635 0 0 148635 / 1000000 1.6s h3
[ ] 157832 0 0 157832 / 1000000 1.7s h3
[ ] 167118 0 0 167118 / 1000000 1.8s h3
[ ] 176267 0 0 176267 / 1000000 1.9s h3
[ ] 185748 0 0 185748 / 1000000 2.0s h3
[ ] 195051 0 0 195051 / 1000000 2.1s h3
[ ] 204224 0 0 204224 / 1000000 2.2s h3
[ ] 213789 0 0 213789 / 1000000 2.3s h3
[ ] 223368 0 0 223368 / 1000000 2.4s h3
[ ] 233226 0 0 233226 / 1000000 2.5s h3
[ ] 243049 0 0 243049 / 1000000 2.6s h3
[ ] 252762 0 0 252762 / 1000000 2.7s h3
[ ] 262545 0 0 262545 / 1000000 2.8s h3
[ ] 272149 0 0 272149 / 1000000 2.9s h3
[ ] 281794 0 0 281794 / 1000000 3.0s h3
[ ] 291541 0 0 291541 / 1000000 3.1s h3
[ ] 300982 0 0 300982 / 1000000 3.2s h3
[ ] 310205 0 0 310205 / 1000000 3.3s h3
[ ] 319448 0 0 319448 / 1000000 3.4s h3
[ ] 329012 0 0 329012 / 1000000 3.5s h3
[ ] 338287 0 0 338287 / 1000000 3.6s h3
[ ] 347850 0 0 347850 / 1000000 3.7s h3
[ ] 357417 0 0 357417 / 1000000 3.8s h3
[ ] 367143 0 0 367143 / 1000000 3.9s h3
[ ] 376750 0 0 376750 / 1000000 4.0s h3
[ ] 386113 0 0 386113 / 1000000 4.1s h3
[ ] 395553 0 0 395553 / 1000000 4.2s h3
[ ] 404887 0 0 404887 / 1000000 4.3s h3
[ ] 414562 0 0 414562 / 1000000 4.4s h3
[ ] 423865 0 0 423865 / 1000000 4.5s h3
[ ] 433540 0 0 433540 / 1000000 4.6s h3
[ ] 443122 0 0 443122 / 1000000 4.7s h3
[ ] 452886 0 0 452886 / 1000000 4.8s h3
[ ] 462798 0 0 462798 / 1000000 4.9s h3 (generating)
[ ] 472376 0 0 472376 / 1000000 5.0s h3
[ ] 481994 0 0 481994 / 1000000 5.1s h3
[ ] 491489 0 0 491489 / 1000000 5.2s h3
[ ] 500908 0 0 500908 / 1000000 5.3s h3
[ ] 510397 0 0 510397 / 1000000 5.4s h3
[ ] 519733 0 0 519733 / 1000000 5.5s h3
[ ] 529347 0 0 529347 / 1000000 5.6s h3
[ ] 538464 0 0 538464 / 1000000 5.7s h3
[ ] 547548 0 0 547548 / 1000000 5.8s h3
[ ] 556783 0 0 556783 / 1000000 5.9s h3
[ ] 566059 0 0 566059 / 1000000 6.0s h3
[ ] 574998 0 0 574998 / 1000000 6.1s h3
[ ] 584286 0 0 584286 / 1000000 6.2s h3
[ ] 593625 0 0 593625 / 1000000 6.3s h3
[ ] 602648 0 0 602648 / 1000000 6.4s h3 (collecting)
[ ] 611550 0 0 611550 / 1000000 6.5s h3
[ ] 620309 0 0 620309 / 1000000 6.6s h3
[ ] 629346 0 0 629346 / 1000000 6.7s h3 (collecting)
[ ] 638749 0 0 638749 / 1000000 6.8s h3
[ ] 648097 0 0 648097 / 1000000 6.9s h3
[ ] 656991 0 0 656991 / 1000000 7.0s h3
[ ] 666716 0 0 666716 / 1000000 7.1s h3
[ ] 675757 0 0 675757 / 1000000 7.2s h3
[ ] 685380 0 0 685380 / 1000000 7.3s h3
[ ] 694697 0 0 694697 / 1000000 7.4s h3
[ ] 703906 0 0 703906 / 1000000 7.5s h3 (collecting)
[ ] 713339 0 0 713339 / 1000000 7.6s h3
[ ] 722756 0 0 722756 / 1000000 7.7s h3
[ ] 731711 0 0 731711 / 1000000 7.8s h3
[ ] 740814 0 0 740814 / 1000000 7.9s h3
[ ] 750335 0 0 750335 / 1000000 8.0s h3
[ ] 759157 0 0 759157 / 1000000 8.1s h3
[ ] 768440 0 0 768440 / 1000000 8.2s h3 (collecting)
[ ] 777781 0 0 777781 / 1000000 8.3s h3
[ ] 787314 0 0 787314 / 1000000 8.4s h3
[ ] 796860 0 0 796860 / 1000000 8.5s h3
[ ] 806530 0 0 806530 / 1000000 8.6s h3
[ ] 815581 0 0 815581 / 1000000 8.7s h3
[ ] 824443 0 0 824443 / 1000000 8.8s h3 ( testing)
[ ] 832831 0 0 832831 / 1000000 8.9s h3 (collecting)
[ ] 842267 0 0 842267 / 1000000 9.0s h3
[ ] 851234 0 0 851234 / 1000000 9.1s h3
[ ] 860685 0 0 860685 / 1000000 9.2s h3
[ ] 870142 0 0 870142 / 1000000 9.3s h3
[ ] 879411 0 0 879411 / 1000000 9.4s h3
[ ] 888989 0 0 888989 / 1000000 9.5s h3
[ ] 898011 0 0 898011 / 1000000 9.6s h3
[ ] 907469 0 0 907469 / 1000000 9.7s h3
[ ] 916654 0 0 916654 / 1000000 9.8s h3
[ ] 925805 0 0 925805 / 1000000 9.9s h3
[ ] 935230 0 0 935230 / 1000000 10.0s h3
[ ] 944563 0 0 944563 / 1000000 10.1s h3
[ ] 953892 0 0 953892 / 1000000 10.2s h3
[ ] 963196 0 0 963196 / 1000000 10.3s h3
[ ] 972192 0 0 972192 / 1000000 10.4s h3
[ ] 981308 0 0 981308 / 1000000 10.5s h3
[ ] 990634 0 0 990634 / 1000000 10.6s h3
[✓] 1000000 0 0 1000000 / 1000000 10.7s h3
-
[ ] 0 0 0 0 / 1000000 0.0s h4
[ ] 3163 0 0 3163 / 1000000 0.1s h4
[ ] 6285 0 0 6285 / 1000000 0.2s h4 (generating)
[ ] 9520 0 0 9520 / 1000000 0.3s h4
[ ] 12644 0 0 12644 / 1000000 0.4s h4
[ ] 15970 0 0 15970 / 1000000 0.5s h4
[ ] 19210 0 0 19210 / 1000000 0.6s h4
[ ] 22325 0 0 22325 / 1000000 0.7s h4
[ ] 25520 0 0 25520 / 1000000 0.8s h4
[ ] 28983 0 0 28983 / 1000000 0.9s h4
[ ] 32290 0 0 32290 / 1000000 1.0s h4
[ ] 35597 0 0 35597 / 1000000 1.1s h4
[ ] 38762 0 0 38762 / 1000000 1.2s h4
[ ] 42003 0 0 42003 / 1000000 1.3s h4
[ ] 45353 0 0 45353 / 1000000 1.4s h4
[ ] 48446 0 0 48446 / 1000000 1.5s h4
[ ] 51550 0 0 51550 / 1000000 1.6s h4
[ ] 54922 0 0 54922 / 1000000 1.7s h4
[ ] 57968 0 0 57968 / 1000000 1.8s h4
[ ] 61243 0 0 61243 / 1000000 1.9s h4
[ ] 64412 0 0 64412 / 1000000 2.0s h4
[ ] 67523 0 0 67523 / 1000000 2.1s h4
[ ] 70904 0 0 70904 / 1000000 2.2s h4
[ ] 73950 0 0 73950 / 1000000 2.3s h4
[ ] 77140 0 0 77140 / 1000000 2.4s h4 (generating)
[ ] 80278 0 0 80278 / 1000000 2.5s h4
[ ] 83689 0 0 83689 / 1000000 2.6s h4
[ ] 86991 0 0 86991 / 1000000 2.7s h4
[ ] 90204 0 0 90204 / 1000000 2.8s h4
[ ] 93408 0 0 93408 / 1000000 2.9s h4
[ ] 96659 0 0 96659 / 1000000 3.0s h4
[ ] 99980 0 0 99980 / 1000000 3.1s h4
[ ] 103398 0 0 103398 / 1000000 3.2s h4
[ ] 106698 0 0 106698 / 1000000 3.3s h4
[ ] 110025 0 0 110025 / 1000000 3.4s h4
[ ] 113384 0 0 113384 / 1000000 3.5s h4
[ ] 116599 0 0 116599 / 1000000 3.6s h4
[ ] 119915 0 0 119915 / 1000000 3.7s h4
[ ] 123127 0 0 123127 / 1000000 3.8s h4
[ ] 126312 0 0 126312 / 1000000 3.9s h4
[ ] 129650 0 0 129650 / 1000000 4.0s h4
[ ] 133023 0 0 133023 / 1000000 4.1s h4
[ ] 136223 0 0 136223 / 1000000 4.2s h4
[ ] 139550 0 0 139550 / 1000000 4.3s h4
[ ] 142758 0 0 142758 / 1000000 4.4s h4
[ ] 145994 0 0 145994 / 1000000 4.5s h4
[ ] 149317 0 0 149317 / 1000000 4.6s h4
[ ] 152721 0 0 152721 / 1000000 4.7s h4
[ ] 156084 0 0 156084 / 1000000 4.8s h4
[ ] 159283 0 0 159283 / 1000000 4.9s h4
[ ] 162620 0 0 162620 / 1000000 5.0s h4
[ ] 166061 0 0 166061 / 1000000 5.1s h4
[ ] 169368 0 0 169368 / 1000000 5.2s h4
[ ] 172756 0 0 172756 / 1000000 5.3s h4
[ ] 176227 0 0 176227 / 1000000 5.4s h4
[ ] 179534 0 0 179534 / 1000000 5.5s h4
[ ] 182918 0 0 182918 / 1000000 5.6s h4
[ ] 186248 0 0 186248 / 1000000 5.7s h4
[ ] 189668 0 0 189668 / 1000000 5.8s h4
[ ] 193114 0 0 193114 / 1000000 5.9s h4
[ ] 196428 0 0 196428 / 1000000 6.0s h4
[ ] 199755 0 0 199755 / 1000000 6.1s h4
[ ] 203130 0 0 203130 / 1000000 6.2s h4
[ ] 206488 0 0 206488 / 1000000 6.3s h4
[ ] 209833 0 0 209833 / 1000000 6.4s h4
[ ] 213220 0 0 213220 / 1000000 6.5s h4
[ ] 216567 0 0 216567 / 1000000 6.6s h4
[ ] 219980 0 0 219980 / 1000000 6.7s h4
[ ] 223333 0 0 223333 / 1000000 6.8s h4
[ ] 226743 0 0 226743 / 1000000 6.9s h4
[ ] 230109 0 0 230109 / 1000000 7.0s h4
[ ] 233434 0 0 233434 / 1000000 7.1s h4
[ ] 236782 0 0 236782 / 1000000 7.2s h4
[ ] 240224 0 0 240224 / 1000000 7.3s h4
[ ] 243611 0 0 243611 / 1000000 7.4s h4
[ ] 246819 0 0 246819 / 1000000 7.5s h4
[ ] 249953 0 0 249953 / 1000000 7.6s h4
[ ] 253285 0 0 253285 / 1000000 7.7s h4
[ ] 256454 0 0 256454 / 1000000 7.8s h4
[ ] 259762 0 0 259762 / 1000000 7.9s h4
[ ] 263032 0 0 263032 / 1000000 8.0s h4
[ ] 266355 0 0 266355 / 1000000 8.1s h4
[ ] 269479 0 0 269479 / 1000000 8.2s h4
[ ] 272732 0 0 272732 / 1000000 8.3s h4
[ ] 276027 0 0 276027 / 1000000 8.4s h4
[ ] 279336 0 0 279336 / 1000000 8.5s h4
[ ] 282674 0 0 282674 / 1000000 8.6s h4
[ ] 286140 0 0 286140 / 1000000 8.7s h4
[ ] 289463 0 0 289463 / 1000000 8.8s h4
[ ] 292890 0 0 292890 / 1000000 8.9s h4
[ ] 296275 0 0 296275 / 1000000 9.0s h4
[ ] 299742 0 0 299742 / 1000000 9.1s h4
[ ] 303122 0 0 303122 / 1000000 9.2s h4
[ ] 306568 0 0 306568 / 1000000 9.3s h4
[ ] 309934 0 0 309934 / 1000000 9.4s h4
[ ] 313330 0 0 313330 / 1000000 9.5s h4
[ ] 316750 0 0 316750 / 1000000 9.6s h4
[ ] 320215 0 0 320215 / 1000000 9.7s h4
[ ] 323538 0 0 323538 / 1000000 9.8s h4
[ ] 326880 0 0 326880 / 1000000 9.9s h4
[ ] 330185 0 0 330185 / 1000000 10.0s h4
[ ] 333529 0 0 333529 / 1000000 10.1s h4
[ ] 336775 0 0 336775 / 1000000 10.2s h4
[ ] 340031 0 0 340031 / 1000000 10.3s h4 (collecting)
[ ] 343271 0 0 343271 / 1000000 10.4s h4
[ ] 346535 0 0 346535 / 1000000 10.5s h4
[ ] 350036 0 0 350036 / 1000000 10.6s h4
[ ] 353530 0 0 353530 / 1000000 10.7s h4
[ ] 356888 0 0 356888 / 1000000 10.8s h4
[ ] 359951 0 0 359951 / 1000000 10.9s h4
[ ] 362986 0 0 362986 / 1000000 11.0s h4
[ ] 366071 0 0 366071 / 1000000 11.1s h4
[ ] 369548 0 0 369548 / 1000000 11.2s h4
[ ] 372846 0 0 372846 / 1000000 11.3s h4
[ ] 376091 0 0 376091 / 1000000 11.4s h4
[ ] 379380 0 0 379380 / 1000000 11.5s h4
[ ] 382757 0 0 382757 / 1000000 11.6s h4
[ ] 386282 0 0 386282 / 1000000 11.7s h4
[ ] 389815 0 0 389815 / 1000000 11.8s h4
[ ] 393356 0 0 393356 / 1000000 11.9s h4
[ ] 396808 0 0 396808 / 1000000 12.0s h4
[ ] 400205 0 0 400205 / 1000000 12.1s h4
[ ] 403543 0 0 403543 / 1000000 12.2s h4
[ ] 406943 0 0 406943 / 1000000 12.3s h4
[ ] 410417 0 0 410417 / 1000000 12.4s h4
[ ] 413789 0 0 413789 / 1000000 12.5s h4
[ ] 417131 0 0 417131 / 1000000 12.6s h4
[ ] 420443 0 0 420443 / 1000000 12.7s h4
[ ] 423745 0 0 423745 / 1000000 12.8s h4
[ ] 427117 0 0 427117 / 1000000 12.9s h4
[ ] 430488 0 0 430488 / 1000000 13.0s h4
[ ] 433884 0 0 433884 / 1000000 13.1s h4
[ ] 437352 0 0 437352 / 1000000 13.2s h4
[ ] 440758 0 0 440758 / 1000000 13.3s h4
[ ] 444224 0 0 444224 / 1000000 13.4s h4
[ ] 447358 0 0 447358 / 1000000 13.5s h4
[ ] 450683 0 0 450683 / 1000000 13.6s h4
[ ] 454022 0 0 454022 / 1000000 13.7s h4
[ ] 457452 0 0 457452 / 1000000 13.8s h4
[ ] 460633 0 0 460633 / 1000000 13.9s h4
[ ] 464010 0 0 464010 / 1000000 14.0s h4
[ ] 467274 0 0 467274 / 1000000 14.1s h4
[ ] 470494 0 0 470494 / 1000000 14.2s h4
[ ] 473801 0 0 473801 / 1000000 14.3s h4
[ ] 477095 0 0 477095 / 1000000 14.4s h4
[ ] 480374 0 0 480374 / 1000000 14.5s h4
[ ] 483717 0 0 483717 / 1000000 14.6s h4
[ ] 487149 0 0 487149 / 1000000 14.7s h4
[ ] 490564 0 0 490564 / 1000000 14.8s h4
[ ] 493828 0 0 493828 / 1000000 14.9s h4
[ ] 497236 0 0 497236 / 1000000 15.0s h4
[ ] 500483 0 0 500483 / 1000000 15.1s h4
[ ] 503502 0 0 503502 / 1000000 15.2s h4
[ ] 506671 0 0 506671 / 1000000 15.3s h4
[ ] 510028 0 0 510028 / 1000000 15.4s h4
[ ] 513267 0 0 513267 / 1000000 15.5s h4
[ ] 516512 0 0 516512 / 1000000 15.6s h4
[ ] 519878 0 0 519878 / 1000000 15.7s h4
[ ] 523297 0 0 523297 / 1000000 15.8s h4
[ ] 526674 0 0 526674 / 1000000 15.9s h4
[ ] 530147 0 0 530147 / 1000000 16.0s h4
[ ] 533501 0 0 533501 / 1000000 16.1s h4
[ ] 536795 0 0 536795 / 1000000 16.2s h4
[ ] 540179 0 0 540179 / 1000000 16.3s h4
[ ] 543494 0 0 543494 / 1000000 16.4s h4
[ ] 546819 0 0 546819 / 1000000 16.5s h4
[ ] 549787 0 0 549787 / 1000000 16.6s h4
[ ] 552989 0 0 552989 / 1000000 16.7s h4
[ ] 556388 0 0 556388 / 1000000 16.8s h4
[ ] 559516 0 0 559516 / 1000000 16.9s h4
[ ] 562550 0 0 562550 / 1000000 17.0s h4
[ ] 565752 0 0 565752 / 1000000 17.1s h4
[ ] 569071 0 0 569071 / 1000000 17.2s h4
[ ] 572392 0 0 572392 / 1000000 17.3s h4
[ ] 575839 0 0 575839 / 1000000 17.4s h4
[ ] 579271 0 0 579271 / 1000000 17.5s h4
[ ] 582654 0 0 582654 / 1000000 17.6s h4
[ ] 585947 0 0 585947 / 1000000 17.7s h4
[ ] 589263 0 0 589263 / 1000000 17.8s h4
[ ] 592569 0 0 592569 / 1000000 17.9s h4
[ ] 595867 0 0 595867 / 1000000 18.0s h4
[ ] 599161 0 0 599161 / 1000000 18.1s h4
[ ] 602453 0 0 602453 / 1000000 18.2s h4
[ ] 605689 0 0 605689 / 1000000 18.3s h4
[ ] 608923 0 0 608923 / 1000000 18.4s h4
[ ] 611923 0 0 611923 / 1000000 18.5s h4
[ ] 615335 0 0 615335 / 1000000 18.6s h4
[ ] 618616 0 0 618616 / 1000000 18.7s h4
[ ] 621999 0 0 621999 / 1000000 18.8s h4
[ ] 625277 0 0 625277 / 1000000 18.9s h4
[ ] 628444 0 0 628444 / 1000000 19.0s h4
[ ] 631633 0 0 631633 / 1000000 19.1s h4
[ ] 634757 0 0 634757 / 1000000 19.2s h4
[ ] 637665 0 0 637665 / 1000000 19.3s h4
[ ] 640546 0 0 640546 / 1000000 19.4s h4
[ ] 643800 0 0 643800 / 1000000 19.5s h4
[ ] 647257 0 0 647257 / 1000000 19.6s h4
[ ] 650597 0 0 650597 / 1000000 19.7s h4
[ ] 653776 0 0 653776 / 1000000 19.8s h4
[ ] 657141 0 0 657141 / 1000000 19.9s h4
[ ] 660313 0 0 660313 / 1000000 20.0s h4
[ ] 663610 0 0 663610 / 1000000 20.1s h4
[ ] 666927 0 0 666927 / 1000000 20.2s h4
[ ] 670359 0 0 670359 / 1000000 20.3s h4 (collecting)
[ ] 673655 0 0 673655 / 1000000 20.4s h4
[ ] 676997 0 0 676997 / 1000000 20.5s h4
[ ] 680253 0 0 680253 / 1000000 20.6s h4
[ ] 683505 0 0 683505 / 1000000 20.7s h4
[ ] 686897 0 0 686897 / 1000000 20.8s h4
[ ] 689935 0 0 689935 / 1000000 20.9s h4
[ ] 692999 0 0 692999 / 1000000 21.0s h4
[ ] 696185 0 0 696185 / 1000000 21.1s h4
[ ] 699387 0 0 699387 / 1000000 21.2s h4
[ ] 702479 0 0 702479 / 1000000 21.3s h4
[ ] 705714 0 0 705714 / 1000000 21.4s h4
[ ] 709111 0 0 709111 / 1000000 21.5s h4
[ ] 712451 0 0 712451 / 1000000 21.6s h4
[ ] 715581 0 0 715581 / 1000000 21.7s h4
[ ] 718877 0 0 718877 / 1000000 21.8s h4
[ ] 722154 0 0 722154 / 1000000 21.9s h4
[ ] 725475 0 0 725475 / 1000000 22.0s h4
[ ] 728898 0 0 728898 / 1000000 22.1s h4
[ ] 732293 0 0 732293 / 1000000 22.2s h4
[ ] 735570 0 0 735570 / 1000000 22.3s h4
[ ] 738934 0 0 738934 / 1000000 22.4s h4
[ ] 742278 0 0 742278 / 1000000 22.5s h4
[ ] 745650 0 0 745650 / 1000000 22.6s h4
[ ] 748919 0 0 748919 / 1000000 22.7s h4
[ ] 752164 0 0 752164 / 1000000 22.8s h4
[ ] 755376 0 0 755376 / 1000000 22.9s h4
[ ] 758645 0 0 758645 / 1000000 23.0s h4
[ ] 761976 0 0 761976 / 1000000 23.1s h4
[ ] 765291 0 0 765291 / 1000000 23.2s h4
[ ] 768678 0 0 768678 / 1000000 23.3s h4
[ ] 772064 0 0 772064 / 1000000 23.4s h4
[ ] 775396 0 0 775396 / 1000000 23.5s h4
[ ] 778679 0 0 778679 / 1000000 23.6s h4
[ ] 782073 0 0 782073 / 1000000 23.7s h4
[ ] 785477 0 0 785477 / 1000000 23.8s h4
[ ] 788685 0 0 788685 / 1000000 23.9s h4
[ ] 791814 0 0 791814 / 1000000 24.0s h4
[ ] 795203 0 0 795203 / 1000000 24.1s h4
[ ] 798478 0 0 798478 / 1000000 24.2s h4
[ ] 801785 0 0 801785 / 1000000 24.3s h4
[ ] 805160 0 0 805160 / 1000000 24.4s h4
[ ] 808451 0 0 808451 / 1000000 24.5s h4
[ ] 811711 0 0 811711 / 1000000 24.6s h4
[ ] 815048 0 0 815048 / 1000000 24.7s h4 (collecting)
[ ] 818314 0 0 818314 / 1000000 24.8s h4
[ ] 821638 0 0 821638 / 1000000 24.9s h4
[ ] 824937 0 0 824937 / 1000000 25.0s h4
[ ] 828349 0 0 828349 / 1000000 25.1s h4
[ ] 831690 0 0 831690 / 1000000 25.2s h4
[ ] 835107 0 0 835107 / 1000000 25.3s h4
[ ] 838383 0 0 838383 / 1000000 25.4s h4
[ ] 841719 0 0 841719 / 1000000 25.5s h4
[ ] 845066 0 0 845066 / 1000000 25.6s h4
[ ] 848530 0 0 848530 / 1000000 25.7s h4
[ ] 851928 0 0 851928 / 1000000 25.8s h4
[ ] 855201 0 0 855201 / 1000000 25.9s h4
[ ] 858496 0 0 858496 / 1000000 26.0s h4
[ ] 861752 0 0 861752 / 1000000 26.1s h4
[ ] 865018 0 0 865018 / 1000000 26.2s h4
[ ] 868453 0 0 868453 / 1000000 26.3s h4
[ ] 871708 0 0 871708 / 1000000 26.4s h4 (collecting)
[ ] 875078 0 0 875078 / 1000000 26.5s h4
[ ] 878360 0 0 878360 / 1000000 26.6s h4
[ ] 881661 0 0 881661 / 1000000 26.7s h4
[ ] 884964 0 0 884964 / 1000000 26.8s h4
[ ] 888320 0 0 888320 / 1000000 26.9s h4
[ ] 891513 0 0 891513 / 1000000 27.0s h4
[ ] 894741 0 0 894741 / 1000000 27.1s h4
[ ] 897990 0 0 897990 / 1000000 27.2s h4
[ ] 901235 0 0 901235 / 1000000 27.3s h4
[ ] 904503 0 0 904503 / 1000000 27.4s h4
[ ] 907845 0 0 907845 / 1000000 27.5s h4
[ ] 911236 0 0 911236 / 1000000 27.6s h4
[ ] 914607 0 0 914607 / 1000000 27.7s h4
[ ] 918075 0 0 918075 / 1000000 27.8s h4
[ ] 921331 0 0 921331 / 1000000 27.9s h4
[ ] 924719 0 0 924719 / 1000000 28.0s h4
[ ] 928059 0 0 928059 / 1000000 28.1s h4
[ ] 931356 0 0 931356 / 1000000 28.2s h4
[ ] 934532 0 0 934532 / 1000000 28.3s h4
[ ] 937752 0 0 937752 / 1000000 28.4s h4
[ ] 941031 0 0 941031 / 1000000 28.5s h4
[ ] 944349 0 0 944349 / 1000000 28.6s h4
[ ] 947754 0 0 947754 / 1000000 28.7s h4
[ ] 951234 0 0 951234 / 1000000 28.8s h4
[ ] 954702 0 0 954702 / 1000000 28.9s h4
[ ] 958010 0 0 958010 / 1000000 29.0s h4
[ ] 961251 0 0 961251 / 1000000 29.1s h4
[ ] 964530 0 0 964530 / 1000000 29.2s h4
[ ] 967731 0 0 967731 / 1000000 29.3s h4
[ ] 970741 0 0 970741 / 1000000 29.4s h4 (collecting)
[ ] 974104 0 0 974104 / 1000000 29.5s h4
[ ] 977423 0 0 977423 / 1000000 29.6s h4
[ ] 980886 0 0 980886 / 1000000 29.7s h4
[ ] 984255 0 0 984255 / 1000000 29.8s h4
[ ] 987636 0 0 987636 / 1000000 29.9s h4
[ ] 990930 0 0 990930 / 1000000 30.0s h4
[ ] 994278 0 0 994278 / 1000000 30.1s h4
[ ] 997670 0 0 997670 / 1000000 30.2s h4
[✓] 1000000 0 0 1000000 / 1000000 30.3s h4
- ================================================================================
- success (ran 6 tests)
-> compiled dates_calc.0.0.6
-> removed dates_calc.0.0.6
-> installed dates_calc.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 09:08.34 ---> saved as "a27e2c9de836a39b6d037e2a1aeb4f6040fc5b214fe99d49476d54deacd843a6"
Job succeeded
2026-03-02 09:08.58: Job succeeded