(for PR #29582)

2026-03-25 13:13.13: New job: test dates_calc.0.0.4 with ocaml-compiler.5.4.0~beta2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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-compiler.5.4.0~beta2 5.4.0~beta2
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2; \
    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-compiler.5.4.0~beta2' && 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.4; \
    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.4' && 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.4) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.4; \
    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.4' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-25 13:13.13: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~beta2-dates_calc.0.0.4-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:13.13: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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-compiler.5.4.0~beta2 5.4.0~beta2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2;\
             \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-compiler.5.4.0~beta2' && 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.4;\
             \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.4' && 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.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.4;\
             \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.4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-25 13:13.13: Waiting for resource in pool OCluster
2026-03-25 14:41.46: Waiting for worker…
2026-03-25 14:44.00: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files:  73% (13650/18520)
Updating files:  74% (13705/18520)
Updating files:  75% (13890/18520)
Updating files:  76% (14076/18520)
Updating files:  77% (14261/18520)
Updating files:  78% (14446/18520)
Updating files:  79% (14631/18520)
Updating files:  80% (14816/18520)
Updating files:  81% (15002/18520)
Updating files:  82% (15187/18520)
Updating files:  83% (15372/18520)
Updating files:  84% (15557/18520)
Updating files:  85% (15742/18520)
Updating files:  86% (15928/18520)
Updating files:  87% (16113/18520)
Updating files:  88% (16298/18520)
Updating files:  89% (16483/18520)
Updating files:  90% (16668/18520)
Updating files:  91% (16854/18520)
Updating files:  92% (17039/18520)
Updating files:  93% (17224/18520)
Updating files:  94% (17409/18520)
Updating files:  95% (17594/18520)
Updating files:  96% (17780/18520)
Updating files:  97% (17965/18520)
Updating files:  98% (18150/18520)
Updating files:  99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6' locally
docker.io/ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
f6cbd774d654: Already exists
b40777a84cca: Already exists
7bb5edb9c889: Already exists
020670bcefab: Already exists
46df05d0db83: Already exists
45bde7b38933: Already exists
b4d63fa01ada: Already exists
Digest: sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
Status: Downloaded newer image for ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
2026-03-25 14:44.06 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-25 14:44.06 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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-25 14:44.06 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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-25 14:44.06 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-25 14:44.06 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 14:44.07 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 14:44.07 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (6968 kB/s)
- Reading package lists...
- 
2026-03-25 14:44.07 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta2 5.4.0~beta2"))
ocaml-compiler is now pinned to version 5.4.0~beta2
2026-03-25 14:44.07 ---> using "6a5005f94ec93c4cfbc555c3d261f1a9e44ce02f7cf737f7e023902aa066afba" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2;\
                        \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-compiler.5.4.0~beta2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-compiler.5.4.0~beta2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove    ocaml-base-compiler 5.4.0 (pinned)                [conflicts with ocaml-compiler]
=== downgrade 1 package
  - downgrade ocaml-compiler      5.4.0 to 5.4.0~beta2 (pinned)
