(not at the head of any monitored branch or PR)
2026-04-30 02:04.43: New job: test dates_calc.0.0.2 with dune.3.23.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
                              on debian-13-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/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
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 dune.3.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune.3.23.0~alpha2; \
    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" != 'dune.3.23.0~alpha2' && 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.2; \
    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.2' && 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.2) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.2; \
    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.2' && 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-04-30 02:04.43: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353-dune.3.23.0~alpha2-dates_calc.0.0.2-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 02:04.43: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
 (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 dune.3.23.0~alpha2 3.23.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.23.0~alpha2;\
             \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\" != 'dune.3.23.0~alpha2' && 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.2;\
             \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.2' && 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.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.2;\
             \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.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-30 02:04.43: Waiting for resource in pool OCluster
2026-04-30 08:44.31: Waiting for worker…
2026-04-30 08:46.32: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  88% (16769/18887)
Updating files:  89% (16810/18887)
Updating files:  90% (16999/18887)
Updating files:  91% (17188/18887)
Updating files:  92% (17377/18887)
Updating files:  93% (17565/18887)
Updating files:  94% (17754/18887)
Updating files:  95% (17943/18887)
Updating files:  96% (18132/18887)
Updating files:  97% (18321/18887)
Updating files:  98% (18510/18887)
Updating files:  99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.23.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.23.0~alpha2/opam          | 52 ++++++++++++++
 .../dune-action-trace.3.23.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.23.0~alpha2/opam             | 45 ++++++++++++
 .../dune-configurator.3.23.0~alpha2/opam           | 49 +++++++++++++
 packages/dune-glob/dune-glob.3.23.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.23.0~alpha2/opam           | 50 ++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam   | 41 +++++++++++
 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam      | 44 ++++++++++++
 packages/dune-site/dune-site.3.23.0~alpha2/opam    | 37 ++++++++++
 packages/dune/dune.3.23.0~alpha2/opam              | 80 ++++++++++++++++++++++
 packages/dyn/dyn.3.23.0~alpha2/opam                | 40 +++++++++++
 packages/fs-io/fs-io.3.23.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam  | 43 ++++++++++++
 packages/ordering/ordering.3.23.0~alpha2/opam      | 38 ++++++++++
 packages/stdune/stdune.3.23.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.23.0~alpha2/opam     | 38 ++++++++++
 packages/xdg/xdg.3.23.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 801 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
2026-04-30 08:47.35 ---> using "59750879172620501422dd230c4db220684ca7fe3e97409754eb72dcd3390183" 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-04-30 08:47.35 ---> using "b9ebb375f27da820f646269f579489455309b96c19083cd92f7f6ddd05a4b5f2" 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-04-30 08:47.36 ---> using "a861010f9e8d58738e62217a8c0fc067b85ae67b915e1ef93e08d814bb3c914c" 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.1
# 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, 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.3
2026-04-30 08:47.36 ---> using "a880c606232c92d84d818c349c45696fe9be139917bfa5f7b1065b497e8df441" 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-04-30 08:47.36 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 08:47.37 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 08:47.37 ---> using "f445e8c26fbca2dd0e343fb9cad949aab8e50ebe8f19361a10c799b6322ab39c" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [129 kB]
- Fetched 219 kB in 0s (1225 kB/s)
- Reading package lists...
- 
2026-04-30 08:47.38 ---> using "b966a5b49a15ba3eb63ca44315c18e89b0e8b1ab5327a74622eb8f27705503f7" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
dune is now pinned to version 3.23.0~alpha2
2026-04-30 08:47.38 ---> using "25765793fc7cef20054e052a9de3d7d38466f3811e35fee48d28bad9710db3b2" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.23.0~alpha2;\
                        \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\" != 'dune.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.23.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.23.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2  (cached)
-> installed dune.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:47.38 ---> using "8638839e5ae5cf3f1965d4f7cf42b88935780d5bcff7e41a79deffdd572bdcbf" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.2  (https://opam.ocaml.org/cache)
-> installed dates_calc.0.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:47.48 ---> saved as "de1ff61d672f9c4cff803bcc45860bec368c97b5985285c7ccecdb8cbd8e4071"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.2
=== install 16 packages
  - install   alcotest           1.9.1  [required by dates_calc]
  - install   astring            0.8.5  [required by alcotest]
  - install   cmdliner           2.1.1  [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.1  (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.2  (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
-> installed ocaml-syntax-shims.1.0.0
-> 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 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.1
-> removed   dates_calc.0.0.2
-> 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.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:49.11 ---> saved as "333f2113faee6c597690f55967b3b157c24b390079d296240d0a1de6d93d2a4a"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.2: extract]
-> retrieved dates_calc.0.0.2  (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/4.14/.opam-switch/build/dates_calc.0.0.2)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `SUC7AL96'.
- 
-   [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.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/dates_calc.0.0.2/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.005s. 5 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 352369256
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     406       0       0     406 /    1000     0.1s anon_test_1
[ ]     730       0       0     730 /    1000     0.2s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.3s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]      11       0       0      11 /    1000     0.1s anon_test_2
[ ]      26       0       0      26 /    1000     0.2s anon_test_2
[ ]      39       0       0      39 /    1000     0.3s anon_test_2
[ ]      57       0       0      57 /    1000     0.4s anon_test_2
[ ]      68       0       0      68 /    1000     0.5s anon_test_2
[ ]      80       0       0      80 /    1000     0.6s anon_test_2
[ ]      99       0       0      99 /    1000     0.8s anon_test_2
[ ]     115       0       0     115 /    1000     0.9s anon_test_2
[ ]     128       0       0     128 /    1000     1.0s anon_test_2
[ ]     143       0       0     143 /    1000     1.1s anon_test_2
[ ]     166       0       0     166 /    1000     1.2s anon_test_2
[ ]     179       0       0     179 /    1000     1.3s anon_test_2
[ ]     191       0       0     191 /    1000     1.4s anon_test_2
[ ]     203       0       0     203 /    1000     1.5s anon_test_2
[ ]     222       0       0     222 /    1000     1.6s anon_test_2
[ ]     236       0       0     236 /    1000     1.7s anon_test_2
[ ]     255       0       0     255 /    1000     1.8s anon_test_2
[ ]     280       0       0     280 /    1000     1.9s anon_test_2
[ ]     304       0       0     304 /    1000     2.0s anon_test_2
[ ]     319       0       0     319 /    1000     2.1s anon_test_2
[ ]     335       0       0     335 /    1000     2.2s anon_test_2
[ ]     350       0       0     350 /    1000     2.3s anon_test_2
[ ]     365       0       0     365 /    1000     2.4s anon_test_2
[ ]     376       0       0     376 /    1000     2.5s anon_test_2
[ ]     387       0       0     387 /    1000     2.7s anon_test_2
[ ]     402       0       0     402 /    1000     2.8s anon_test_2
[ ]     421       0       0     421 /    1000     2.9s anon_test_2
[ ]     437       0       0     437 /    1000     3.0s anon_test_2
[ ]     448       0       0     448 /    1000     3.1s anon_test_2
[ ]     457       0       0     457 /    1000     3.2s anon_test_2
[ ]     469       0       0     469 /    1000     3.3s anon_test_2
[ ]     485       0       0     485 /    1000     3.4s anon_test_2
[ ]     497       0       0     497 /    1000     3.5s anon_test_2
[ ]     515       0       0     515 /    1000     3.6s anon_test_2
[ ]     530       0       0     530 /    1000     3.7s anon_test_2
[ ]     542       0       0     542 /    1000     3.8s anon_test_2
[ ]     560       0       0     560 /    1000     3.9s anon_test_2
[ ]     581       0       0     581 /    1000     4.1s anon_test_2
[ ]     609       0       0     609 /    1000     4.2s anon_test_2
[ ]     629       0       0     629 /    1000     4.3s anon_test_2
[ ]     655       0       0     655 /    1000     4.4s anon_test_2
[ ]     676       0       0     676 /    1000     4.5s anon_test_2
[ ]     696       0       0     696 /    1000     4.6s anon_test_2
[ ]     714       0       0     714 /    1000     4.7s anon_test_2
[ ]     728       0       0     728 /    1000     4.8s anon_test_2
[ ]     744       0       0     744 /    1000     4.9s anon_test_2
[ ]     756       0       0     756 /    1000     5.0s anon_test_2
[ ]     775       0       0     775 /    1000     5.1s anon_test_2
[ ]     791       0       0     791 /    1000     5.2s anon_test_2
[ ]     806       0       0     806 /    1000     5.3s anon_test_2
[ ]     825       0       0     825 /    1000     5.4s anon_test_2
[ ]     842       0       0     842 /    1000     5.5s anon_test_2
[ ]     857       0       0     857 /    1000     5.7s anon_test_2
[ ]     870       0       0     870 /    1000     5.8s anon_test_2
[ ]     887       0       0     887 /    1000     5.9s anon_test_2
[ ]     901       0       0     901 /    1000     6.0s anon_test_2
[ ]     919       0       0     919 /    1000     6.1s anon_test_2
[ ]     940       0       0     940 /    1000     6.2s anon_test_2
[ ]     959       0       0     959 /    1000     6.3s anon_test_2
[ ]     976       0       0     976 /    1000     6.4s anon_test_2
[ ]     987       0       0     987 /    1000     6.5s anon_test_2
[✓]    1000       0       0    1000 /    1000     6.6s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9819       0       0    9819 / 1000000     0.1s h1
[ ]   18678       0       0   18678 / 1000000     0.2s h1 (collecting)
[ ]   28322       0       0   28322 / 1000000     0.3s h1
[ ]   37655       0       0   37655 / 1000000     0.4s h1
[ ]   46574       0       0   46574 / 1000000     0.5s h1
[ ]   54771       0       0   54771 / 1000000     0.6s h1
[ ]   64061       0       0   64061 / 1000000     0.7s h1
[ ]   70994       0       0   70994 / 1000000     0.8s h1
[ ]   78756       0       0   78756 / 1000000     0.9s h1
[ ]   86580       0       0   86580 / 1000000     1.0s h1
[ ]   95860       0       0   95860 / 1000000     1.1s h1
[ ]  105840       0       0  105840 / 1000000     1.2s h1
[ ]  118527       0       0  118527 / 1000000     1.3s h1
[ ]  134517       0       0  134517 / 1000000     1.4s h1
[ ]  150699       0       0  150699 / 1000000     1.5s h1
[ ]  166827       0       0  166827 / 1000000     1.6s h1
[ ]  182924       0       0  182924 / 1000000     1.7s h1
[ ]  198792       0       0  198792 / 1000000     1.8s h1 (collecting)
[ ]  215094       0       0  215094 / 1000000     1.9s h1
[ ]  230781       0       0  230781 / 1000000     2.0s h1
[ ]  246112       0       0  246112 / 1000000     2.1s h1
[ ]  256896       0       0  256896 / 1000000     2.2s h1
[ ]  270109       0       0  270109 / 1000000     2.3s h1
[ ]  282848       0       0  282848 / 1000000     2.4s h1 (   testing)
[ ]  296649       0       0  296649 / 1000000     2.5s h1
[ ]  310105       0       0  310105 / 1000000     2.6s h1
[ ]  325011       0       0  325011 / 1000000     2.7s h1
[ ]  341429       0       0  341429 / 1000000     2.8s h1
[ ]  353259       0       0  353259 / 1000000     2.9s h1
[ ]  364909       0       0  364909 / 1000000     3.0s h1
[ ]  376345       0       0  376345 / 1000000     3.1s h1
[ ]  385942       0       0  385942 / 1000000     3.2s h1
[ ]  399429       0       0  399429 / 1000000     3.3s h1
[ ]  415100       0       0  415100 / 1000000     3.4s h1
[ ]  429981       0       0  429981 / 1000000     3.5s h1
[ ]  445678       0       0  445678 / 1000000     3.6s h1
[ ]  461833       0       0  461833 / 1000000     3.7s h1
[ ]  477980       0       0  477980 / 1000000     3.8s h1
[ ]  490031       0       0  490031 / 1000000     3.9s h1
[ ]  506407       0       0  506407 / 1000000     4.0s h1
[ ]  522316       0       0  522316 / 1000000     4.1s h1
[ ]  538805       0       0  538805 / 1000000     4.2s h1 (collecting)
[ ]  552225       0       0  552225 / 1000000     4.3s h1 (collecting)
[ ]  563299       0       0  563299 / 1000000     4.4s h1
[ ]  578107       0       0  578107 / 1000000     4.5s h1
[ ]  591776       0       0  591776 / 1000000     4.6s h1
[ ]  607680       0       0  607680 / 1000000     4.7s h1
[ ]  623796       0       0  623796 / 1000000     4.8s h1
[ ]  639586       0       0  639586 / 1000000     4.9s h1
[ ]  650869       0       0  650869 / 1000000     5.0s h1
[ ]  666380       0       0  666380 / 1000000     5.1s h1
[ ]  681234       0       0  681234 / 1000000     5.2s h1
[ ]  696786       0       0  696786 / 1000000     5.3s h1
[ ]  712845       0       0  712845 / 1000000     5.4s h1
[ ]  727187       0       0  727187 / 1000000     5.5s h1
[ ]  743447       0       0  743447 / 1000000     5.6s h1
[ ]  759429       0       0  759429 / 1000000     5.7s h1
[ ]  775582       0       0  775582 / 1000000     5.8s h1
[ ]  791575       0       0  791575 / 1000000     5.9s h1
[ ]  807935       0       0  807935 / 1000000     6.0s h1
[ ]  824362       0       0  824362 / 1000000     6.1s h1
[ ]  840382       0       0  840382 / 1000000     6.2s h1
[ ]  854407       0       0  854407 / 1000000     6.3s h1
[ ]  869982       0       0  869982 / 1000000     6.4s h1
[ ]  885308       0       0  885308 / 1000000     6.5s h1
[ ]  898644       0       0  898644 / 1000000     6.6s h1
[ ]  908420       0       0  908420 / 1000000     6.7s h1
[ ]  918243       0       0  918243 / 1000000     6.8s h1
[ ]  928158       0       0  928158 / 1000000     6.9s h1
[ ]  937385       0       0  937385 / 1000000     7.0s h1
[ ]  950024       0       0  950024 / 1000000     7.1s h1 (   testing)
[ ]  965454       0       0  965454 / 1000000     7.2s h1
[ ]  981474       0       0  981474 / 1000000     7.3s h1
[ ]  997682       0       0  997682 / 1000000     7.4s h1
[✓] 1000000       0       0 1000000 / 1000000     7.4s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    8325       0       0    8325 / 1000000     0.1s h2
[ ]   15949       0       0   15949 / 1000000     0.2s h2
[ ]   22872       0       0   22872 / 1000000     0.3s h2
[ ]   28639       0       0   28639 / 1000000     0.4s h2
[ ]   34948       0       0   34948 / 1000000     0.5s h2
[ ]   43152       0       0   43152 / 1000000     0.6s h2
[ ]   51113       0       0   51113 / 1000000     0.7s h2 (   testing)
[ ]   58251       0       0   58251 / 1000000     0.8s h2
[ ]   63838       0       0   63838 / 1000000     0.9s h2
[ ]   69104       0       0   69104 / 1000000     1.0s h2
[ ]   74386       0       0   74386 / 1000000     1.1s h2
[ ]   80745       0       0   80745 / 1000000     1.2s h2
[ ]   85811       0       0   85811 / 1000000     1.3s h2
[ ]   91212       0       0   91212 / 1000000     1.4s h2
[ ]   98562       0       0   98562 / 1000000     1.5s h2
[ ]  106971       0       0  106971 / 1000000     1.6s h2
[ ]  115224       0       0  115224 / 1000000     1.7s h2
[ ]  123565       0       0  123565 / 1000000     1.8s h2
[ ]  131851       0       0  131851 / 1000000     1.9s h2
[ ]  140205       0       0  140205 / 1000000     2.0s h2
[ ]  148538       0       0  148538 / 1000000     2.1s h2
[ ]  156930       0       0  156930 / 1000000     2.2s h2
[ ]  165311       0       0  165311 / 1000000     2.3s h2
[ ]  173730       0       0  173730 / 1000000     2.4s h2
[ ]  182087       0       0  182087 / 1000000     2.5s h2
[ ]  190562       0       0  190562 / 1000000     2.6s h2
[ ]  199055       0       0  199055 / 1000000     2.7s h2
[ ]  207427       0       0  207427 / 1000000     2.8s h2
[ ]  215822       0       0  215822 / 1000000     2.9s h2
[ ]  224272       0       0  224272 / 1000000     3.0s h2
[ ]  232663       0       0  232663 / 1000000     3.1s h2
[ ]  241015       0       0  241015 / 1000000     3.2s h2
[ ]  249410       0       0  249410 / 1000000     3.3s h2
[ ]  257867       0       0  257867 / 1000000     3.4s h2
[ ]  266286       0       0  266286 / 1000000     3.5s h2
[ ]  274719       0       0  274719 / 1000000     3.6s h2
[ ]  283125       0       0  283125 / 1000000     3.7s h2
[ ]  291513       0       0  291513 / 1000000     3.8s h2
[ ]  299873       0       0  299873 / 1000000     3.9s h2
[ ]  308154       0       0  308154 / 1000000     4.0s h2
[ ]  316524       0       0  316524 / 1000000     4.1s h2
[ ]  324874       0       0  324874 / 1000000     4.2s h2 (collecting)
[ ]  333213       0       0  333213 / 1000000     4.3s h2
[ ]  341665       0       0  341665 / 1000000     4.4s h2
[ ]  350097       0       0  350097 / 1000000     4.5s h2
[ ]  358448       0       0  358448 / 1000000     4.6s h2
[ ]  366845       0       0  366845 / 1000000     4.7s h2
[ ]  375320       0       0  375320 / 1000000     4.8s h2
[ ]  381230       0       0  381230 / 1000000     4.9s h2
[ ]  386422       0       0  386422 / 1000000     5.0s h2
[ ]  393460       0       0  393460 / 1000000     5.1s h2
[ ]  400175       0       0  400175 / 1000000     5.2s h2
[ ]  407747       0       0  407747 / 1000000     5.3s h2
[ ]  416188       0       0  416188 / 1000000     5.4s h2
[ ]  424517       0       0  424517 / 1000000     5.5s h2
[ ]  432928       0       0  432928 / 1000000     5.6s h2
[ ]  441349       0       0  441349 / 1000000     5.7s h2
[ ]  449642       0       0  449642 / 1000000     5.8s h2
[ ]  457164       0       0  457164 / 1000000     5.9s h2
[ ]  463201       0       0  463201 / 1000000     6.0s h2
[ ]  470770       0       0  470770 / 1000000     6.1s h2
[ ]  479044       0       0  479044 / 1000000     6.2s h2
[ ]  486968       0       0  486968 / 1000000     6.3s h2
[ ]  495228       0       0  495228 / 1000000     6.4s h2
[ ]  503517       0       0  503517 / 1000000     6.5s h2
[ ]  511809       0       0  511809 / 1000000     6.6s h2
[ ]  520192       0       0  520192 / 1000000     6.7s h2
[ ]  527798       0       0  527798 / 1000000     6.8s h2
[ ]  532820       0       0  532820 / 1000000     6.9s h2
[ ]  539399       0       0  539399 / 1000000     7.0s h2
[ ]  547780       0       0  547780 / 1000000     7.1s h2
[ ]  556193       0       0  556193 / 1000000     7.2s h2
[ ]  564588       0       0  564588 / 1000000     7.3s h2
[ ]  572878       0       0  572878 / 1000000     7.4s h2
[ ]  581186       0       0  581186 / 1000000     7.5s h2
[ ]  589467       0       0  589467 / 1000000     7.6s h2
[ ]  597393       0       0  597393 / 1000000     7.7s h2
[ ]  604979       0       0  604979 / 1000000     7.8s h2
[ ]  613277       0       0  613277 / 1000000     7.9s h2
[ ]  620898       0       0  620898 / 1000000     8.0s h2
[ ]  629113       0       0  629113 / 1000000     8.1s h2
[ ]  637413       0       0  637413 / 1000000     8.2s h2
[ ]  644910       0       0  644910 / 1000000     8.3s h2
[ ]  652910       0       0  652910 / 1000000     8.4s h2
[ ]  659465       0       0  659465 / 1000000     8.5s h2
[ ]  667852       0       0  667852 / 1000000     8.6s h2
[ ]  676187       0       0  676187 / 1000000     8.7s h2
[ ]  683891       0       0  683891 / 1000000     8.8s h2
[ ]  690823       0       0  690823 / 1000000     8.9s h2
[ ]  698986       0       0  698986 / 1000000     9.0s h2
[ ]  705383       0       0  705383 / 1000000     9.1s h2 (collecting)
[ ]  711468       0       0  711468 / 1000000     9.2s h2
[ ]  715508       0       0  715508 / 1000000     9.3s h2
[ ]  719570       0       0  719570 / 1000000     9.4s h2
[ ]  724549       0       0  724549 / 1000000     9.5s h2
[ ]  731447       0       0  731447 / 1000000     9.6s h2
[ ]  739275       0       0  739275 / 1000000     9.7s h2
[ ]  747633       0       0  747633 / 1000000     9.8s h2
[ ]  755834       0       0  755834 / 1000000     9.9s h2
[ ]  764143       0       0  764143 / 1000000    10.0s h2
[ ]  772489       0       0  772489 / 1000000    10.1s h2
[ ]  780837       0       0  780837 / 1000000    10.2s h2
[ ]  789144       0       0  789144 / 1000000    10.3s h2
[ ]  795528       0       0  795528 / 1000000    10.4s h2
[ ]  803602       0       0  803602 / 1000000    10.5s h2
[ ]  810923       0       0  810923 / 1000000    10.6s h2
[ ]  819303       0       0  819303 / 1000000    10.7s h2
[ ]  825376       0       0  825376 / 1000000    10.8s h2
[ ]  832924       0       0  832924 / 1000000    10.9s h2
[ ]  841101       0       0  841101 / 1000000    11.0s h2
[ ]  849627       0       0  849627 / 1000000    11.1s h2
[ ]  857669       0       0  857669 / 1000000    11.2s h2
[ ]  865944       0       0  865944 / 1000000    11.3s h2 (collecting)
[ ]  874344       0       0  874344 / 1000000    11.4s h2
[ ]  882784       0       0  882784 / 1000000    11.5s h2
[ ]  891036       0       0  891036 / 1000000    11.6s h2
[ ]  899375       0       0  899375 / 1000000    11.7s h2
[ ]  907887       0       0  907887 / 1000000    11.8s h2
[ ]  916256       0       0  916256 / 1000000    11.9s h2
[ ]  924434       0       0  924434 / 1000000    12.0s h2
[ ]  932873       0       0  932873 / 1000000    12.1s h2
[ ]  941010       0       0  941010 / 1000000    12.2s h2
[ ]  949353       0       0  949353 / 1000000    12.3s h2
[ ]  957807       0       0  957807 / 1000000    12.4s h2
[ ]  966185       0       0  966185 / 1000000    12.5s h2
[ ]  974175       0       0  974175 / 1000000    12.6s h2
[ ]  982632       0       0  982632 / 1000000    12.7s h2
[ ]  991084       0       0  991084 / 1000000    12.8s h2
[ ]  999460       0       0  999460 / 1000000    12.9s h2
[✓] 1000000       0       0 1000000 / 1000000    12.9s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]   16311       0       0   16311 / 1000000     0.1s h3
[ ]   31664       0       0   31664 / 1000000     0.2s h3
[ ]   48000       0       0   48000 / 1000000     0.3s h3
[ ]   63945       0       0   63945 / 1000000     0.4s h3
[ ]   80379       0       0   80379 / 1000000     0.5s h3
[ ]   96910       0       0   96910 / 1000000     0.6s h3
[ ]  112770       0       0  112770 / 1000000     0.7s h3
[ ]  129214       0       0  129214 / 1000000     0.8s h3
[ ]  145180       0       0  145180 / 1000000     0.9s h3
[ ]  161625       0       0  161625 / 1000000     1.0s h3
[ ]  178120       0       0  178120 / 1000000     1.1s h3
[ ]  194625       0       0  194625 / 1000000     1.2s h3
[ ]  211119       0       0  211119 / 1000000     1.3s h3
[ ]  224921       0       0  224921 / 1000000     1.4s h3
[ ]  240383       0       0  240383 / 1000000     1.5s h3
[ ]  256122       0       0  256122 / 1000000     1.6s h3
[ ]  271386       0       0  271386 / 1000000     1.7s h3
[ ]  287745       0       0  287745 / 1000000     1.8s h3
[ ]  303658       0       0  303658 / 1000000     1.9s h3
[ ]  319980       0       0  319980 / 1000000     2.0s h3
[ ]  336514       0       0  336514 / 1000000     2.1s h3
[ ]  352195       0       0  352195 / 1000000     2.2s h3
[ ]  368700       0       0  368700 / 1000000     2.3s h3
[ ]  385164       0       0  385164 / 1000000     2.4s h3
[ ]  401685       0       0  401685 / 1000000     2.5s h3
[ ]  418233       0       0  418233 / 1000000     2.6s h3 (collecting)
[ ]  434668       0       0  434668 / 1000000     2.7s h3
[ ]  451101       0       0  451101 / 1000000     2.8s h3
[ ]  467563       0       0  467563 / 1000000     2.9s h3
[ ]  483944       0       0  483944 / 1000000     3.0s h3
[ ]  500300       0       0  500300 / 1000000     3.1s h3
[ ]  514804       0       0  514804 / 1000000     3.2s h3
[ ]  525647       0       0  525647 / 1000000     3.3s h3
[ ]  541873       0       0  541873 / 1000000     3.4s h3
[ ]  552715       0       0  552715 / 1000000     3.5s h3
[ ]  565000       0       0  565000 / 1000000     3.6s h3 (collecting)
[ ]  581366       0       0  581366 / 1000000     3.7s h3
[ ]  597689       0       0  597689 / 1000000     3.8s h3
[ ]  614212       0       0  614212 / 1000000     3.9s h3
[ ]  629065       0       0  629065 / 1000000     4.0s h3
[ ]  642963       0       0  642963 / 1000000     4.1s h3
[ ]  654762       0       0  654762 / 1000000     4.2s h3 (collecting)
[ ]  667802       0       0  667802 / 1000000     4.3s h3
[ ]  677434       0       0  677434 / 1000000     4.4s h3
[ ]  687399       0       0  687399 / 1000000     4.5s h3
[ ]  697322       0       0  697322 / 1000000     4.6s h3
[ ]  713865       0       0  713865 / 1000000     4.7s h3
[ ]  730312       0       0  730312 / 1000000     4.8s h3
[ ]  746643       0       0  746643 / 1000000     4.9s h3
[ ]  763134       0       0  763134 / 1000000     5.0s h3
[ ]  779591       0       0  779591 / 1000000     5.1s h3
[ ]  795990       0       0  795990 / 1000000     5.2s h3
[ ]  812485       0       0  812485 / 1000000     5.3s h3
[ ]  828952       0       0  828952 / 1000000     5.4s h3 (collecting)
[ ]  845430       0       0  845430 / 1000000     5.5s h3
[ ]  861859       0       0  861859 / 1000000     5.6s h3 (   testing)
[ ]  878327       0       0  878327 / 1000000     5.7s h3
[ ]  894813       0       0  894813 / 1000000     5.8s h3
[ ]  911271       0       0  911271 / 1000000     5.9s h3
[ ]  926889       0       0  926889 / 1000000     6.0s h3
[ ]  937157       0       0  937157 / 1000000     6.1s h3
[ ]  947783       0       0  947783 / 1000000     6.2s h3
[ ]  964276       0       0  964276 / 1000000     6.3s h3
[ ]  980627       0       0  980627 / 1000000     6.4s h3
[ ]  997074       0       0  997074 / 1000000     6.5s h3
[✓] 1000000       0       0 1000000 / 1000000     6.5s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    5549       0       0    5549 / 1000000     0.1s h4
[ ]   11142       0       0   11142 / 1000000     0.2s h4
[ ]   16641       0       0   16641 / 1000000     0.3s h4
[ ]   22209       0       0   22209 / 1000000     0.4s h4
[ ]   27772       0       0   27772 / 1000000     0.5s h4
[ ]   33280       0       0   33280 / 1000000     0.6s h4
[ ]   38727       0       0   38727 / 1000000     0.7s h4
[ ]   42440       0       0   42440 / 1000000     0.8s h4
[ ]   47693       0       0   47693 / 1000000     0.9s h4
[ ]   53146       0       0   53146 / 1000000     1.0s h4
[ ]   58656       0       0   58656 / 1000000     1.1s h4
[ ]   64200       0       0   64200 / 1000000     1.2s h4
[ ]   69746       0       0   69746 / 1000000     1.3s h4
[ ]   75181       0       0   75181 / 1000000     1.4s h4
[ ]   80677       0       0   80677 / 1000000     1.5s h4
[ ]   86178       0       0   86178 / 1000000     1.6s h4
[ ]   91557       0       0   91557 / 1000000     1.7s h4
[ ]   97053       0       0   97053 / 1000000     1.8s h4
[ ]  102007       0       0  102007 / 1000000     1.9s h4
[ ]  106802       0       0  106802 / 1000000     2.0s h4
[ ]  109836       0       0  109836 / 1000000     2.1s h4
[ ]  113888       0       0  113888 / 1000000     2.2s h4
[ ]  118064       0       0  118064 / 1000000     2.3s h4
[ ]  123038       0       0  123038 / 1000000     2.4s h4
[ ]  127352       0       0  127352 / 1000000     2.5s h4
[ ]  130546       0       0  130546 / 1000000     2.6s h4
[ ]  135020       0       0  135020 / 1000000     2.7s h4
[ ]  138779       0       0  138779 / 1000000     2.8s h4
[ ]  143123       0       0  143123 / 1000000     2.9s h4
[ ]  148554       0       0  148554 / 1000000     3.0s h4
[ ]  154053       0       0  154053 / 1000000     3.1s h4
[ ]  157705       0       0  157705 / 1000000     3.2s h4
[ ]  161288       0       0  161288 / 1000000     3.3s h4
[ ]  166556       0       0  166556 / 1000000     3.4s h4
[ ]  172097       0       0  172097 / 1000000     3.5s h4
[ ]  177577       0       0  177577 / 1000000     3.6s h4
[ ]  183147       0       0  183147 / 1000000     3.7s h4
[ ]  187974       0       0  187974 / 1000000     3.8s h4
[ ]  190988       0       0  190988 / 1000000     3.9s h4
[ ]  194100       0       0  194100 / 1000000     4.0s h4
[ ]  199258       0       0  199258 / 1000000     4.1s h4
[ ]  204561       0       0  204561 / 1000000     4.2s h4
[ ]  208999       0       0  208999 / 1000000     4.3s h4
[ ]  212410       0       0  212410 / 1000000     4.4s h4
[ ]  216054       0       0  216054 / 1000000     4.5s h4
[ ]  219227       0       0  219227 / 1000000     4.6s h4
[ ]  222361       0       0  222361 / 1000000     4.7s h4
[ ]  225544       0       0  225544 / 1000000     4.8s h4
[ ]  229227       0       0  229227 / 1000000     4.9s h4
[ ]  233744       0       0  233744 / 1000000     5.0s h4
[ ]  238581       0       0  238581 / 1000000     5.1s h4
[ ]  244008       0       0  244008 / 1000000     5.2s h4
[ ]  249520       0       0  249520 / 1000000     5.3s h4
[ ]  254997       0       0  254997 / 1000000     5.4s h4
[ ]  260315       0       0  260315 / 1000000     5.5s h4
[ ]  265783       0       0  265783 / 1000000     5.6s h4
[ ]  271344       0       0  271344 / 1000000     5.7s h4
[ ]  276680       0       0  276680 / 1000000     5.8s h4
[ ]  282085       0       0  282085 / 1000000     5.9s h4
[ ]  286903       0       0  286903 / 1000000     6.0s h4
[ ]  290896       0       0  290896 / 1000000     6.1s h4
[ ]  294462       0       0  294462 / 1000000     6.2s h4
[ ]  297881       0       0  297881 / 1000000     6.3s h4
[ ]  302140       0       0  302140 / 1000000     6.4s h4
[ ]  305135       0       0  305135 / 1000000     6.5s h4
[ ]  308233       0       0  308233 / 1000000     6.6s h4
[ ]  311673       0       0  311673 / 1000000     6.7s h4
[ ]  317114       0       0  317114 / 1000000     6.8s h4
[ ]  321681       0       0  321681 / 1000000     6.9s h4
[ ]  325431       0       0  325431 / 1000000     7.0s h4
[ ]  328997       0       0  328997 / 1000000     7.1s h4
[ ]  332219       0       0  332219 / 1000000     7.2s h4
[ ]  335311       0       0  335311 / 1000000     7.3s h4
[ ]  338297       0       0  338297 / 1000000     7.4s h4
[ ]  341409       0       0  341409 / 1000000     7.5s h4
[ ]  344475       0       0  344475 / 1000000     7.6s h4
[ ]  347606       0       0  347606 / 1000000     7.7s h4
[ ]  350779       0       0  350779 / 1000000     7.8s h4
[ ]  353943       0       0  353943 / 1000000     7.9s h4
[ ]  357105       0       0  357105 / 1000000     8.0s h4
[ ]  360204       0       0  360204 / 1000000     8.1s h4
[ ]  363358       0       0  363358 / 1000000     8.2s h4
[ ]  366408       0       0  366408 / 1000000     8.3s h4
[ ]  369482       0       0  369482 / 1000000     8.4s h4
[ ]  372507       0       0  372507 / 1000000     8.5s h4 (generating)
[ ]  375499       0       0  375499 / 1000000     8.6s h4
[ ]  378420       0       0  378420 / 1000000     8.7s h4
[ ]  381327       0       0  381327 / 1000000     8.8s h4
[ ]  384247       0       0  384247 / 1000000     8.9s h4
[ ]  387037       0       0  387037 / 1000000     9.0s h4
[ ]  390493       0       0  390493 / 1000000     9.1s h4
[ ]  394261       0       0  394261 / 1000000     9.2s h4
[ ]  398077       0       0  398077 / 1000000     9.3s h4
[ ]  401297       0       0  401297 / 1000000     9.4s h4
[ ]  404475       0       0  404475 / 1000000     9.5s h4
[ ]  407381       0       0  407381 / 1000000     9.6s h4
[ ]  410284       0       0  410284 / 1000000     9.7s h4
[ ]  413499       0       0  413499 / 1000000     9.8s h4
[ ]  416662       0       0  416662 / 1000000     9.9s h4
[ ]  419820       0       0  419820 / 1000000    10.0s h4
[ ]  422918       0       0  422918 / 1000000    10.1s h4
[ ]  426075       0       0  426075 / 1000000    10.2s h4
[ ]  429076       0       0  429076 / 1000000    10.3s h4 (collecting)
[ ]  432223       0       0  432223 / 1000000    10.4s h4
[ ]  435419       0       0  435419 / 1000000    10.5s h4
[ ]  438484       0       0  438484 / 1000000    10.6s h4
[ ]  441639       0       0  441639 / 1000000    10.7s h4
[ ]  444722       0       0  444722 / 1000000    10.8s h4
[ ]  447756       0       0  447756 / 1000000    10.9s h4
[ ]  450913       0       0  450913 / 1000000    11.0s h4
[ ]  453993       0       0  453993 / 1000000    11.1s h4
[ ]  457115       0       0  457115 / 1000000    11.2s h4
[ ]  460229       0       0  460229 / 1000000    11.3s h4
[ ]  463276       0       0  463276 / 1000000    11.4s h4
[ ]  466257       0       0  466257 / 1000000    11.5s h4
[ ]  469300       0       0  469300 / 1000000    11.6s h4
[ ]  472377       0       0  472377 / 1000000    11.7s h4
[ ]  475393       0       0  475393 / 1000000    11.8s h4
[ ]  478627       0       0  478627 / 1000000    11.9s h4
[ ]  482051       0       0  482051 / 1000000    12.0s h4
[ ]  484939       0       0  484939 / 1000000    12.1s h4
[ ]  488076       0       0  488076 / 1000000    12.2s h4
[ ]  491000       0       0  491000 / 1000000    12.3s h4
[ ]  493962       0       0  493962 / 1000000    12.4s h4
[ ]  496968       0       0  496968 / 1000000    12.5s h4
[ ]  499970       0       0  499970 / 1000000    12.6s h4
[ ]  503035       0       0  503035 / 1000000    12.7s h4
[ ]  506178       0       0  506178 / 1000000    12.8s h4
[ ]  509269       0       0  509269 / 1000000    12.9s h4
[ ]  512374       0       0  512374 / 1000000    13.0s h4
[ ]  516259       0       0  516259 / 1000000    13.1s h4
[ ]  521526       0       0  521526 / 1000000    13.2s h4
[ ]  525912       0       0  525912 / 1000000    13.3s h4
[ ]  529039       0       0  529039 / 1000000    13.4s h4
[ ]  532084       0       0  532084 / 1000000    13.5s h4
[ ]  535256       0       0  535256 / 1000000    13.6s h4
[ ]  538426       0       0  538426 / 1000000    13.7s h4
[ ]  541360       0       0  541360 / 1000000    13.8s h4
[ ]  544422       0       0  544422 / 1000000    13.9s h4
[ ]  547545       0       0  547545 / 1000000    14.0s h4 (collecting)
[ ]  550877       0       0  550877 / 1000000    14.1s h4
[ ]  553905       0       0  553905 / 1000000    14.2s h4
[ ]  556903       0       0  556903 / 1000000    14.3s h4
[ ]  560051       0       0  560051 / 1000000    14.4s h4
[ ]  563259       0       0  563259 / 1000000    14.5s h4
[ ]  566593       0       0  566593 / 1000000    14.6s h4
[ ]  569661       0       0  569661 / 1000000    14.7s h4
[ ]  572630       0       0  572630 / 1000000    14.8s h4
[ ]  575769       0       0  575769 / 1000000    14.9s h4
[ ]  578953       0       0  578953 / 1000000    15.0s h4
[ ]  582098       0       0  582098 / 1000000    15.1s h4
[ ]  585271       0       0  585271 / 1000000    15.2s h4
[ ]  588420       0       0  588420 / 1000000    15.3s h4
[ ]  591647       0       0  591647 / 1000000    15.4s h4
[ ]  594935       0       0  594935 / 1000000    15.5s h4
[ ]  598144       0       0  598144 / 1000000    15.6s h4
[ ]  601295       0       0  601295 / 1000000    15.7s h4
[ ]  604378       0       0  604378 / 1000000    15.8s h4
[ ]  607484       0       0  607484 / 1000000    15.9s h4
[ ]  610586       0       0  610586 / 1000000    16.0s h4
[ ]  613627       0       0  613627 / 1000000    16.1s h4
[ ]  616848       0       0  616848 / 1000000    16.2s h4
[ ]  619947       0       0  619947 / 1000000    16.3s h4
[ ]  623012       0       0  623012 / 1000000    16.4s h4
[ ]  626085       0       0  626085 / 1000000    16.5s h4
[ ]  629233       0       0  629233 / 1000000    16.6s h4
[ ]  632452       0       0  632452 / 1000000    16.7s h4
[ ]  635633       0       0  635633 / 1000000    16.8s h4
[ ]  638780       0       0  638780 / 1000000    16.9s h4
[ ]  641888       0       0  641888 / 1000000    17.0s h4
[ ]  644945       0       0  644945 / 1000000    17.1s h4
[ ]  648041       0       0  648041 / 1000000    17.2s h4
[ ]  651188       0       0  651188 / 1000000    17.3s h4
[ ]  654280       0       0  654280 / 1000000    17.4s h4
[ ]  657404       0       0  657404 / 1000000    17.5s h4
[ ]  660477       0       0  660477 / 1000000    17.6s h4
[ ]  663609       0       0  663609 / 1000000    17.7s h4
[ ]  666807       0       0  666807 / 1000000    17.8s h4
[ ]  669912       0       0  669912 / 1000000    17.9s h4
[ ]  672089       0       0  672089 / 1000000    18.0s h4
[ ]  675042       0       0  675042 / 1000000    18.1s h4
[ ]  677643       0       0  677643 / 1000000    18.2s h4
[ ]  680910       0       0  680910 / 1000000    18.3s h4
[ ]  683760       0       0  683760 / 1000000    18.4s h4
[ ]  686425       0       0  686425 / 1000000    18.5s h4
[ ]  689187       0       0  689187 / 1000000    18.6s h4
[ ]  692070       0       0  692070 / 1000000    18.7s h4
[ ]  695124       0       0  695124 / 1000000    18.8s h4
[ ]  698158       0       0  698158 / 1000000    18.9s h4
[ ]  701261       0       0  701261 / 1000000    19.0s h4
[ ]  704261       0       0  704261 / 1000000    19.1s h4
[ ]  707430       0       0  707430 / 1000000    19.2s h4
[ ]  710579       0       0  710579 / 1000000    19.3s h4
[ ]  713675       0       0  713675 / 1000000    19.4s h4
[ ]  716799       0       0  716799 / 1000000    19.5s h4
[ ]  719991       0       0  719991 / 1000000    19.6s h4
[ ]  723141       0       0  723141 / 1000000    19.7s h4
[ ]  726209       0       0  726209 / 1000000    19.8s h4
[ ]  729199       0       0  729199 / 1000000    19.9s h4
[ ]  732272       0       0  732272 / 1000000    20.0s h4
[ ]  735067       0       0  735067 / 1000000    20.1s h4
[ ]  738111       0       0  738111 / 1000000    20.2s h4
[ ]  741299       0       0  741299 / 1000000    20.3s h4
[ ]  744542       0       0  744542 / 1000000    20.4s h4
[ ]  747571       0       0  747571 / 1000000    20.5s h4
[ ]  750716       0       0  750716 / 1000000    20.6s h4
[ ]  753762       0       0  753762 / 1000000    20.7s h4
[ ]  756870       0       0  756870 / 1000000    20.8s h4
[ ]  760027       0       0  760027 / 1000000    20.9s h4
[ ]  763089       0       0  763089 / 1000000    21.0s h4
[ ]  766139       0       0  766139 / 1000000    21.1s h4
[ ]  769145       0       0  769145 / 1000000    21.2s h4
[ ]  772171       0       0  772171 / 1000000    21.3s h4
[ ]  775252       0       0  775252 / 1000000    21.4s h4
[ ]  778367       0       0  778367 / 1000000    21.5s h4
[ ]  781572       0       0  781572 / 1000000    21.6s h4
[ ]  784697       0       0  784697 / 1000000    21.7s h4
[ ]  787831       0       0  787831 / 1000000    21.8s h4
[ ]  790929       0       0  790929 / 1000000    21.9s h4
[ ]  794067       0       0  794067 / 1000000    22.0s h4
[ ]  797257       0       0  797257 / 1000000    22.1s h4
[ ]  800496       0       0  800496 / 1000000    22.2s h4
[ ]  803812       0       0  803812 / 1000000    22.3s h4
[ ]  807026       0       0  807026 / 1000000    22.4s h4
[ ]  810178       0       0  810178 / 1000000    22.5s h4
[ ]  813274       0       0  813274 / 1000000    22.6s h4
[ ]  816497       0       0  816497 / 1000000    22.7s h4
[ ]  819694       0       0  819694 / 1000000    22.8s h4
[ ]  822804       0       0  822804 / 1000000    22.9s h4
[ ]  825925       0       0  825925 / 1000000    23.0s h4 (collecting)
[ ]  829110       0       0  829110 / 1000000    23.1s h4
[ ]  832518       0       0  832518 / 1000000    23.2s h4
[ ]  835665       0       0  835665 / 1000000    23.3s h4
[ ]  838889       0       0  838889 / 1000000    23.4s h4
[ ]  842232       0       0  842232 / 1000000    23.5s h4
[ ]  845473       0       0  845473 / 1000000    23.6s h4
[ ]  848512       0       0  848512 / 1000000    23.7s h4
[ ]  851558       0       0  851558 / 1000000    23.8s h4
[ ]  855029       0       0  855029 / 1000000    23.9s h4
[ ]  858166       0       0  858166 / 1000000    24.0s h4
[ ]  861262       0       0  861262 / 1000000    24.1s h4
[ ]  864715       0       0  864715 / 1000000    24.2s h4
[ ]  868283       0       0  868283 / 1000000    24.3s h4
[ ]  871728       0       0  871728 / 1000000    24.4s h4
[ ]  876946       0       0  876946 / 1000000    24.5s h4
[ ]  882111       0       0  882111 / 1000000    24.6s h4
[ ]  886974       0       0  886974 / 1000000    24.7s h4
[ ]  892431       0       0  892431 / 1000000    24.8s h4
[ ]  895848       0       0  895848 / 1000000    24.9s h4
[ ]  898914       0       0  898914 / 1000000    25.0s h4
[ ]  901998       0       0  901998 / 1000000    25.1s h4
[ ]  905108       0       0  905108 / 1000000    25.2s h4
[ ]  908067       0       0  908067 / 1000000    25.3s h4
[ ]  911780       0       0  911780 / 1000000    25.4s h4
[ ]  914800       0       0  914800 / 1000000    25.5s h4
[ ]  917776       0       0  917776 / 1000000    25.6s h4
[ ]  920784       0       0  920784 / 1000000    25.7s h4
[ ]  923786       0       0  923786 / 1000000    25.8s h4
[ ]  926729       0       0  926729 / 1000000    25.9s h4
[ ]  929722       0       0  929722 / 1000000    26.0s h4
[ ]  932722       0       0  932722 / 1000000    26.1s h4
[ ]  935724       0       0  935724 / 1000000    26.2s h4
[ ]  938651       0       0  938651 / 1000000    26.3s h4
[ ]  941658       0       0  941658 / 1000000    26.4s h4
[ ]  944638       0       0  944638 / 1000000    26.5s h4
[ ]  947726       0       0  947726 / 1000000    26.6s h4
[ ]  950763       0       0  950763 / 1000000    26.7s h4
[ ]  953745       0       0  953745 / 1000000    26.8s h4
[ ]  956707       0       0  956707 / 1000000    26.9s h4
[ ]  959625       0       0  959625 / 1000000    27.0s h4
[ ]  962629       0       0  962629 / 1000000    27.1s h4
[ ]  965622       0       0  965622 / 1000000    27.2s h4
[ ]  968602       0       0  968602 / 1000000    27.3s h4
[ ]  971558       0       0  971558 / 1000000    27.4s h4 (collecting)
[ ]  974432       0       0  974432 / 1000000    27.5s h4
[ ]  977464       0       0  977464 / 1000000    27.6s h4
[ ]  980822       0       0  980822 / 1000000    27.7s h4
[ ]  984605       0       0  984605 / 1000000    27.8s h4
[ ]  988399       0       0  988399 / 1000000    27.9s h4
[ ]  992187       0       0  992187 / 1000000    28.0s h4
[ ]  995842       0       0  995842 / 1000000    28.1s h4
[ ]  999189       0       0  999189 / 1000000    28.2s h4
[✓] 1000000       0       0 1000000 / 1000000    28.2s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.2
-> removed   dates_calc.0.0.2
-> installed dates_calc.0.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:50.25 ---> saved as "4d3f0c45bb8f9816b3758c7201f00bbb3e57c32254772aa99168cfdde3068f92"
Job succeeded
2026-04-30 08:53.04: Job succeeded