- github
- ocaml
- opam-repository
- 3db8b1
- distributions,alpine-3.21-ocaml-4.14,dates_calc.0.0.8,tests
(not at the head of any monitored branch or PR)
2025-04-23 13:25.17: New job: test dates_calc.0.0.8, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/27810/head (3db8b1aca8da385f3ef5daf7c993e26b3a51d355)
on alpine-3.21-ocaml-4.14/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/27810/head" && git reset --hard 3db8b1ac
git fetch origin master
git merge --no-edit 8106bcf57fc33218275bbf0d02e725f4e9fcd0f6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.21-ocaml-4.14@sha256:49ca0513dacedfdcf018aceff8fb417051591ee249f96e84f4efad056914480e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 dates_calc.0.0.8 0.0.8
RUN opam reinstall dates_calc.0.0.8; \
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 "\"alpine-3.21\""; 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.8' && 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.8) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.8; \
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 "\"alpine-3.21\""; 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.8' && 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 .
2025-04-23 13:25.17: Using cache hint "ocaml/opam:alpine-3.21-ocaml-4.14@sha256:49ca0513dacedfdcf018aceff8fb417051591ee249f96e84f4efad056914480e-dates_calc.0.0.8-3db8b1aca8da385f3ef5daf7c993e26b3a51d355"
2025-04-23 13:25.17: Using OBuilder spec:
((from ocaml/opam:alpine-3.21-ocaml-4.14@sha256:49ca0513dacedfdcf018aceff8fb417051591ee249f96e84f4efad056914480e)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 dates_calc.0.0.8 0.0.8"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dates_calc.0.0.8;\
\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 \"\\\"alpine-3.21\\\"\"; 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.8' && 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.8) || true"))
(run (shell "opam reinstall --with-test --verbose dates_calc.0.0.8;\
\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 \"\\\"alpine-3.21\\\"\"; 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.8' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-04-23 13:25.17: Waiting for resource in pool OCluster
2025-04-23 13:25.18: Waiting for worker…
2025-04-23 13:26.19: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files: 98% (22531/22940)
Updating files: 99% (22711/22940)
Updating files: 100% (22940/22940)
Updating files: 100% (22940/22940), done.
HEAD is now at 8106bcf57f Merge pull request #27808 from Octachron/Ocaml_5.4.0_branching
Updating 8106bcf57f..3db8b1aca8
Fast-forward
packages/dates_calc/dates_calc.0.0.8/opam | 49 +++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
create mode 100644 packages/dates_calc/dates_calc.0.0.8/opam
(from ocaml/opam:alpine-3.21-ocaml-4.14@sha256:49ca0513dacedfdcf018aceff8fb417051591ee249f96e84f4efad056914480e)
2025-04-23 13:28.58 ---> saved as "21df1d7f50bbeabf3e33d101a319f3b53e0d38dd7d868fc42cb0ca84bf760632"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-04-23 13:28.59 ---> saved as "de122214a1f40ebc8b19a7c937dcc2f21089739f67e68a22fefebeece6f64547"
/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 development 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
2025-04-23 13:29.34 ---> saved as "52a3a903315ed67352a3fc0d98d80de3e7b7ef5ba56fef89f6f2c00dbf584e10"
/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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=alpine os-version=3.21.3
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-04-23 13:29.35 ---> saved as "45eb3071afa68d750ce8f708f9f95336fd739577b26e02eec135f0c58d3c5b85"
/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/"))
2025-04-23 13:30.08 ---> saved as "dcb1f58330b4f5c350aa9c8f47f4520d8beaf7b82be78c4bbdf4fee6fedfe267"
/home/opam: (copy (src .) (dst opam-repository/))
2025-04-23 13:31.11 ---> saved as "3f3a8a09ad2cd4d0a585d43442b531ad8aad80601de5ba6f49d1c932c1e69868"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-23 13:31.45 ---> saved as "341d7217336a1e40a6c0014fb87c1ec6d4251d3f6007770c47262eba3b6806c0"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.21/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.21.3-360-gc62b91e1455 [https://dl-cdn.alpinelinux.org/alpine/v3.21/main]
- v3.21.3-363-gc596ff6fae6 [https://dl-cdn.alpinelinux.org/alpine/v3.21/community]
- v20250108-6368-g847e4685088 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20250108-6371-gc4ca51ee438 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20250108-6356-ga19b508bc95 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 57905 distinct packages available
2025-04-23 13:31.48 ---> saved as "cb50ee1df50d928e42aab1bbd7385fac8af31895e7cc0bdfb43a6fca2c59468e"
/home/opam: (run (shell "opam pin add -k version -yn dates_calc.0.0.8 0.0.8"))
dates_calc is now pinned to version 0.0.8
2025-04-23 13:31.49 ---> saved as "fd4d9e7cdb86e29f7c25d2a34195103b3317fc867796224b79c787c805a1052f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dates_calc.0.0.8;\
\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 \"\\\"alpine-3.21\\\"\"; 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.8' && 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.8 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 2 packages
- install dates_calc 0.0.8 (pinned)
- install dune 3.18.1 [required by dates_calc]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.8 (cached)
-> retrieved dune.3.18.1 (cached)
-> installed dune.3.18.1
-> installed dates_calc.0.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-23 13:32.21 ---> saved as "0e2ca5e243b895143ec579e480cbdb0234585dfbab79008693c5df49b252afec"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dates_calc.0.0.8) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile dates_calc 0.0.8 (pinned)
=== install 16 packages
- install alcotest 1.9.0 [required by dates_calc]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 1.3.0 [required by alcotest]
- install fmt 0.10.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.25 [required by dates_calc]
- install qcheck-core 0.25 [required by qcheck]
- install qcheck-ounit 0.25 [required by qcheck]
- install re 1.12.0 [required by alcotest]
- install seq base [required by re]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.0.8 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0 (https://github.com/mirage/alcotest/releases/download/1.9.0/alcotest-1.9.0.tbz)
-> retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved cmdliner.1.3.0 (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> retrieved dates_calc.0.0.8 (https://github.com/CatalaLang/dates-calc/archive/refs/tags/0.0.8.tar.gz)
-> retrieved fmt.0.10.0 (https://erratique.ch/software/fmt/releases/fmt-0.10.0.tbz)
-> retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved ocamlbuild.0.16.1 (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz)
-> retrieved ocamlfind.1.9.8 (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> retrieved ounit2.2.2.7 (https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved qcheck.0.25, qcheck-core.0.25, qcheck-ounit.0.25 (https://github.com/c-cube/qcheck/archive/v0.25.tar.gz)
-> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> installed cmdliner.1.3.0
-> installed qcheck-core.0.25
-> installed re.1.12.0
-> installed stdlib-shims.0.3.0
-> retrieved topkg.1.0.8 (https://erratique.ch/software/topkg/releases/topkg-1.0.8.tbz)
-> retrieved uutf.1.0.4 (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> installed ounit2.2.2.7
-> installed ocamlfind.1.9.8
-> installed qcheck-ounit.0.25
-> installed qcheck.0.25
-> removed dates_calc.0.0.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.8
-> installed uutf.1.0.4
-> installed fmt.0.10.0
-> installed astring.0.8.5
-> installed alcotest.1.9.0
-> installed dates_calc.0.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-23 13:33.26 ---> saved as "e1d1e8bd76baf54a03d6e0994ef99979e1c68a6e649871f231e0ee23d21de509"
/home/opam: (run (shell "opam reinstall --with-test --verbose dates_calc.0.0.8;\
\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 \"\\\"alpine-3.21\\\"\"; 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.8' && 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.8 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [dates_calc.0.0.8: extract]
-> retrieved dates_calc.0.0.8 (cached)
Processing 2/4: [dates_calc: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dates_calc" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dates_calc.0.0.8)
- (cd _build/default && /usr/bin/python3 -m unittest test.unit)
- ...
- ----------------------------------------------------------------------
- Ran 3 tests in 0.003s
-
- OK
- (cd _build/default/test && ./unit.c.exe)
- === C Tests PASSED ===
- Tests passed: 32 / 32
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `6CA6GQ3Q'.
-
- [OK] add_dates 0 exact.
- [OK] add_dates 1 ambig.
- [OK] first_last_day_of_month 0 all.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/dates_calc.0.0.8/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.001s. 3 tests run.
- (cd _build/default/test && ./prop.exe)
-
random seed: 175507665
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s anon_test_1
[ ] 0 0 0 0 / 1000 0.0s anon_test_1 (generating)
[ ] 521 0 0 521 / 1000 0.1s anon_test_1
[✓] 1000 0 0 1000 / 1000 0.2s anon_test_1
-
[ ] 0 0 0 0 / 1000 0.0s anon_test_2
[ ] 1 0 0 1 / 1000 0.0s anon_test_2
[ ] 29 0 0 29 / 1000 0.1s anon_test_2
[ ] 54 0 0 54 / 1000 0.2s anon_test_2
[ ] 92 0 0 92 / 1000 0.3s anon_test_2
[ ] 116 0 0 116 / 1000 0.4s anon_test_2
[ ] 140 0 0 140 / 1000 0.5s anon_test_2
[ ] 165 0 0 165 / 1000 0.6s anon_test_2
[ ] 190 0 0 190 / 1000 0.7s anon_test_2
[ ] 210 0 0 210 / 1000 0.8s anon_test_2
[ ] 242 0 0 242 / 1000 0.9s anon_test_2
[ ] 275 0 0 275 / 1000 1.0s anon_test_2
[ ] 298 0 0 298 / 1000 1.1s anon_test_2
[ ] 322 0 0 322 / 1000 1.2s anon_test_2
[ ] 349 0 0 349 / 1000 1.3s anon_test_2
[ ] 381 0 0 381 / 1000 1.5s anon_test_2
[ ] 409 0 0 409 / 1000 1.6s anon_test_2
[ ] 438 0 0 438 / 1000 1.7s anon_test_2
[ ] 476 0 0 476 / 1000 1.8s anon_test_2
[ ] 507 0 0 507 / 1000 1.9s anon_test_2
[ ] 539 0 0 539 / 1000 2.0s anon_test_2
[ ] 564 0 0 564 / 1000 2.1s anon_test_2
[ ] 599 0 0 599 / 1000 2.2s anon_test_2
[ ] 625 0 0 625 / 1000 2.3s anon_test_2
[ ] 655 0 0 655 / 1000 2.4s anon_test_2
[ ] 684 0 0 684 / 1000 2.5s anon_test_2
[ ] 709 0 0 709 / 1000 2.6s anon_test_2
[ ] 734 0 0 734 / 1000 2.7s anon_test_2
[ ] 766 0 0 766 / 1000 2.8s anon_test_2
[ ] 800 0 0 800 / 1000 2.9s anon_test_2
[ ] 827 0 0 827 / 1000 3.0s anon_test_2
[ ] 862 0 0 862 / 1000 3.1s anon_test_2
[ ] 893 0 0 893 / 1000 3.2s anon_test_2
[ ] 920 0 0 920 / 1000 3.3s anon_test_2
[ ] 955 0 0 955 / 1000 3.4s anon_test_2
[ ] 990 0 0 990 / 1000 3.5s anon_test_2
[✓] 1000 0 0 1000 / 1000 3.6s anon_test_2
-
[ ] 0 0 0 0 / 1000000 0.0s h1
[ ] 15826 0 0 15826 / 1000000 0.1s h1
[ ] 33751 0 0 33751 / 1000000 0.2s h1
[ ] 51241 0 0 51241 / 1000000 0.3s h1
[ ] 67195 0 0 67195 / 1000000 0.4s h1
[ ] 84514 0 0 84514 / 1000000 0.5s h1
[ ] 101913 0 0 101913 / 1000000 0.6s h1
[ ] 119744 0 0 119744 / 1000000 0.7s h1
[ ] 138293 0 0 138293 / 1000000 0.8s h1
[ ] 156400 0 0 156400 / 1000000 0.9s h1
[ ] 174453 0 0 174453 / 1000000 1.0s h1
[ ] 192396 0 0 192396 / 1000000 1.1s h1
[ ] 210530 0 0 210530 / 1000000 1.2s h1
[ ] 228682 0 0 228682 / 1000000 1.3s h1
[ ] 246353 0 0 246353 / 1000000 1.4s h1
[ ] 264295 0 0 264295 / 1000000 1.5s h1
[ ] 282028 0 0 282028 / 1000000 1.6s h1
[ ] 299796 0 0 299796 / 1000000 1.7s h1
[ ] 318247 0 0 318247 / 1000000 1.8s h1
[ ] 336862 0 0 336862 / 1000000 1.9s h1
[ ] 354837 0 0 354837 / 1000000 2.0s h1
[ ] 372786 0 0 372786 / 1000000 2.1s h1 (generating)
[ ] 390710 0 0 390710 / 1000000 2.2s h1 ( testing)
[ ] 408696 0 0 408696 / 1000000 2.3s h1
[ ] 426690 0 0 426690 / 1000000 2.4s h1
[ ] 444711 0 0 444711 / 1000000 2.5s h1
[ ] 462656 0 0 462656 / 1000000 2.6s h1
[ ] 480563 0 0 480563 / 1000000 2.7s h1
[ ] 498175 0 0 498175 / 1000000 2.8s h1
[ ] 515921 0 0 515921 / 1000000 2.9s h1
[ ] 534081 0 0 534081 / 1000000 3.0s h1
[ ] 551934 0 0 551934 / 1000000 3.1s h1
[ ] 569836 0 0 569836 / 1000000 3.2s h1
[ ] 588006 0 0 588006 / 1000000 3.3s h1
[ ] 606124 0 0 606124 / 1000000 3.4s h1
[ ] 624211 0 0 624211 / 1000000 3.5s h1
[ ] 641949 0 0 641949 / 1000000 3.6s h1
[ ] 659937 0 0 659937 / 1000000 3.7s h1
[ ] 678157 0 0 678157 / 1000000 3.8s h1
[ ] 696248 0 0 696248 / 1000000 3.9s h1
[ ] 714481 0 0 714481 / 1000000 4.0s h1
[ ] 732480 0 0 732480 / 1000000 4.1s h1
[ ] 750516 0 0 750516 / 1000000 4.2s h1
[ ] 768505 0 0 768505 / 1000000 4.3s h1
[ ] 786555 0 0 786555 / 1000000 4.4s h1
[ ] 804581 0 0 804581 / 1000000 4.5s h1
[ ] 822544 0 0 822544 / 1000000 4.6s h1
[ ] 840481 0 0 840481 / 1000000 4.7s h1
[ ] 858545 0 0 858545 / 1000000 4.8s h1
[ ] 875782 0 0 875782 / 1000000 4.9s h1
[ ] 893450 0 0 893450 / 1000000 5.0s h1
[ ] 910803 0 0 910803 / 1000000 5.1s h1
[ ] 928773 0 0 928773 / 1000000 5.2s h1
[ ] 946668 0 0 946668 / 1000000 5.3s h1
[ ] 964728 0 0 964728 / 1000000 5.4s h1
[ ] 982591 0 0 982591 / 1000000 5.5s h1
[✓] 1000000 0 0 1000000 / 1000000 5.6s h1
-
[ ] 0 0 0 0 / 1000000 0.0s h2
[ ] 311 0 0 311 / 1000000 0.0s h2
[ ] 9358 0 0 9358 / 1000000 0.1s h2
[ ] 18445 0 0 18445 / 1000000 0.2s h2
[ ] 27485 0 0 27485 / 1000000 0.3s h2
[ ] 36636 0 0 36636 / 1000000 0.4s h2
[ ] 45869 0 0 45869 / 1000000 0.5s h2
[ ] 55062 0 0 55062 / 1000000 0.6s h2
[ ] 64295 0 0 64295 / 1000000 0.7s h2
[ ] 73461 0 0 73461 / 1000000 0.8s h2
[ ] 82273 0 0 82273 / 1000000 0.9s h2
[ ] 91205 0 0 91205 / 1000000 1.0s h2
[ ] 100314 0 0 100314 / 1000000 1.1s h2
[ ] 109289 0 0 109289 / 1000000 1.2s h2
[ ] 118471 0 0 118471 / 1000000 1.3s h2
[ ] 126978 0 0 126978 / 1000000 1.4s h2
[ ] 135749 0 0 135749 / 1000000 1.5s h2
[ ] 144710 0 0 144710 / 1000000 1.6s h2
[ ] 153480 0 0 153480 / 1000000 1.7s h2
[ ] 162584 0 0 162584 / 1000000 1.8s h2
[ ] 171855 0 0 171855 / 1000000 1.9s h2
[ ] 181155 0 0 181155 / 1000000 2.0s h2
[ ] 190342 0 0 190342 / 1000000 2.1s h2
[ ] 199548 0 0 199548 / 1000000 2.2s h2
[ ] 208761 0 0 208761 / 1000000 2.3s h2
[ ] 217932 0 0 217932 / 1000000 2.4s h2
[ ] 227063 0 0 227063 / 1000000 2.5s h2
[ ] 236297 0 0 236297 / 1000000 2.6s h2
[ ] 245489 0 0 245489 / 1000000 2.7s h2
[ ] 254789 0 0 254789 / 1000000 2.8s h2
[ ] 263945 0 0 263945 / 1000000 2.9s h2
[ ] 273217 0 0 273217 / 1000000 3.0s h2
[ ] 282466 0 0 282466 / 1000000 3.1s h2
[ ] 291606 0 0 291606 / 1000000 3.2s h2
[ ] 299931 0 0 299931 / 1000000 3.3s h2
[ ] 309026 0 0 309026 / 1000000 3.4s h2
[ ] 318148 0 0 318148 / 1000000 3.5s h2
[ ] 327331 0 0 327331 / 1000000 3.6s h2
[ ] 336497 0 0 336497 / 1000000 3.7s h2
[ ] 345790 0 0 345790 / 1000000 3.8s h2
[ ] 354832 0 0 354832 / 1000000 3.9s h2
[ ] 364160 0 0 364160 / 1000000 4.0s h2
[ ] 373518 0 0 373518 / 1000000 4.1s h2
[ ] 382793 0 0 382793 / 1000000 4.2s h2 (collecting)
[ ] 392152 0 0 392152 / 1000000 4.3s h2
[ ] 401356 0 0 401356 / 1000000 4.4s h2
[ ] 410351 0 0 410351 / 1000000 4.5s h2
[ ] 419401 0 0 419401 / 1000000 4.6s h2
[ ] 428381 0 0 428381 / 1000000 4.7s h2 (collecting)
[ ] 437631 0 0 437631 / 1000000 4.8s h2
[ ] 447043 0 0 447043 / 1000000 4.9s h2
[ ] 456104 0 0 456104 / 1000000 5.0s h2
[ ] 465295 0 0 465295 / 1000000 5.1s h2
[ ] 474403 0 0 474403 / 1000000 5.2s h2
[ ] 483592 0 0 483592 / 1000000 5.3s h2
[ ] 492765 0 0 492765 / 1000000 5.4s h2
[ ] 501920 0 0 501920 / 1000000 5.5s h2
[ ] 510939 0 0 510939 / 1000000 5.6s h2
[ ] 520197 0 0 520197 / 1000000 5.7s h2
[ ] 529429 0 0 529429 / 1000000 5.8s h2
[ ] 538724 0 0 538724 / 1000000 5.9s h2
[ ] 547864 0 0 547864 / 1000000 6.0s h2
[ ] 557252 0 0 557252 / 1000000 6.1s h2
[ ] 566126 0 0 566126 / 1000000 6.2s h2
[ ] 575731 0 0 575731 / 1000000 6.3s h2
[ ] 584844 0 0 584844 / 1000000 6.4s h2
[ ] 593981 0 0 593981 / 1000000 6.5s h2
[ ] 603345 0 0 603345 / 1000000 6.6s h2
[ ] 612582 0 0 612582 / 1000000 6.7s h2
[ ] 621863 0 0 621863 / 1000000 6.8s h2
[ ] 631082 0 0 631082 / 1000000 6.9s h2
[ ] 640231 0 0 640231 / 1000000 7.0s h2
[ ] 649318 0 0 649318 / 1000000 7.1s h2
[ ] 658449 0 0 658449 / 1000000 7.2s h2
[ ] 667760 0 0 667760 / 1000000 7.3s h2
[ ] 677074 0 0 677074 / 1000000 7.4s h2
[ ] 686204 0 0 686204 / 1000000 7.5s h2
[ ] 695282 0 0 695282 / 1000000 7.6s h2
[ ] 704353 0 0 704353 / 1000000 7.7s h2
[ ] 713428 0 0 713428 / 1000000 7.8s h2
[ ] 723248 0 0 723248 / 1000000 7.9s h2
[ ] 732613 0 0 732613 / 1000000 8.0s h2
[ ] 742196 0 0 742196 / 1000000 8.1s h2
[ ] 751385 0 0 751385 / 1000000 8.2s h2
[ ] 760600 0 0 760600 / 1000000 8.3s h2
[ ] 769843 0 0 769843 / 1000000 8.4s h2
[ ] 778991 0 0 778991 / 1000000 8.5s h2
[ ] 788436 0 0 788436 / 1000000 8.6s h2
[ ] 798004 0 0 798004 / 1000000 8.7s h2
[ ] 807657 0 0 807657 / 1000000 8.8s h2
[ ] 817298 0 0 817298 / 1000000 8.9s h2
[ ] 826193 0 0 826193 / 1000000 9.0s h2
[ ] 835168 0 0 835168 / 1000000 9.1s h2
[ ] 843389 0 0 843389 / 1000000 9.2s h2
[ ] 852473 0 0 852473 / 1000000 9.3s h2
[ ] 861689 0 0 861689 / 1000000 9.4s h2
[ ] 870892 0 0 870892 / 1000000 9.5s h2
[ ] 880122 0 0 880122 / 1000000 9.6s h2
[ ] 889318 0 0 889318 / 1000000 9.7s h2
[ ] 898128 0 0 898128 / 1000000 9.8s h2
[ ] 907896 0 0 907896 / 1000000 9.9s h2
[ ] 916999 0 0 916999 / 1000000 10.0s h2
[ ] 926219 0 0 926219 / 1000000 10.1s h2
[ ] 935414 0 0 935414 / 1000000 10.2s h2
[ ] 944623 0 0 944623 / 1000000 10.3s h2
[ ] 953776 0 0 953776 / 1000000 10.4s h2
[ ] 962935 0 0 962935 / 1000000 10.5s h2
[ ] 972249 0 0 972249 / 1000000 10.6s h2
[ ] 981458 0 0 981458 / 1000000 10.7s h2
[ ] 990610 0 0 990610 / 1000000 10.8s h2
[ ] 999689 0 0 999689 / 1000000 10.9s h2
[✓] 1000000 0 0 1000000 / 1000000 10.9s h2
-
[ ] 0 0 0 0 / 1000000 0.0s h3
[ ] 17308 0 0 17308 / 1000000 0.1s h3
[ ] 35232 0 0 35232 / 1000000 0.2s h3
[ ] 51758 0 0 51758 / 1000000 0.3s h3
[ ] 69774 0 0 69774 / 1000000 0.4s h3
[ ] 87846 0 0 87846 / 1000000 0.5s h3
[ ] 106236 0 0 106236 / 1000000 0.6s h3
[ ] 123927 0 0 123927 / 1000000 0.7s h3
[ ] 141912 0 0 141912 / 1000000 0.8s h3 (collecting)
[ ] 160992 0 0 160992 / 1000000 0.9s h3
[ ] 179107 0 0 179107 / 1000000 1.0s h3
[ ] 197164 0 0 197164 / 1000000 1.1s h3
[ ] 215077 0 0 215077 / 1000000 1.2s h3
[ ] 233050 0 0 233050 / 1000000 1.3s h3
[ ] 251095 0 0 251095 / 1000000 1.4s h3
[ ] 268932 0 0 268932 / 1000000 1.5s h3
[ ] 286180 0 0 286180 / 1000000 1.6s h3
[ ] 303321 0 0 303321 / 1000000 1.7s h3
[ ] 321351 0 0 321351 / 1000000 1.8s h3
[ ] 339957 0 0 339957 / 1000000 1.9s h3
[ ] 357571 0 0 357571 / 1000000 2.0s h3
[ ] 375357 0 0 375357 / 1000000 2.1s h3
[ ] 393197 0 0 393197 / 1000000 2.2s h3
[ ] 411184 0 0 411184 / 1000000 2.3s h3
[ ] 429124 0 0 429124 / 1000000 2.4s h3
[ ] 447489 0 0 447489 / 1000000 2.5s h3
[ ] 465405 0 0 465405 / 1000000 2.6s h3
[ ] 483193 0 0 483193 / 1000000 2.7s h3
[ ] 500897 0 0 500897 / 1000000 2.8s h3
[ ] 519195 0 0 519195 / 1000000 2.9s h3
[ ] 537510 0 0 537510 / 1000000 3.0s h3
[ ] 555412 0 0 555412 / 1000000 3.1s h3
[ ] 573348 0 0 573348 / 1000000 3.2s h3
[ ] 591966 0 0 591966 / 1000000 3.3s h3
[ ] 610304 0 0 610304 / 1000000 3.4s h3
[ ] 629123 0 0 629123 / 1000000 3.5s h3
[ ] 647143 0 0 647143 / 1000000 3.6s h3
[ ] 664271 0 0 664271 / 1000000 3.7s h3
[ ] 682514 0 0 682514 / 1000000 3.8s h3 (collecting)
[ ] 700814 0 0 700814 / 1000000 3.9s h3
[ ] 718929 0 0 718929 / 1000000 4.0s h3
[ ] 737293 0 0 737293 / 1000000 4.1s h3
[ ] 754999 0 0 754999 / 1000000 4.2s h3
[ ] 772914 0 0 772914 / 1000000 4.3s h3
[ ] 791083 0 0 791083 / 1000000 4.4s h3
[ ] 809276 0 0 809276 / 1000000 4.5s h3
[ ] 827148 0 0 827148 / 1000000 4.6s h3
[ ] 845254 0 0 845254 / 1000000 4.7s h3
[ ] 863757 0 0 863757 / 1000000 4.8s h3
[ ] 882023 0 0 882023 / 1000000 4.9s h3
[ ] 900603 0 0 900603 / 1000000 5.0s h3
[ ] 919205 0 0 919205 / 1000000 5.1s h3
[ ] 937486 0 0 937486 / 1000000 5.2s h3
[ ] 954744 0 0 954744 / 1000000 5.3s h3
[ ] 971869 0 0 971869 / 1000000 5.4s h3
[ ] 990219 0 0 990219 / 1000000 5.5s h3
[✓] 1000000 0 0 1000000 / 1000000 5.6s h3
-
[ ] 0 0 0 0 / 1000000 0.0s h4
[ ] 2838 0 0 2838 / 1000000 0.0s h4
[ ] 9092 0 0 9092 / 1000000 0.1s h4
[ ] 15080 0 0 15080 / 1000000 0.2s h4
[ ] 20855 0 0 20855 / 1000000 0.3s h4
[ ] 27192 0 0 27192 / 1000000 0.4s h4
[ ] 33411 0 0 33411 / 1000000 0.5s h4
[ ] 39663 0 0 39663 / 1000000 0.6s h4
[ ] 45818 0 0 45818 / 1000000 0.7s h4
[ ] 52001 0 0 52001 / 1000000 0.8s h4
[ ] 58372 0 0 58372 / 1000000 0.9s h4
[ ] 64660 0 0 64660 / 1000000 1.0s h4
[ ] 70989 0 0 70989 / 1000000 1.1s h4
[ ] 77395 0 0 77395 / 1000000 1.2s h4
[ ] 83028 0 0 83028 / 1000000 1.3s h4
[ ] 88510 0 0 88510 / 1000000 1.4s h4 (collecting)
[ ] 94454 0 0 94454 / 1000000 1.5s h4
[ ] 100706 0 0 100706 / 1000000 1.6s h4
[ ] 107016 0 0 107016 / 1000000 1.7s h4
[ ] 113370 0 0 113370 / 1000000 1.8s h4
[ ] 119789 0 0 119789 / 1000000 1.9s h4
[ ] 126088 0 0 126088 / 1000000 2.0s h4
[ ] 132360 0 0 132360 / 1000000 2.1s h4
[ ] 138657 0 0 138657 / 1000000 2.2s h4 (collecting)
[ ] 144891 0 0 144891 / 1000000 2.3s h4
[ ] 151110 0 0 151110 / 1000000 2.4s h4
[ ] 157445 0 0 157445 / 1000000 2.5s h4
[ ] 163746 0 0 163746 / 1000000 2.6s h4
[ ] 170000 0 0 170000 / 1000000 2.7s h4
[ ] 176315 0 0 176315 / 1000000 2.8s h4
[ ] 182644 0 0 182644 / 1000000 2.9s h4
[ ] 188960 0 0 188960 / 1000000 3.0s h4
[ ] 195242 0 0 195242 / 1000000 3.1s h4
[ ] 201521 0 0 201521 / 1000000 3.2s h4
[ ] 207837 0 0 207837 / 1000000 3.3s h4
[ ] 214120 0 0 214120 / 1000000 3.4s h4
[ ] 220474 0 0 220474 / 1000000 3.5s h4
[ ] 226708 0 0 226708 / 1000000 3.6s h4
[ ] 233086 0 0 233086 / 1000000 3.7s h4
[ ] 239529 0 0 239529 / 1000000 3.8s h4
[ ] 245995 0 0 245995 / 1000000 3.9s h4
[ ] 252339 0 0 252339 / 1000000 4.0s h4
[ ] 258780 0 0 258780 / 1000000 4.1s h4
[ ] 265113 0 0 265113 / 1000000 4.2s h4
[ ] 271376 0 0 271376 / 1000000 4.3s h4
[ ] 277586 0 0 277586 / 1000000 4.4s h4
[ ] 283758 0 0 283758 / 1000000 4.5s h4
[ ] 289884 0 0 289884 / 1000000 4.6s h4
[ ] 296194 0 0 296194 / 1000000 4.7s h4
[ ] 302494 0 0 302494 / 1000000 4.8s h4
[ ] 308813 0 0 308813 / 1000000 4.9s h4
[ ] 314992 0 0 314992 / 1000000 5.0s h4
[ ] 321002 0 0 321002 / 1000000 5.1s h4
[ ] 327185 0 0 327185 / 1000000 5.2s h4
[ ] 333575 0 0 333575 / 1000000 5.3s h4
[ ] 339874 0 0 339874 / 1000000 5.4s h4
[ ] 346202 0 0 346202 / 1000000 5.5s h4
[ ] 352509 0 0 352509 / 1000000 5.6s h4
[ ] 358797 0 0 358797 / 1000000 5.7s h4
[ ] 365118 0 0 365118 / 1000000 5.8s h4
[ ] 371473 0 0 371473 / 1000000 5.9s h4
[ ] 377692 0 0 377692 / 1000000 6.0s h4
[ ] 383916 0 0 383916 / 1000000 6.1s h4
[ ] 390150 0 0 390150 / 1000000 6.2s h4
[ ] 396382 0 0 396382 / 1000000 6.3s h4
[ ] 402636 0 0 402636 / 1000000 6.4s h4
[ ] 408866 0 0 408866 / 1000000 6.5s h4
[ ] 415061 0 0 415061 / 1000000 6.6s h4
[ ] 421186 0 0 421186 / 1000000 6.7s h4
[ ] 427393 0 0 427393 / 1000000 6.8s h4
[ ] 433451 0 0 433451 / 1000000 6.9s h4
[ ] 439624 0 0 439624 / 1000000 7.0s h4
[ ] 445798 0 0 445798 / 1000000 7.1s h4
[ ] 451740 0 0 451740 / 1000000 7.2s h4
[ ] 457803 0 0 457803 / 1000000 7.3s h4
[ ] 463834 0 0 463834 / 1000000 7.4s h4
[ ] 469806 0 0 469806 / 1000000 7.5s h4
[ ] 475933 0 0 475933 / 1000000 7.6s h4
[ ] 482200 0 0 482200 / 1000000 7.7s h4
[ ] 488385 0 0 488385 / 1000000 7.8s h4
[ ] 494829 0 0 494829 / 1000000 7.9s h4
[ ] 500712 0 0 500712 / 1000000 8.0s h4
[ ] 506769 0 0 506769 / 1000000 8.1s h4
[ ] 512903 0 0 512903 / 1000000 8.2s h4
[ ] 518901 0 0 518901 / 1000000 8.3s h4
[ ] 524373 0 0 524373 / 1000000 8.4s h4
[ ] 530169 0 0 530169 / 1000000 8.5s h4
[ ] 536570 0 0 536570 / 1000000 8.6s h4
[ ] 542940 0 0 542940 / 1000000 8.7s h4
[ ] 549265 0 0 549265 / 1000000 8.8s h4
[ ] 555589 0 0 555589 / 1000000 8.9s h4
[ ] 561944 0 0 561944 / 1000000 9.0s h4
[ ] 568108 0 0 568108 / 1000000 9.1s h4
[ ] 574483 0 0 574483 / 1000000 9.2s h4
[ ] 580832 0 0 580832 / 1000000 9.3s h4
[ ] 587219 0 0 587219 / 1000000 9.4s h4
[ ] 593606 0 0 593606 / 1000000 9.5s h4
[ ] 599885 0 0 599885 / 1000000 9.6s h4
[ ] 606215 0 0 606215 / 1000000 9.7s h4
[ ] 612480 0 0 612480 / 1000000 9.8s h4
[ ] 618848 0 0 618848 / 1000000 9.9s h4
[ ] 625155 0 0 625155 / 1000000 10.0s h4
[ ] 631473 0 0 631473 / 1000000 10.1s h4
[ ] 637814 0 0 637814 / 1000000 10.2s h4
[ ] 643959 0 0 643959 / 1000000 10.3s h4
[ ] 650026 0 0 650026 / 1000000 10.4s h4
[ ] 656200 0 0 656200 / 1000000 10.5s h4
[ ] 662606 0 0 662606 / 1000000 10.6s h4
[ ] 668921 0 0 668921 / 1000000 10.7s h4
[ ] 675276 0 0 675276 / 1000000 10.8s h4
[ ] 681667 0 0 681667 / 1000000 10.9s h4
[ ] 688011 0 0 688011 / 1000000 11.0s h4
[ ] 694386 0 0 694386 / 1000000 11.1s h4
[ ] 700754 0 0 700754 / 1000000 11.2s h4
[ ] 707157 0 0 707157 / 1000000 11.3s h4
[ ] 713396 0 0 713396 / 1000000 11.4s h4
[ ] 719679 0 0 719679 / 1000000 11.5s h4
[ ] 726021 0 0 726021 / 1000000 11.6s h4
[ ] 732275 0 0 732275 / 1000000 11.7s h4
[ ] 738526 0 0 738526 / 1000000 11.8s h4
[ ] 744799 0 0 744799 / 1000000 11.9s h4
[ ] 751190 0 0 751190 / 1000000 12.0s h4
[ ] 757468 0 0 757468 / 1000000 12.1s h4
[ ] 763789 0 0 763789 / 1000000 12.2s h4
[ ] 770204 0 0 770204 / 1000000 12.3s h4
[ ] 776201 0 0 776201 / 1000000 12.4s h4
[ ] 782452 0 0 782452 / 1000000 12.5s h4
[ ] 788662 0 0 788662 / 1000000 12.6s h4
[ ] 794901 0 0 794901 / 1000000 12.7s h4
[ ] 801208 0 0 801208 / 1000000 12.8s h4
[ ] 807525 0 0 807525 / 1000000 12.9s h4
[ ] 813937 0 0 813937 / 1000000 13.0s h4
[ ] 820229 0 0 820229 / 1000000 13.1s h4
[ ] 826473 0 0 826473 / 1000000 13.2s h4
[ ] 832813 0 0 832813 / 1000000 13.3s h4
[ ] 839163 0 0 839163 / 1000000 13.4s h4
[ ] 845485 0 0 845485 / 1000000 13.5s h4
[ ] 851788 0 0 851788 / 1000000 13.6s h4
[ ] 858012 0 0 858012 / 1000000 13.7s h4
[ ] 864306 0 0 864306 / 1000000 13.8s h4
[ ] 870590 0 0 870590 / 1000000 13.9s h4
[ ] 876962 0 0 876962 / 1000000 14.0s h4
[ ] 883254 0 0 883254 / 1000000 14.1s h4
[ ] 889629 0 0 889629 / 1000000 14.2s h4
[ ] 895915 0 0 895915 / 1000000 14.3s h4
[ ] 902241 0 0 902241 / 1000000 14.4s h4
[ ] 908543 0 0 908543 / 1000000 14.5s h4
[ ] 914919 0 0 914919 / 1000000 14.6s h4
[ ] 921210 0 0 921210 / 1000000 14.7s h4
[ ] 927574 0 0 927574 / 1000000 14.8s h4
[ ] 933935 0 0 933935 / 1000000 14.9s h4
[ ] 940348 0 0 940348 / 1000000 15.0s h4
[ ] 946770 0 0 946770 / 1000000 15.1s h4 (generating)
[ ] 953107 0 0 953107 / 1000000 15.2s h4
[ ] 959411 0 0 959411 / 1000000 15.3s h4
[ ] 965718 0 0 965718 / 1000000 15.4s h4
[ ] 971974 0 0 971974 / 1000000 15.5s h4
[ ] 978254 0 0 978254 / 1000000 15.6s h4
[ ] 984493 0 0 984493 / 1000000 15.7s h4
[ ] 990761 0 0 990761 / 1000000 15.8s h4
[ ] 997052 0 0 997052 / 1000000 15.9s h4
[✓] 1000000 0 0 1000000 / 1000000 16.0s h4
- ================================================================================
- success (ran 6 tests)
-> compiled dates_calc.0.0.8
-> removed dates_calc.0.0.8
-> installed dates_calc.0.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-23 13:34.13 ---> saved as "3f6e83cb644daec6f296f3c288dfeafd67cc39c7b55f31fdfbe1e044e26015e9"
Job succeeded
2025-04-23 13:34.30: Job succeeded