=== recompile 6 packages
  - recompile base-domains        base                          [uses ocaml]
  - recompile base-effects        base                          [uses ocaml]
  - recompile base-nnp            base                          [uses base-domains]
  - recompile ocaml               5.4.0                         [uses ocaml-base-compiler]
  - recompile ocaml-config        3                             [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3                         [uses ocaml]
=== install 1 package
  - install   ocaml-variants      5.4.0~beta2+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta2  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta2
-> installed ocaml-variants.5.4.0~beta2+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta2+options"}]
       Use `opam switch set-invariant' to change it.
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 14:44.07 ---> using "e030a93f7882e2604088ed6928ceb441b94d1a6a8f699222926e1ee68fd1dd8f" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dates_calc.0.0.4;\
                        \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.4' && 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.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dates_calc 0.0.4
  - install dune       3.22.0 [required by dates_calc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.4  (cached)
-> retrieved dune.3.22.0  (cached)
-> installed dune.3.22.0
-> installed dates_calc.0.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 14:44.54 ---> saved as "da50e316276640a9141c85405abdf4d49677adfb57f33907d83271ba7590bc36"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.4) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.4
=== 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.4  (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 ounit2.2.2.7
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed   dates_calc.0.0.4
-> 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.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 14:46.41 ---> saved as "7ae945ac3b5c919001cac8d9f647990ea6de20d66b72f7dee5efdbea9a5e74cf"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.4;\
                        \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.4' && 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.4

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.4: extract]
-> retrieved dates_calc.0.0.4  (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.4)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `R7XYTAL2'.
- 
-   [OK]          add_dates                        0   days.
-   [OK]          add_dates                        1   months_exact.
-   [OK]          add_dates                        2   months_ambig.
-   [OK]          add_dates                        3   years_exact.
-   [OK]          add_dates                        4   years_ambig.
-   [OK]          first_last_day_of_month          0   all.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.4/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.006s. 6 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 337328614
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     263       0       0     263 /    1000     0.1s anon_test_1
[ ]     552       0       0     552 /    1000     0.2s anon_test_1
[ ]     840       0       0     840 /    1000     0.3s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.4s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]      17       0       0      17 /    1000     0.1s anon_test_2
[ ]      29       0       0      29 /    1000     0.2s anon_test_2
[ ]      41       0       0      41 /    1000     0.3s anon_test_2
[ ]      51       0       0      51 /    1000     0.4s anon_test_2
[ ]      62       0       0      62 /    1000     0.5s anon_test_2
[ ]      76       0       0      76 /    1000     0.6s anon_test_2
[ ]      86       0       0      86 /    1000     0.7s anon_test_2
[ ]      98       0       0      98 /    1000     0.8s anon_test_2
[ ]     110       0       0     110 /    1000     1.0s anon_test_2
[ ]     124       0       0     124 /    1000     1.1s anon_test_2
[ ]     134       0       0     134 /    1000     1.2s anon_test_2
[ ]     141       0       0     141 /    1000     1.3s anon_test_2
[ ]     157       0       0     157 /    1000     1.4s anon_test_2
[ ]     176       0       0     176 /    1000     1.5s anon_test_2
[ ]     186       0       0     186 /    1000     1.6s anon_test_2
[ ]     196       0       0     196 /    1000     1.7s anon_test_2
[ ]     213       0       0     213 /    1000     1.8s anon_test_2
[ ]     227       0       0     227 /    1000     1.9s anon_test_2
[ ]     236       0       0     236 /    1000     2.0s anon_test_2
[ ]     241       0       0     241 /    1000     2.1s anon_test_2
[ ]     258       0       0     258 /    1000     2.2s anon_test_2
[ ]     274       0       0     274 /    1000     2.4s anon_test_2
[ ]     285       0       0     285 /    1000     2.5s anon_test_2
[ ]     295       0       0     295 /    1000     2.6s anon_test_2
[ ]     309       0       0     309 /    1000     2.7s anon_test_2
[ ]     322       0       0     322 /    1000     2.8s anon_test_2
[ ]     336       0       0     336 /    1000     2.9s anon_test_2
[ ]     346       0       0     346 /    1000     3.0s anon_test_2
[ ]     354       0       0     354 /    1000     3.1s anon_test_2
[ ]     372       0       0     372 /    1000     3.2s anon_test_2
[ ]     384       0       0     384 /    1000     3.3s anon_test_2
[ ]     398       0       0     398 /    1000     3.4s anon_test_2
[ ]     414       0       0     414 /    1000     3.6s anon_test_2
[ ]     428       0       0     428 /    1000     3.7s anon_test_2
[ ]     443       0       0     443 /    1000     3.8s anon_test_2
[ ]     466       0       0     466 /    1000     3.9s anon_test_2
[ ]     480       0       0     480 /    1000     4.0s anon_test_2
[ ]     491       0       0     491 /    1000     4.1s anon_test_2
[ ]     511       0       0     511 /    1000     4.2s anon_test_2
[ ]     520       0       0     520 /    1000     4.3s anon_test_2
[ ]     537       0       0     537 /    1000     4.4s anon_test_2
[ ]     551       0       0     551 /    1000     4.5s anon_test_2
[ ]     563       0       0     563 /    1000     4.6s anon_test_2
[ ]     578       0       0     578 /    1000     4.7s anon_test_2
[ ]     591       0       0     591 /    1000     4.8s anon_test_2
[ ]     609       0       0     609 /    1000     4.9s anon_test_2
[ ]     620       0       0     620 /    1000     5.0s anon_test_2
[ ]     631       0       0     631 /    1000     5.1s anon_test_2
[ ]     646       0       0     646 /    1000     5.3s anon_test_2
[ ]     660       0       0     660 /    1000     5.4s anon_test_2
[ ]     672       0       0     672 /    1000     5.5s anon_test_2
[ ]     685       0       0     685 /    1000     5.6s anon_test_2
[ ]     709       0       0     709 /    1000     5.7s anon_test_2
[ ]     721       0       0     721 /    1000     5.8s anon_test_2
[ ]     729       0       0     729 /    1000     5.9s anon_test_2
[ ]     744       0       0     744 /    1000     6.0s anon_test_2
[ ]     759       0       0     759 /    1000     6.1s anon_test_2
[ ]     776       0       0     776 /    1000     6.2s anon_test_2
[ ]     794       0       0     794 /    1000     6.3s anon_test_2
[ ]     806       0       0     806 /    1000     6.4s anon_test_2
[ ]     817       0       0     817 /    1000     6.6s anon_test_2
[ ]     831       0       0     831 /    1000     6.7s anon_test_2
[ ]     847       0       0     847 /    1000     6.8s anon_test_2
[ ]     860       0       0     860 /    1000     6.9s anon_test_2
[ ]     874       0       0     874 /    1000     7.0s anon_test_2
[ ]     889       0       0     889 /    1000     7.1s anon_test_2
[ ]     903       0       0     903 /    1000     7.2s anon_test_2
[ ]     919       0       0     919 /    1000     7.3s anon_test_2
[ ]     931       0       0     931 /    1000     7.4s anon_test_2
[ ]     945       0       0     945 /    1000     7.5s anon_test_2
[ ]     955       0       0     955 /    1000     7.6s anon_test_2
[ ]     966       0       0     966 /    1000     7.7s anon_test_2
[ ]     981       0       0     981 /    1000     7.8s anon_test_2
[ ]     999       0       0     999 /    1000     7.9s anon_test_2
[✓]    1000       0       0    1000 /    1000     8.0s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9861       0       0    9861 / 1000000     0.1s h1
[ ]   20104       0       0   20104 / 1000000     0.2s h1
[ ]   30324       0       0   30324 / 1000000     0.3s h1
[ ]   40466       0       0   40466 / 1000000     0.4s h1
[ ]   50633       0       0   50633 / 1000000     0.5s h1
[ ]   60824       0       0   60824 / 1000000     0.6s h1
[ ]   71019       0       0   71019 / 1000000     0.7s h1
[ ]   81335       0       0   81335 / 1000000     0.8s h1
[ ]   91504       0       0   91504 / 1000000     0.9s h1
[ ]  101731       0       0  101731 / 1000000     1.0s h1
[ ]  112026       0       0  112026 / 1000000     1.1s h1
[ ]  122306       0       0  122306 / 1000000     1.2s h1
[ ]  132391       0       0  132391 / 1000000     1.3s h1
[ ]  142358       0       0  142358 / 1000000     1.4s h1
[ ]  152564       0       0  152564 / 1000000     1.5s h1
[ ]  162723       0       0  162723 / 1000000     1.6s h1
[ ]  172817       0       0  172817 / 1000000     1.7s h1
[ ]  183147       0       0  183147 / 1000000     1.8s h1
[ ]  193760       0       0  193760 / 1000000     1.9s h1
[ ]  204414       0       0  204414 / 1000000     2.0s h1
[ ]  215096       0       0  215096 / 1000000     2.1s h1
[ ]  225728       0       0  225728 / 1000000     2.2s h1 (   testing)
[ ]  236325       0       0  236325 / 1000000     2.3s h1
[ ]  246956       0       0  246956 / 1000000     2.4s h1
[ ]  257679       0       0  257679 / 1000000     2.5s h1
[ ]  268301       0       0  268301 / 1000000     2.6s h1
[ ]  278966       0       0  278966 / 1000000     2.7s h1
[ ]  289746       0       0  289746 / 1000000     2.8s h1
[ ]  300390       0       0  300390 / 1000000     2.9s h1
[ ]  310779       0       0  310779 / 1000000     3.0s h1
[ ]  321396       0       0  321396 / 1000000     3.1s h1
[ ]  331812       0       0  331812 / 1000000     3.2s h1
[ ]  341912       0       0  341912 / 1000000     3.3s h1
[ ]  351939       0       0  351939 / 1000000     3.4s h1 (collecting)
[ ]  362047       0       0  362047 / 1000000     3.5s h1
[ ]  372166       0       0  372166 / 1000000     3.6s h1
[ ]  381790       0       0  381790 / 1000000     3.7s h1
[ ]  391226       0       0  391226 / 1000000     3.8s h1
[ ]  400384       0       0  400384 / 1000000     3.9s h1
[ ]  409796       0       0  409796 / 1000000     4.0s h1
[ ]  418582       0       0  418582 / 1000000     4.1s h1
[ ]  427554       0       0  427554 / 1000000     4.2s h1
[ ]  436519       0       0  436519 / 1000000     4.3s h1
[ ]  445533       0       0  445533 / 1000000     4.4s h1
[ ]  455285       0       0  455285 / 1000000     4.5s h1 (collecting)
[ ]  465050       0       0  465050 / 1000000     4.6s h1
[ ]  474558       0       0  474558 / 1000000     4.7s h1
[ ]  484160       0       0  484160 / 1000000     4.8s h1
[ ]  493606       0       0  493606 / 1000000     4.9s h1 (collecting)
[ ]  503853       0       0  503853 / 1000000     5.0s h1
[ ]  513986       0       0  513986 / 1000000     5.1s h1
[ ]  524223       0       0  524223 / 1000000     5.2s h1
[ ]  534536       0       0  534536 / 1000000     5.3s h1
[ ]  544974       0       0  544974 / 1000000     5.4s h1
[ ]  555229       0       0  555229 / 1000000     5.5s h1
[ ]  565662       0       0  565662 / 1000000     5.6s h1
[ ]  576231       0       0  576231 / 1000000     5.7s h1
[ ]  586669       0       0  586669 / 1000000     5.8s h1
[ ]  597049       0       0  597049 / 1000000     5.9s h1
[ ]  607413       0       0  607413 / 1000000     6.0s h1
[ ]  617653       0       0  617653 / 1000000     6.1s h1
[ ]  627716       0       0  627716 / 1000000     6.2s h1
[ ]  637790       0       0  637790 / 1000000     6.3s h1
[ ]  647663       0       0  647663 / 1000000     6.4s h1 (   testing)
[ ]  657377       0       0  657377 / 1000000     6.5s h1
[ ]  666748       0       0  666748 / 1000000     6.6s h1
[ ]  676137       0       0  676137 / 1000000     6.7s h1
[ ]  685787       0       0  685787 / 1000000     6.8s h1
[ ]  695349       0       0  695349 / 1000000     6.9s h1
[ ]  705119       0       0  705119 / 1000000     7.0s h1
[ ]  714851       0       0  714851 / 1000000     7.1s h1
[ ]  724456       0       0  724456 / 1000000     7.2s h1
[ ]  734162       0       0  734162 / 1000000     7.3s h1
[ ]  743692       0       0  743692 / 1000000     7.4s h1
[ ]  753304       0       0  753304 / 1000000     7.5s h1
[ ]  762873       0       0  762873 / 1000000     7.6s h1
[ ]  772457       0       0  772457 / 1000000     7.7s h1 (generating)
[ ]  782069       0       0  782069 / 1000000     7.8s h1
[ ]  791581       0       0  791581 / 1000000     7.9s h1
[ ]  801220       0       0  801220 / 1000000     8.0s h1
[ ]  810813       0       0  810813 / 1000000     8.1s h1
[ ]  820322       0       0  820322 / 1000000     8.2s h1
[ ]  829843       0       0  829843 / 1000000     8.3s h1
[ ]  839606       0       0  839606 / 1000000     8.4s h1
[ ]  849207       0       0  849207 / 1000000     8.5s h1
[ ]  858719       0       0  858719 / 1000000     8.6s h1
[ ]  868332       0       0  868332 / 1000000     8.7s h1
[ ]  878088       0       0  878088 / 1000000     8.8s h1
[ ]  887770       0       0  887770 / 1000000     8.9s h1
[ ]  897305       0       0  897305 / 1000000     9.0s h1
[ ]  907422       0       0  907422 / 1000000     9.1s h1
[ ]  916957       0       0  916957 / 1000000     9.2s h1
[ ]  926641       0       0  926641 / 1000000     9.3s h1
[ ]  936065       0       0  936065 / 1000000     9.4s h1
[ ]  945762       0       0  945762 / 1000000     9.5s h1
[ ]  955601       0       0  955601 / 1000000     9.6s h1
[ ]  965776       0       0  965776 / 1000000     9.7s h1
[ ]  975713       0       0  975713 / 1000000     9.8s h1
[ ]  985885       0       0  985885 / 1000000     9.9s h1
[ ]  995982       0       0  995982 / 1000000    10.0s h1
[✓] 1000000       0       0 1000000 / 1000000    10.0s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    5115       0       0    5115 / 1000000     0.1s h2
[ ]   10069       0       0   10069 / 1000000     0.2s h2
[ ]   15233       0       0   15233 / 1000000     0.3s h2
[ ]   20292       0       0   20292 / 1000000     0.4s h2
[ ]   25210       0       0   25210 / 1000000     0.5s h2
[ ]   30683       0       0   30683 / 1000000     0.6s h2
[ ]   35758       0       0   35758 / 1000000     0.7s h2
[ ]   40762       0       0   40762 / 1000000     0.8s h2
[ ]   45772       0       0   45772 / 1000000     0.9s h2
[ ]   50916       0       0   50916 / 1000000     1.0s h2
[ ]   55910       0       0   55910 / 1000000     1.1s h2
[ ]   61091       0       0   61091 / 1000000     1.2s h2
[ ]   66279       0       0   66279 / 1000000     1.3s h2
[ ]   71482       0       0   71482 / 1000000     1.4s h2
[ ]   76570       0       0   76570 / 1000000     1.5s h2
[ ]   81599       0       0   81599 / 1000000     1.6s h2
[ ]   86598       0       0   86598 / 1000000     1.7s h2
[ ]   91755       0       0   91755 / 1000000     1.8s h2
[ ]   96720       0       0   96720 / 1000000     1.9s h2
[ ]  101682       0       0  101682 / 1000000     2.0s h2
[ ]  106659       0       0  106659 / 1000000     2.1s h2
[ ]  111623       0       0  111623 / 1000000     2.2s h2
[ ]  116717       0       0  116717 / 1000000     2.3s h2
[ ]  122017       0       0  122017 / 1000000     2.4s h2
[ ]  127226       0       0  127226 / 1000000     2.5s h2
[ ]  132733       0       0  132733 / 1000000     2.6s h2
[ ]  138082       0       0  138082 / 1000000     2.7s h2
[ ]  143092       0       0  143092 / 1000000     2.8s h2
[ ]  150401       0       0  150401 / 1000000     2.9s h2
[ ]  158257       0       0  158257 / 1000000     3.0s h2
[ ]  164476       0       0  164476 / 1000000     3.1s h2
[ ]  172422       0       0  172422 / 1000000     3.2s h2
[ ]  180509       0       0  180509 / 1000000     3.3s h2
[ ]  186485       0       0  186485 / 1000000     3.4s h2
[ ]  191602       0       0  191602 / 1000000     3.5s h2
[ ]  196727       0       0  196727 / 1000000     3.6s h2
[ ]  201777       0       0  201777 / 1000000     3.7s h2
[ ]  208018       0       0  208018 / 1000000     3.8s h2
[ ]  215935       0       0  215935 / 1000000     3.9s h2
[ ]  223557       0       0  223557 / 1000000     4.0s h2
[ ]  229346       0       0  229346 / 1000000     4.1s h2
[ ]  234364       0       0  234364 / 1000000     4.2s h2
[ ]  239635       0       0  239635 / 1000000     4.3s h2
[ ]  244738       0       0  244738 / 1000000     4.4s h2 (collecting)
[ ]  250780       0       0  250780 / 1000000     4.5s h2
[ ]  258509       0       0  258509 / 1000000     4.6s h2
[ ]  266451       0       0  266451 / 1000000     4.7s h2
[ ]  271341       0       0  271341 / 1000000     4.8s h2
[ ]  276230       0       0  276230 / 1000000     4.9s h2
[ ]  281153       0       0  281153 / 1000000     5.0s h2
[ ]  286180       0       0  286180 / 1000000     5.1s h2
[ ]  291430       0       0  291430 / 1000000     5.2s h2 (collecting)
[ ]  300133       0       0  300133 / 1000000     5.3s h2
[ ]  306776       0       0  306776 / 1000000     5.4s h2
[ ]  314387       0       0  314387 / 1000000     5.5s h2
[ ]  321361       0       0  321361 / 1000000     5.6s h2
[ ]  326470       0       0  326470 / 1000000     5.7s h2
[ ]  331593       0       0  331593 / 1000000     5.8s h2
[ ]  336701       0       0  336701 / 1000000     5.9s h2
[ ]  343707       0       0  343707 / 1000000     6.0s h2
[ ]  348759       0       0  348759 / 1000000     6.1s h2
[ ]  353932       0       0  353932 / 1000000     6.2s h2
[ ]  360445       0       0  360445 / 1000000     6.3s h2
[ ]  368632       0       0  368632 / 1000000     6.4s h2
[ ]  377022       0       0  377022 / 1000000     6.5s h2
[ ]  385085       0       0  385085 / 1000000     6.6s h2 (collecting)
[ ]  391475       0       0  391475 / 1000000     6.7s h2
[ ]  396739       0       0  396739 / 1000000     6.8s h2
[ ]  402078       0       0  402078 / 1000000     6.9s h2
[ ]  407626       0       0  407626 / 1000000     7.0s h2
[ ]  415080       0       0  415080 / 1000000     7.1s h2
[ ]  420012       0       0  420012 / 1000000     7.2s h2
[ ]  426786       0       0  426786 / 1000000     7.3s h2
[ ]  434506       0       0  434506 / 1000000     7.4s h2
[ ]  440612       0       0  440612 / 1000000     7.5s h2
[ ]  449234       0       0  449234 / 1000000     7.6s h2
[ ]  457935       0       0  457935 / 1000000     7.7s h2
[ ]  466519       0       0  466519 / 1000000     7.8s h2
[ ]  475091       0       0  475091 / 1000000     7.9s h2
[ ]  481537       0       0  481537 / 1000000     8.0s h2
[ ]  486594       0       0  486594 / 1000000     8.1s h2 (collecting)
[ ]  493394       0       0  493394 / 1000000     8.2s h2
[ ]  502018       0       0  502018 / 1000000     8.3s h2
[ ]  510651       0       0  510651 / 1000000     8.4s h2
[ ]  519226       0       0  519226 / 1000000     8.5s h2
[ ]  528002       0       0  528002 / 1000000     8.6s h2
[ ]  536602       0       0  536602 / 1000000     8.7s h2
[ ]  545309       0       0  545309 / 1000000     8.8s h2
[ ]  553770       0       0  553770 / 1000000     8.9s h2
[ ]  560093       0       0  560093 / 1000000     9.0s h2
[ ]  568203       0       0  568203 / 1000000     9.1s h2
[ ]  573305       0       0  573305 / 1000000     9.2s h2
[ ]  580366       0       0  580366 / 1000000     9.3s h2
[ ]  586578       0       0  586578 / 1000000     9.4s h2
[ ]  591858       0       0  591858 / 1000000     9.5s h2
[ ]  596855       0       0  596855 / 1000000     9.6s h2
[ ]  602155       0       0  602155 / 1000000     9.7s h2
[ ]  607662       0       0  607662 / 1000000     9.8s h2
[ ]  612697       0       0  612697 / 1000000     9.9s h2
[ ]  617351       0       0  617351 / 1000000    10.0s h2
[ ]  622480       0       0  622480 / 1000000    10.1s h2
[ ]  628005       0       0  628005 / 1000000    10.2s h2
[ ]  633049       0       0  633049 / 1000000    10.3s h2
[ ]  637693       0       0  637693 / 1000000    10.4s h2
[ ]  642345       0       0  642345 / 1000000    10.5s h2
[ ]  646969       0       0  646969 / 1000000    10.6s h2
[ ]  651958       0       0  651958 / 1000000    10.7s h2
[ ]  657222       0       0  657222 / 1000000    10.8s h2
[ ]  662264       0       0  662264 / 1000000    10.9s h2
[ ]  667609       0       0  667609 / 1000000    11.0s h2
[ ]  675891       0       0  675891 / 1000000    11.1s h2
[ ]  684615       0       0  684615 / 1000000    11.2s h2
[ ]  691570       0       0  691570 / 1000000    11.3s h2
[ ]  700212       0       0  700212 / 1000000    11.4s h2
[ ]  706103       0       0  706103 / 1000000    11.5s h2
[ ]  711519       0       0  711519 / 1000000    11.6s h2
[ ]  716564       0       0  716564 / 1000000    11.7s h2
[ ]  722739       0       0  722739 / 1000000    11.8s h2
[ ]  727697       0       0  727697 / 1000000    11.9s h2
[ ]  732700       0       0  732700 / 1000000    12.0s h2
[ ]  737626       0       0  737626 / 1000000    12.1s h2
[ ]  742842       0       0  742842 / 1000000    12.2s h2
[ ]  748832       0       0  748832 / 1000000    12.3s h2
[ ]  756599       0       0  756599 / 1000000    12.4s h2
[ ]  764915       0       0  764915 / 1000000    12.5s h2
[ ]  773372       0       0  773372 / 1000000    12.6s h2
[ ]  781744       0       0  781744 / 1000000    12.7s h2
[ ]  788546       0       0  788546 / 1000000    12.8s h2
[ ]  797200       0       0  797200 / 1000000    12.9s h2
[ ]  805218       0       0  805218 / 1000000    13.0s h2
[ ]  813727       0       0  813727 / 1000000    13.1s h2
[ ]  822283       0       0  822283 / 1000000    13.2s h2
[ ]  827763       0       0  827763 / 1000000    13.3s h2
[ ]  835411       0       0  835411 / 1000000    13.4s h2
[ ]  843796       0       0  843796 / 1000000    13.5s h2
[ ]  852399       0       0  852399 / 1000000    13.6s h2
[ ]  860843       0       0  860843 / 1000000    13.7s h2
[ ]  869284       0       0  869284 / 1000000    13.8s h2
[ ]  877895       0       0  877895 / 1000000    13.9s h2
[ ]  885554       0       0  885554 / 1000000    14.0s h2
[ ]  892661       0       0  892661 / 1000000    14.1s h2
[ ]  900168       0       0  900168 / 1000000    14.2s h2
[ ]  908775       0       0  908775 / 1000000    14.3s h2
[ ]  917326       0       0  917326 / 1000000    14.4s h2
[ ]  922376       0       0  922376 / 1000000    14.5s h2
[ ]  927459       0       0  927459 / 1000000    14.6s h2
[ ]  932622       0       0  932622 / 1000000    14.7s h2
[ ]  941117       0       0  941117 / 1000000    14.8s h2
[ ]  949802       0       0  949802 / 1000000    14.9s h2
[ ]  958458       0       0  958458 / 1000000    15.0s h2
[ ]  967169       0       0  967169 / 1000000    15.1s h2
[ ]  975895       0       0  975895 / 1000000    15.2s h2
[ ]  984478       0       0  984478 / 1000000    15.3s h2
[ ]  993193       0       0  993193 / 1000000    15.4s h2
[✓] 1000000       0       0 1000000 / 1000000    15.5s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]   13428       0       0   13428 / 1000000     0.1s h3 (collecting)
[ ]   30317       0       0   30317 / 1000000     0.2s h3
[ ]   45055       0       0   45055 / 1000000     0.3s h3
[ ]   60284       0       0   60284 / 1000000     0.4s h3
[ ]   70885       0       0   70885 / 1000000     0.5s h3
[ ]   80850       0       0   80850 / 1000000     0.6s h3
[ ]   95273       0       0   95273 / 1000000     0.7s h3
[ ]  107054       0       0  107054 / 1000000     0.8s h3
[ ]  119316       0       0  119316 / 1000000     0.9s h3
[ ]  134826       0       0  134826 / 1000000     1.0s h3 (collecting)
[ ]  146966       0       0  146966 / 1000000     1.1s h3
[ ]  160014       0       0  160014 / 1000000     1.2s h3
[ ]  176717       0       0  176717 / 1000000     1.3s h3
[ ]  187385       0       0  187385 / 1000000     1.4s h3
[ ]  197957       0       0  197957 / 1000000     1.5s h3
[ ]  208524       0       0  208524 / 1000000     1.6s h3
[ ]  218998       0       0  218998 / 1000000     1.7s h3
[ ]  229469       0       0  229469 / 1000000     1.8s h3
[ ]  239975       0       0  239975 / 1000000     1.9s h3
[ ]  250436       0       0  250436 / 1000000     2.0s h3
[ ]  265747       0       0  265747 / 1000000     2.1s h3
[ ]  282419       0       0  282419 / 1000000     2.2s h3
[ ]  298445       0       0  298445 / 1000000     2.3s h3
[ ]  315568       0       0  315568 / 1000000     2.4s h3
[ ]  332546       0       0  332546 / 1000000     2.5s h3
[ ]  343710       0       0  343710 / 1000000     2.6s h3
[ ]  353883       0       0  353883 / 1000000     2.7s h3
[ ]  364087       0       0  364087 / 1000000     2.8s h3
[ ]  374176       0       0  374176 / 1000000     2.9s h3
[ ]  388991       0       0  388991 / 1000000     3.0s h3
[ ]  400628       0       0  400628 / 1000000     3.1s h3
[ ]  410593       0       0  410593 / 1000000     3.2s h3
[ ]  421728       0       0  421728 / 1000000     3.3s h3
[ ]  438623       0       0  438623 / 1000000     3.4s h3
[ ]  455555       0       0  455555 / 1000000     3.5s h3
[ ]  472526       0       0  472526 / 1000000     3.6s h3
[ ]  489345       0       0  489345 / 1000000     3.7s h3
[ ]  506320       0       0  506320 / 1000000     3.8s h3
[ ]  523331       0       0  523331 / 1000000     3.9s h3
[ ]  540233       0       0  540233 / 1000000     4.0s h3
[ ]  557204       0       0  557204 / 1000000     4.1s h3
[ ]  569996       0       0  569996 / 1000000     4.2s h3
[ ]  586921       0       0  586921 / 1000000     4.3s h3
[ ]  602963       0       0  602963 / 1000000     4.4s h3
[ ]  618041       0       0  618041 / 1000000     4.5s h3
[ ]  634990       0       0  634990 / 1000000     4.6s h3
[ ]  651949       0       0  651949 / 1000000     4.7s h3
[ ]  669105       0       0  669105 / 1000000     4.8s h3
[ ]  686255       0       0  686255 / 1000000     4.9s h3
[ ]  703284       0       0  703284 / 1000000     5.0s h3
[ ]  720382       0       0  720382 / 1000000     5.1s h3
[ ]  737513       0       0  737513 / 1000000     5.2s h3
[ ]  754509       0       0  754509 / 1000000     5.3s h3
[ ]  771495       0       0  771495 / 1000000     5.4s h3
[ ]  788560       0       0  788560 / 1000000     5.5s h3
[ ]  805654       0       0  805654 / 1000000     5.6s h3
[ ]  822872       0       0  822872 / 1000000     5.7s h3
[ ]  839950       0       0  839950 / 1000000     5.8s h3
[ ]  857029       0       0  857029 / 1000000     5.9s h3
[ ]  874096       0       0  874096 / 1000000     6.0s h3
[ ]  891250       0       0  891250 / 1000000     6.1s h3
[ ]  908480       0       0  908480 / 1000000     6.2s h3
[ ]  925642       0       0  925642 / 1000000     6.3s h3
[ ]  942744       0       0  942744 / 1000000     6.4s h3
[ ]  956916       0       0  956916 / 1000000     6.5s h3
[ ]  973775       0       0  973775 / 1000000     6.6s h3
[ ]  990748       0       0  990748 / 1000000     6.7s h3
[✓] 1000000       0       0 1000000 / 1000000     6.8s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    6043       0       0    6043 / 1000000     0.1s h4
[ ]   12114       0       0   12114 / 1000000     0.2s h4
[ ]   18251       0       0   18251 / 1000000     0.3s h4
[ ]   24344       0       0   24344 / 1000000     0.4s h4
[ ]   30382       0       0   30382 / 1000000     0.5s h4
[ ]   36467       0       0   36467 / 1000000     0.6s h4
[ ]   42585       0       0   42585 / 1000000     0.7s h4
[ ]   48658       0       0   48658 / 1000000     0.8s h4
[ ]   54771       0       0   54771 / 1000000     0.9s h4
[ ]   60849       0       0   60849 / 1000000     1.0s h4
[ ]   64775       0       0   64775 / 1000000     1.1s h4
[ ]   68455       0       0   68455 / 1000000     1.2s h4
[ ]   71984       0       0   71984 / 1000000     1.3s h4
[ ]   75581       0       0   75581 / 1000000     1.4s h4
[ ]   79206       0       0   79206 / 1000000     1.5s h4
[ ]   83043       0       0   83043 / 1000000     1.6s h4
[ ]   86608       0       0   86608 / 1000000     1.7s h4 (collecting)
[ ]   90644       0       0   90644 / 1000000     1.8s h4
[ ]   94130       0       0   94130 / 1000000     1.9s h4
[ ]   97649       0       0   97649 / 1000000     2.0s h4
[ ]  101358       0       0  101358 / 1000000     2.1s h4
[ ]  104976       0       0  104976 / 1000000     2.2s h4
[ ]  109197       0       0  109197 / 1000000     2.3s h4
[ ]  115301       0       0  115301 / 1000000     2.4s h4
[ ]  121367       0       0  121367 / 1000000     2.5s h4
[ ]  127351       0       0  127351 / 1000000     2.6s h4
[ ]  133425       0       0  133425 / 1000000     2.7s h4
[ ]  138475       0       0  138475 / 1000000     2.8s h4
[ ]  144672       0       0  144672 / 1000000     2.9s h4
[ ]  150712       0       0  150712 / 1000000     3.0s h4
[ ]  156872       0       0  156872 / 1000000     3.1s h4
[ ]  162980       0       0  162980 / 1000000     3.2s h4
[ ]  168934       0       0  168934 / 1000000     3.3s h4
[ ]  175121       0       0  175121 / 1000000     3.4s h4
[ ]  181100       0       0  181100 / 1000000     3.5s h4
[ ]  185694       0       0  185694 / 1000000     3.6s h4
[ ]  191788       0       0  191788 / 1000000     3.7s h4
[ ]  197925       0       0  197925 / 1000000     3.8s h4 (collecting)
[ ]  203974       0       0  203974 / 1000000     3.9s h4
[ ]  210061       0       0  210061 / 1000000     4.0s h4
[ ]  216097       0       0  216097 / 1000000     4.1s h4
[ ]  222116       0       0  222116 / 1000000     4.2s h4
[ ]  228112       0       0  228112 / 1000000     4.3s h4
[ ]  234214       0       0  234214 / 1000000     4.4s h4
[ ]  240323       0       0  240323 / 1000000     4.5s h4
[ ]  245205       0       0  245205 / 1000000     4.6s h4
[ ]  248863       0       0  248863 / 1000000     4.7s h4
[ ]  252435       0       0  252435 / 1000000     4.8s h4
[ ]  256099       0       0  256099 / 1000000     4.9s h4
[ ]  260990       0       0  260990 / 1000000     5.0s h4
[ ]  267085       0       0  267085 / 1000000     5.1s h4
[ ]  273174       0       0  273174 / 1000000     5.2s h4
[ ]  279258       0       0  279258 / 1000000     5.3s h4
[ ]  285388       0       0  285388 / 1000000     5.4s h4
[ ]  291524       0       0  291524 / 1000000     5.5s h4
[ ]  297680       0       0  297680 / 1000000     5.6s h4
[ ]  301561       0       0  301561 / 1000000     5.7s h4
[ ]  306326       0       0  306326 / 1000000     5.8s h4
[ ]  312235       0       0  312235 / 1000000     5.9s h4
[ ]  316606       0       0  316606 / 1000000     6.0s h4
[ ]  322477       0       0  322477 / 1000000     6.1s h4
[ ]  328536       0       0  328536 / 1000000     6.2s h4
[ ]  334315       0       0  334315 / 1000000     6.3s h4
[ ]  339837       0       0  339837 / 1000000     6.4s h4
[ ]  345863       0       0  345863 / 1000000     6.5s h4
[ ]  352041       0       0  352041 / 1000000     6.6s h4
[ ]  357012       0       0  357012 / 1000000     6.7s h4
[ ]  360730       0       0  360730 / 1000000     6.8s h4
[ ]  366805       0       0  366805 / 1000000     6.9s h4
[ ]  372879       0       0  372879 / 1000000     7.0s h4
[ ]  377601       0       0  377601 / 1000000     7.1s h4
[ ]  382483       0       0  382483 / 1000000     7.2s h4
[ ]  386096       0       0  386096 / 1000000     7.3s h4
[ ]  391196       0       0  391196 / 1000000     7.4s h4
[ ]  397319       0       0  397319 / 1000000     7.5s h4
[ ]  403484       0       0  403484 / 1000000     7.6s h4
[ ]  409656       0       0  409656 / 1000000     7.7s h4
[ ]  415856       0       0  415856 / 1000000     7.8s h4
[ ]  422020       0       0  422020 / 1000000     7.9s h4
[ ]  428176       0       0  428176 / 1000000     8.0s h4
[ ]  434312       0       0  434312 / 1000000     8.1s h4
[ ]  440450       0       0  440450 / 1000000     8.2s h4
[ ]  446574       0       0  446574 / 1000000     8.3s h4
[ ]  452818       0       0  452818 / 1000000     8.4s h4
[ ]  458978       0       0  458978 / 1000000     8.5s h4
[ ]  465170       0       0  465170 / 1000000     8.6s h4
[ ]  471329       0       0  471329 / 1000000     8.7s h4
[ ]  477442       0       0  477442 / 1000000     8.8s h4
[ ]  483527       0       0  483527 / 1000000     8.9s h4
[ ]  489678       0       0  489678 / 1000000     9.0s h4
[ ]  495813       0       0  495813 / 1000000     9.1s h4
[ ]  501901       0       0  501901 / 1000000     9.2s h4
[ ]  507961       0       0  507961 / 1000000     9.3s h4
[ ]  514080       0       0  514080 / 1000000     9.4s h4
[ ]  520141       0       0  520141 / 1000000     9.5s h4
[ ]  525037       0       0  525037 / 1000000     9.6s h4
[ ]  531131       0       0  531131 / 1000000     9.7s h4
[ ]  537248       0       0  537248 / 1000000     9.8s h4
[ ]  543315       0       0  543315 / 1000000     9.9s h4 (collecting)
[ ]  549316       0       0  549316 / 1000000    10.0s h4
[ ]  554077       0       0  554077 / 1000000    10.1s h4
[ ]  559332       0       0  559332 / 1000000    10.2s h4
[ ]  565397       0       0  565397 / 1000000    10.3s h4
[ ]  570811       0       0  570811 / 1000000    10.4s h4
[ ]  575646       0       0  575646 / 1000000    10.5s h4
[ ]  581710       0       0  581710 / 1000000    10.6s h4
[ ]  587360       0       0  587360 / 1000000    10.7s h4
[ ]  593490       0       0  593490 / 1000000    10.8s h4
[ ]  599577       0       0  599577 / 1000000    10.9s h4
[ ]  605816       0       0  605816 / 1000000    11.0s h4
[ ]  611989       0       0  611989 / 1000000    11.1s h4
[ ]  618216       0       0  618216 / 1000000    11.2s h4
[ ]  624320       0       0  624320 / 1000000    11.3s h4
[ ]  630409       0       0  630409 / 1000000    11.4s h4
[ ]  636551       0       0  636551 / 1000000    11.5s h4
[ ]  642654       0       0  642654 / 1000000    11.6s h4
[ ]  648744       0       0  648744 / 1000000    11.7s h4
[ ]  654893       0       0  654893 / 1000000    11.8s h4 (collecting)
[ ]  660913       0       0  660913 / 1000000    11.9s h4
[ ]  667002       0       0  667002 / 1000000    12.0s h4
[ ]  673098       0       0  673098 / 1000000    12.1s h4
[ ]  679211       0       0  679211 / 1000000    12.2s h4
[ ]  685350       0       0  685350 / 1000000    12.3s h4
[ ]  691519       0       0  691519 / 1000000    12.4s h4 (collecting)
[ ]  696317       0       0  696317 / 1000000    12.5s h4
[ ]  700071       0       0  700071 / 1000000    12.6s h4
[ ]  704485       0       0  704485 / 1000000    12.7s h4
[ ]  708092       0       0  708092 / 1000000    12.8s h4
[ ]  712509       0       0  712509 / 1000000    12.9s h4
[ ]  718458       0       0  718458 / 1000000    13.0s h4
[ ]  724440       0       0  724440 / 1000000    13.1s h4
[ ]  730559       0       0  730559 / 1000000    13.2s h4
[ ]  736762       0       0  736762 / 1000000    13.3s h4
[ ]  741621       0       0  741621 / 1000000    13.4s h4
[ ]  747720       0       0  747720 / 1000000    13.5s h4
[ ]  753792       0       0  753792 / 1000000    13.6s h4
[ ]  759892       0       0  759892 / 1000000    13.7s h4
[ ]  763603       0       0  763603 / 1000000    13.8s h4
[ ]  768674       0       0  768674 / 1000000    13.9s h4
[ ]  774211       0       0  774211 / 1000000    14.0s h4
[ ]  777807       0       0  777807 / 1000000    14.1s h4 (collecting)
[ ]  781356       0       0  781356 / 1000000    14.2s h4
[ ]  787205       0       0  787205 / 1000000    14.3s h4
[ ]  793179       0       0  793179 / 1000000    14.4s h4
[ ]  799318       0       0  799318 / 1000000    14.5s h4
[ ]  805453       0       0  805453 / 1000000    14.6s h4
[ ]  811525       0       0  811525 / 1000000    14.7s h4
[ ]  817573       0       0  817573 / 1000000    14.8s h4
[ ]  823664       0       0  823664 / 1000000    14.9s h4
[ ]  829837       0       0  829837 / 1000000    15.0s h4
[ ]  835334       0       0  835334 / 1000000    15.1s h4
[ ]  841312       0       0  841312 / 1000000    15.2s h4
[ ]  847387       0       0  847387 / 1000000    15.3s h4
[ ]  853375       0       0  853375 / 1000000    15.4s h4
[ ]  859389       0       0  859389 / 1000000    15.5s h4
[ ]  865405       0       0  865405 / 1000000    15.6s h4
[ ]  871554       0       0  871554 / 1000000    15.7s h4
[ ]  877676       0       0  877676 / 1000000    15.8s h4
[ ]  883840       0       0  883840 / 1000000    15.9s h4
[ ]  890012       0       0  890012 / 1000000    16.0s h4
[ ]  896156       0       0  896156 / 1000000    16.1s h4
[ ]  902288       0       0  902288 / 1000000    16.2s h4
[ ]  908385       0       0  908385 / 1000000    16.3s h4
[ ]  914450       0       0  914450 / 1000000    16.4s h4
[ ]  920585       0       0  920585 / 1000000    16.5s h4
[ ]  926747       0       0  926747 / 1000000    16.6s h4
[ ]  932799       0       0  932799 / 1000000    16.7s h4
[ ]  938946       0       0  938946 / 1000000    16.8s h4
[ ]  945040       0       0  945040 / 1000000    16.9s h4
[ ]  951082       0       0  951082 / 1000000    17.0s h4
[ ]  957087       0       0  957087 / 1000000    17.1s h4
[ ]  963225       0       0  963225 / 1000000    17.2s h4
[ ]  969268       0       0  969268 / 1000000    17.3s h4
[ ]  975447       0       0  975447 / 1000000    17.4s h4
[ ]  981561       0       0  981561 / 1000000    17.5s h4
[ ]  987600       0       0  987600 / 1000000    17.6s h4
[ ]  993666       0       0  993666 / 1000000    17.7s h4
[ ]  999662       0       0  999662 / 1000000    17.8s h4
[✓] 1000000       0       0 1000000 / 1000000    17.8s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.4
-> removed   dates_calc.0.0.4
-> installed dates_calc.0.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 14:47.50 ---> saved as "7cbdc3569bf3ff41239da59c3fe46309aae87aac8e5789b1c5c99a48377ca50d"
Job succeeded
2026-03-25 14:48.06: Job succeeded