Build:
  1. 0
2025-12-11 02:48.30: New job: test timere.0.1.3 with dune.3.21.0~alpha3, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29070/head (a95df9014bc79103fde668cf2adbe6680fd2f9cf)
                              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/29070/head" && git reset --hard a95df901
git fetch origin master
git merge --no-edit 810e1f14b7fa6411c66a3549f4c2aff47c52fc36
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
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.21.0~alpha3 3.21.0~alpha3
RUN opam reinstall dune.3.21.0~alpha3; \
    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.21.0~alpha3' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall timere.0.1.3; \
    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" != 'timere.0.1.3' && 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 timere.0.1.3) || true
RUN opam reinstall --with-test --verbose timere.0.1.3; \
    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" != 'timere.0.1.3' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2025-12-11 02:48.30: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune.3.21.0~alpha3-timere.0.1.3-a95df9014bc79103fde668cf2adbe6680fd2f9cf"
2025-12-11 02:48.30: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
 (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.21.0~alpha3 3.21.0~alpha3"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.21.0~alpha3;\
             \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.21.0~alpha3' && 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 timere.0.1.3;\
             \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\" != 'timere.0.1.3' && 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 timere.0.1.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose timere.0.1.3;\
             \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\" != 'timere.0.1.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-11 02:48.30: Waiting for resource in pool OCluster
2025-12-11 15:11.45: Waiting for worker…
2025-12-11 15:15.11: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 810e1f14b7 Merge pull request #29066 from gares/release-elpi-v3.4.4
Updating 810e1f14b7..a95df9014b
Fast-forward
 .../chrome-trace/chrome-trace.3.21.0~alpha3/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.21.0~alpha3/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.21.0~alpha3/opam             | 47 ++++++++++++++
 .../dune-configurator.3.21.0~alpha3/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0~alpha3/opam    | 44 +++++++++++++
 .../dune-private-libs.3.21.0~alpha3/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam      | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0~alpha3/opam    | 39 +++++++++++
 packages/dune/dune.3.21.0~alpha3/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0~alpha3/opam                | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0~alpha3/opam            | 40 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.21.0~alpha3/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.21.0~alpha3/opam          | 48 ++++++++++++++
 .../top-closure/top-closure.3.21.0~alpha3/opam     | 39 +++++++++++
 packages/xdg/xdg.3.21.0~alpha3/opam                | 41 ++++++++++++
 17 files changed, 787 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha3/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha3/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha3/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha3/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha3/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha3/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0~alpha3/opam
 create mode 100644 packages/dune/dune.3.21.0~alpha3/opam
 create mode 100644 packages/dyn/dyn.3.21.0~alpha3/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0~alpha3/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam
 create mode 100644 packages/ordering/ordering.3.21.0~alpha3/opam
 create mode 100644 packages/stdune/stdune.3.21.0~alpha3/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0~alpha3/opam
 create mode 100644 packages/xdg/xdg.3.21.0~alpha3/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d' locally
docker.io/ocaml/opam@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d: Pulling from ocaml/opam
53c88f1dfeb7: Pulling fs layer
268d44a12236: Pulling fs layer
f2f36c7402e3: Pulling fs layer
9eb2778f421b: Pulling fs layer
3ca35f1ec5ed: Pulling fs layer
b08866568793: Pulling fs layer
fb0d17ce08c9: Pulling fs layer
c8db2c4fd670: Pulling fs layer
5fa8cfe8f9cb: Pulling fs layer
e7f5f7180a56: Pulling fs layer
9f66154be4d4: Pulling fs layer
f6674de6e5d4: Pulling fs layer
80eb63632584: Pulling fs layer
66f55aa69346: Pulling fs layer
d121bc397a1a: Pulling fs layer
0eff100405dd: Pulling fs layer
7d67d217736c: Pulling fs layer
ac7107dc3d00: Pulling fs layer
f01a17be3cef: Pulling fs layer
30a38827b55c: Pulling fs layer
085733096c8e: Pulling fs layer
86db5d63aa02: Pulling fs layer
4f4fb700ef54: Pulling fs layer
034a62edceac: Pulling fs layer
808c1ae36c95: Pulling fs layer
eba808bca592: Pulling fs layer
68b2bb6a330b: Pulling fs layer
9fee74853ab2: Pulling fs layer
00d667d2b4f9: Pulling fs layer
66f55aa69346: Waiting
cde2288b7be2: Pulling fs layer
d121bc397a1a: Waiting
0eff100405dd: Waiting
6e6039e741bd: Pulling fs layer
08dc627d7129: Pulling fs layer
7d67d217736c: Waiting
ac7107dc3d00: Waiting
c8db2c4fd670: Waiting
fbbf04bee28a: Pulling fs layer
cf124fccb693: Pulling fs layer
f01a17be3cef: Waiting
16001ee30892: Pulling fs layer
5fa8cfe8f9cb: Waiting
30a38827b55c: Waiting
a379ebcf721f: Pulling fs layer
e7f5f7180a56: Waiting
085733096c8e: Waiting
c05951b4b1dd: Pulling fs layer
9f66154be4d4: Waiting
86db5d63aa02: Waiting
1238fc26ec9b: Pulling fs layer
f6674de6e5d4: Waiting
33d5b2862e74: Pulling fs layer
6a5c5f5e740e: Pulling fs layer
80eb63632584: Waiting
4f4fb700ef54: Waiting
f97083767ae6: Pulling fs layer
034a62edceac: Waiting
5fbf3379e3de: Pulling fs layer
68b2bb6a330b: Waiting
808c1ae36c95: Waiting
fa7fd9ad7954: Pulling fs layer
eba808bca592: Waiting
9fee74853ab2: Waiting
c0b4ac729b41: Pulling fs layer
40482318cf81: Pulling fs layer
00d667d2b4f9: Waiting
cf124fccb693: Waiting
33d5b2862e74: Waiting
cde2288b7be2: Waiting
16001ee30892: Waiting
6a5c5f5e740e: Waiting
6e6039e741bd: Waiting
f97083767ae6: Waiting
a379ebcf721f: Waiting
5fbf3379e3de: Waiting
08dc627d7129: Waiting
c05951b4b1dd: Waiting
fa7fd9ad7954: Waiting
1238fc26ec9b: Waiting
fbbf04bee28a: Waiting
c0b4ac729b41: Waiting
40482318cf81: Waiting
3ca35f1ec5ed: Waiting
b08866568793: Waiting
fb0d17ce08c9: Waiting
9eb2778f421b: Waiting
268d44a12236: Verifying Checksum
268d44a12236: Download complete
f2f36c7402e3: Download complete
3ca35f1ec5ed: Verifying Checksum
3ca35f1ec5ed: Download complete
53c88f1dfeb7: Verifying Checksum
53c88f1dfeb7: Download complete
fb0d17ce08c9: Verifying Checksum
fb0d17ce08c9: Download complete
9eb2778f421b: Verifying Checksum
9eb2778f421b: Download complete
c8db2c4fd670: Verifying Checksum
c8db2c4fd670: Download complete
5fa8cfe8f9cb: Verifying Checksum
5fa8cfe8f9cb: Download complete
e7f5f7180a56: Verifying Checksum
e7f5f7180a56: Download complete
9f66154be4d4: Verifying Checksum
9f66154be4d4: Download complete
f6674de6e5d4: Verifying Checksum
f6674de6e5d4: Download complete
53c88f1dfeb7: Pull complete
268d44a12236: Pull complete
f2f36c7402e3: Pull complete
b08866568793: Verifying Checksum
b08866568793: Download complete
80eb63632584: Verifying Checksum
80eb63632584: Download complete
66f55aa69346: Verifying Checksum
66f55aa69346: Download complete
d121bc397a1a: Verifying Checksum
d121bc397a1a: Download complete
0eff100405dd: Verifying Checksum
0eff100405dd: Download complete
ac7107dc3d00: Verifying Checksum
ac7107dc3d00: Download complete
7d67d217736c: Download complete
f01a17be3cef: Verifying Checksum
f01a17be3cef: Download complete
9eb2778f421b: Pull complete
3ca35f1ec5ed: Pull complete
085733096c8e: Verifying Checksum
085733096c8e: Download complete
30a38827b55c: Download complete
86db5d63aa02: Download complete
4f4fb700ef54: Download complete
034a62edceac: Verifying Checksum
034a62edceac: Download complete
808c1ae36c95: Verifying Checksum
808c1ae36c95: Download complete
eba808bca592: Download complete
68b2bb6a330b: Verifying Checksum
68b2bb6a330b: Download complete
9fee74853ab2: Verifying Checksum
9fee74853ab2: Download complete
00d667d2b4f9: Verifying Checksum
00d667d2b4f9: Download complete
cde2288b7be2: Verifying Checksum
cde2288b7be2: Download complete
6e6039e741bd: Verifying Checksum
6e6039e741bd: Download complete
08dc627d7129: Verifying Checksum
08dc627d7129: Download complete
fbbf04bee28a: Verifying Checksum
fbbf04bee28a: Download complete
cf124fccb693: Verifying Checksum
cf124fccb693: Download complete
c05951b4b1dd: Verifying Checksum
c05951b4b1dd: Download complete
16001ee30892: Verifying Checksum
16001ee30892: Download complete
33d5b2862e74: Verifying Checksum
33d5b2862e74: Download complete
6a5c5f5e740e: Download complete
f97083767ae6: Download complete
5fbf3379e3de: Verifying Checksum
5fbf3379e3de: Download complete
1238fc26ec9b: Download complete
fa7fd9ad7954: Download complete
40482318cf81: Verifying Checksum
40482318cf81: Download complete
c0b4ac729b41: Verifying Checksum
c0b4ac729b41: Download complete
b08866568793: Pull complete
a379ebcf721f: Verifying Checksum
a379ebcf721f: Download complete
fb0d17ce08c9: Pull complete
c8db2c4fd670: Pull complete
5fa8cfe8f9cb: Pull complete
e7f5f7180a56: Pull complete
9f66154be4d4: Pull complete
f6674de6e5d4: Pull complete
80eb63632584: Pull complete
66f55aa69346: Pull complete
d121bc397a1a: Pull complete
0eff100405dd: Pull complete
7d67d217736c: Pull complete
ac7107dc3d00: Pull complete
f01a17be3cef: Pull complete
30a38827b55c: Pull complete
085733096c8e: Pull complete
86db5d63aa02: Pull complete
4f4fb700ef54: Pull complete
034a62edceac: Pull complete
808c1ae36c95: Pull complete
eba808bca592: Pull complete
68b2bb6a330b: Pull complete
9fee74853ab2: Pull complete
00d667d2b4f9: Pull complete
cde2288b7be2: Pull complete
6e6039e741bd: Pull complete
08dc627d7129: Pull complete
fbbf04bee28a: Pull complete
cf124fccb693: Pull complete
16001ee30892: Pull complete
a379ebcf721f: Pull complete
c05951b4b1dd: Pull complete
1238fc26ec9b: Pull complete
33d5b2862e74: Pull complete
6a5c5f5e740e: Pull complete
f97083767ae6: Pull complete
5fbf3379e3de: Pull complete
fa7fd9ad7954: Pull complete
c0b4ac729b41: Pull complete
40482318cf81: Pull complete
Digest: sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
Status: Downloaded newer image for ocaml/opam@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
2025-12-11 15:17.56 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-11 15:17.56 ---> using "4c0c738834a7be54719ab9b07c911eba51e45ad4298c42597f7d3da72b1c15d4" 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
2025-12-11 15:17.56 ---> using "8bb6d27bb5f7ebe9771219e3ecd730184d5e10ab877134c11c12ee3b1a6d3b96" 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-12-11 15:17.56 ---> using "35019bd57e8933485bd938828fe288c3674216a4757e13b1dac8ce6b21035ac2" 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/"))
2025-12-11 15:17.56 ---> using "e09ab9992a764acab15da9cff99e3d4d978b8a77f33714cc5d19d16d3539eb49" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-11 15:17.57 ---> using "8f784899c04798d44128ca0480da55c2b9cf6d274974843ef0505a70d687f2db" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-11 15:17.57 ---> using "2b089ce953d9701360553588b495e1bed1b68a44304bde1817c2d61d9d0cfb13" 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 [82.1 kB]
- Fetched 173 kB in 0s (1367 kB/s)
- Reading package lists...
2025-12-11 15:17.57 ---> using "66aa292a4a8c262cd0de67bf9051bc0bb23ef81009eeb9a242c201bbf02a4d3c" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0~alpha3 3.21.0~alpha3"))
dune is now pinned to version 3.21.0~alpha3
2025-12-11 15:17.57 ---> using "9570d75aed3642c1ef0c12e0ad97a3baf2325ffdc6e45d8a3264e824ac334df7" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0~alpha3  (cached)
-> installed dune.3.21.0~alpha3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 15:17.57 ---> using "48cb7e11edf550584d15e9c5e0a730dadf8a3f762cd720f2410f845b4ecb32e4" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall timere.0.1.3;\
                        \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\" != 'timere.0.1.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
timere.0.1.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install containers        3.16          [required by timere]
  - install csexp             1.5.2         [required by dune-configurator]
  - install dune-configurator 3.21.0~alpha3 [required by containers]
  - install either            1.0.0         [required by containers]
  - install fmt               0.11.0        [required by timere]
  - install mparser           1.3           [required by timere]
  - install ocamlbuild        0.16.1        [required by fmt, ptime]
  - install ocamlfind         1.9.8         [required by fmt, ptime]
  - install oseq              0.4.1         [required by timere]
  - install ptime             1.2.0         [required by timere]
  - install seq               base          [required by timere]
  - install timere            0.1.3
  - install topkg             1.1.1         [required by fmt, ptime]
  - install yojson            3.0.0         [required by timere]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved containers.3.16  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.21.0~alpha3  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved mparser.1.3  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved oseq.0.4.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved timere.0.1.3  (cached)
-> installed either.1.0.0
-> retrieved topkg.1.1.1  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed mparser.1.3
-> installed oseq.0.4.1
-> installed dune-configurator.3.21.0~alpha3
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed containers.3.16
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed timere.0.1.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 15:18.25 ---> saved as "7488689446b387fc3da8a08a5e59f83ed45e07bd9fec95c9bd53473d5b3a26b7"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test timere.0.1.3) || true"))
The following actions will be performed:
=== recompile 2 packages
  - recompile fmt                0.11.0 [uses cmdliner]
  - recompile timere             0.1.3
=== install 15 packages
  - install   afl-persistent     1.4    [required by crowbar]
  - install   alcotest           1.9.1  [required by timere]
  - install   astring            0.8.5  [required by alcotest]
  - install   cmdliner           2.1.0  [required by alcotest, crowbar]
  - install   crowbar            0.2.2  [required by timere]
  - install   fileutils          0.6.6  [required by timere]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   ounit2             2.2.7  [required by qcheck-ounit]
  - install   qcheck             0.27   [required by timere]
  - install   qcheck-alcotest    0.27   [required by timere]
  - install   qcheck-core        0.27   [required by qcheck, qcheck-alcotest]
  - install   qcheck-ounit       0.27   [required by qcheck]
  - install   re                 1.14.0 [required by alcotest]
  - install   stdlib-shims       0.3.0  [required by alcotest]
  - install   uutf               1.0.4  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.4  (https://opam.ocaml.org/cache)
-> installed afl-persistent.1.4
-> 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 crowbar.0.2.2  (https://opam.ocaml.org/cache)
-> retrieved fileutils.0.6.6  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.27, qcheck-alcotest.0.27, qcheck-core.0.27, qcheck-ounit.0.27  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> installed fileutils.0.6.6
-> installed stdlib-shims.0.3.0
-> retrieved timere.0.1.3  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.27
-> installed qcheck-ounit.0.27
-> installed qcheck.0.27
-> removed   timere.0.1.3
-> removed   fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed crowbar.0.2.2
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.27
-> installed timere.0.1.3
Done.

<><> afl-persistent.1.4 installed successfully ><><><><><><><><><><><><><><><><>
=> afl-persistent is installed, but since the current OCaml compiler does
   not enable AFL instrumentation by default, most packages will not be
   instrumented and fuzzing with afl-fuzz may not be effective.

   To globally enable AFL instrumentation, create an OCaml switch like:

     opam switch create 4.14.2+afl ocaml-variants.4.14.2+options ocaml-option-afl
# To update the current shell environment, run: eval $(opam env)
2025-12-11 15:18.44 ---> saved as "8e7587144e49a93dd3da64160581fb0614b83a8b34a4a4df034042a9aa937221"

/home/opam: (run (shell  "opam reinstall --with-test --verbose timere.0.1.3;\
                        \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\" != 'timere.0.1.3' && 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 timere 0.1.3

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [timere.0.1.3: extract]
-> retrieved timere.0.1.3  (cached)
Processing  2/4: [timere: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "timere" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/timere.0.1.3)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Int64_utils.cmo -c -impl src/int64_utils.ml)
- File "src/int64_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Bigarray_utils.cmo -c -impl src/bigarray_utils.ml)
- File "src/bigarray_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Time_zone_constants.cmo -c -impl src/time_zone_constants.ml)
- File "src/time_zone_constants.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__To_sexp_utils.cmo -c -impl src/to_sexp_utils.ml)
- File "src/to_sexp_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Of_sexp_utils.cmo -c -impl src/of_sexp_utils.ml)
- File "src/of_sexp_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Int64_set.cmo -c -impl src/int64_set.ml)
- File "src/int64_set.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Int_set.cmo -c -impl src/int_set.ml)
- File "src/int_set.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__String_map.cmo -c -impl src/string_map.ml)
- File "src/string_map.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Misc_utils.cmo -c -impl src/misc_utils.ml)
- File "src/misc_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Ptime_utils.cmo -c -impl src/ptime_utils.ml)
- File "src/ptime_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Duration.cmo -c -impl src/duration.ml)
- File "src/duration.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Parser_components.cmo -c -impl src/parser_components.ml)
- File "src/parser_components.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Seq_utils.cmo -c -impl src/seq_utils.ml)
- File "src/seq_utils.ml", line 56, characters 19-32:
- 56 |     if List.exists CCOpt.is_some acc then
-                         ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/seq_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Constants.cmo -c -impl src/constants.ml)
- File "src/constants.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Date_time_components.cmo -c -impl src/date_time_components.ml)
- File "src/date_time_components.ml", line 111, characters 5-14:
- 111 |   |> CCOpt.map Ptime.weekday
-            ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/date_time_components.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I src/.timere.objs/byte -I src/.timere.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -I tzdb-module/.timere_tzdb.objs/native -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/native/timere__Seq_utils.cmx -c -impl src/seq_utils.ml)
- File "src/seq_utils.ml", line 56, characters 19-32:
- 56 |     if List.exists CCOpt.is_some acc then
-                         ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Pattern.cmo -c -impl src/pattern.ml)
- File "src/pattern.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Time_zone.cmo -c -impl src/time_zone.ml)
- File "src/time_zone.ml", line 79, characters 5-14:
- 79 |   |> CCOpt.map (fun table ->
-           ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time_zone.ml", line 224, characters 7-16:
- 224 |     |> CCOpt.map (fun table -> { name; record = process_table table })
-              ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time_zone.ml", line 364, characters 26-35:
- 364 |     M.find_opt name db |> CCOpt.map (fun table -> Raw.of_table ~name table)
-                                 ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Points.cmo -c -impl src/points.ml)
- File "src/points.ml", line 62, characters 42-51:
- 62 |       make_tz_info ~tz ~tz_offset_s () |> CCOpt.map CCOpt.pure
-                                                ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/points.ml", line 62, characters 52-62:
- 62 |       make_tz_info ~tz ~tz_offset_s () |> CCOpt.map CCOpt.pure
-                                                          ^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/points.ml", line 111, characters 6-15:
- 111 |       CCOpt.map (fun pick -> (pick, tz_info)) pick
-             ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/points.ml", line 170, characters 28-39:
- 170 |   pick_equal pick1 pick2 && CCOpt.equal tz_info_equal tz_info1 tz_info2
-                                   ^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/points.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Time_ast.cmo -c -impl src/time_ast.ml)
- File "src/time_ast.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I src/.timere.objs/byte -I src/.timere.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -I tzdb-module/.timere_tzdb.objs/native -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/native/timere__Time_zone.cmx -c -impl src/time_zone.ml)
- File "src/time_zone.ml", line 79, characters 5-14:
- 79 |   |> CCOpt.map (fun table ->
-           ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time_zone.ml", line 224, characters 7-16:
- 224 |     |> CCOpt.map (fun table -> { name; record = process_table table })
-              ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time_zone.ml", line 364, characters 26-35:
- 364 |     M.find_opt name db |> CCOpt.map (fun table -> Raw.of_table ~name table)
-                                 ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I src/.timere.objs/byte -I src/.timere.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -I tzdb-module/.timere_tzdb.objs/native -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/native/timere__Date_time_components.cmx -c -impl src/date_time_components.ml)
- File "src/date_time_components.ml", line 111, characters 5-14:
- 111 |   |> CCOpt.map Ptime.weekday
-            ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I src/.timere.objs/byte -I src/.timere.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -I tzdb-module/.timere_tzdb.objs/native -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/native/timere__Points.cmx -c -impl src/points.ml)
- File "src/points.ml", line 62, characters 42-51:
- 62 |       make_tz_info ~tz ~tz_offset_s () |> CCOpt.map CCOpt.pure
-                                                ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/points.ml", line 62, characters 52-62:
- 62 |       make_tz_info ~tz ~tz_offset_s () |> CCOpt.map CCOpt.pure
-                                                          ^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/points.ml", line 111, characters 6-15:
- 111 |       CCOpt.map (fun pick -> (pick, tz_info)) pick
-             ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/points.ml", line 170, characters 28-39:
- 170 |   pick_equal pick1 pick2 && CCOpt.equal tz_info_equal tz_info1 tz_info2
-                                   ^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Time.cmo -c -impl src/time.ml)
- File "src/time.ml", line 486, characters 7-16:
- 486 |     |> CCOpt.map (fun (x, y) -> `Range_exc (of_int64 x, of_int64 y))
-              ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 664, characters 19-28:
- 664 |       let modulo = CCOpt.map Int64.of_int modulo in
-                          ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 885, characters 17-26:
- 885 |     let modulo = CCOpt.map Int64.of_int modulo in
-                        ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 894, characters 19-28:
- 894 |       let modulo = CCOpt.map Int64.of_int modulo in
-                          ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 900, characters 19-28:
- 900 |       let modulo = CCOpt.map Int64.of_int modulo in
-                          ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 908, characters 19-28:
- 908 |       let modulo = CCOpt.map Int64.of_int modulo in
-                          ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1053, characters 2-15:
- 1053 |   CCOpt.get_exn @@ make_hms ~hour:hours ~minute:minutes ~second:seconds
-          ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1053, characters 2-15:
- 1053 |   CCOpt.get_exn @@ make_hms ~hour:hours ~minute:minutes ~second:seconds
-          ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1082, characters 45-58:
- 1082 |     let of_int x = x |> weekday_of_tm_int |> CCOpt.get_exn
-                                                     ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1082, characters 45-58:
- 1082 |     let of_int x = x |> weekday_of_tm_int |> CCOpt.get_exn
-                                                     ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1112, characters 46-59:
- 1112 |     let of_int x = x |> month_of_human_int |> CCOpt.get_exn
-                                                      ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1112, characters 46-59:
- 1112 |     let of_int x = x |> month_of_human_int |> CCOpt.get_exn
-                                                      ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1158, characters 7-16:
- 1158 |     |> CCOpt.map (fun month ->
-               ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1164, characters 7-16:
- 1164 |     |> CCOpt.map Ptime_utils.timestamp_of_ptime
-               ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1218, characters 15-24:
- 1218 |             |> CCOpt.map (fun t ->
-                       ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1231, characters 63-76:
- 1231 |     | `Single x -> Some (of_timestamp ~tz_of_date_time:tz x |> CCOpt.get_exn)
-                                                                       ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1231, characters 63-76:
- 1231 |     | `Single x -> Some (of_timestamp ~tz_of_date_time:tz x |> CCOpt.get_exn)
-                                                                       ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1288, characters 12-25:
- 1288 |   let min = CCOpt.get_exn @@ of_timestamp timestamp_min
-                    ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1288, characters 12-25:
- 1288 |   let min = CCOpt.get_exn @@ of_timestamp timestamp_min
-                    ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1290, characters 12-25:
- 1290 |   let max = CCOpt.get_exn @@ of_timestamp timestamp_max
-                    ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1290, characters 12-25:
- 1290 |   let max = CCOpt.get_exn @@ of_timestamp timestamp_max
-                    ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1300, characters 14-25:
- 1300 |         match CCOpt.value ~default:default_tz_info tz_info with
-                      ^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1312, characters 57-70:
- 1312 |     timestamp_now () |> of_timestamp ~tz_of_date_time |> CCOpt.get_exn
-                                                                 ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1312, characters 57-70:
- 1312 |     timestamp_now () |> of_timestamp ~tz_of_date_time |> CCOpt.get_exn
-                                                                 ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1362, characters 4-17:
- 1362 |     CCOpt.is_some @@ Date_time'.of_timestamp x
-            ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Infix.cmo -c -impl src/infix.ml)
- File "src/infix.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__RFC3339.cmo -c -impl src/RFC3339.ml)
- File "src/RFC3339.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__ISO8601.cmo -c -impl src/ISO8601.ml)
- File "src/ISO8601.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__To_sexp.cmo -c -impl src/to_sexp.ml)
- File "src/to_sexp.ml", line 83, characters 9-18:
- 83 |          CCOpt.map sexp_of_tz_info tz_info;
-               ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/to_sexp.ml", line 111, characters 39-52:
- 111 |   x |> Time.Date_time'.of_timestamp |> CCOpt.get_exn |> sexp_of_date_time
-                                              ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/to_sexp.ml", line 111, characters 39-52:
- 111 |   x |> Time.Date_time'.of_timestamp |> CCOpt.get_exn |> sexp_of_date_time
-                                              ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/to_sexp.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Pattern_resolver.cmo -c -impl src/pattern_resolver.ml)
- File "src/pattern_resolver.ml", line 15, characters 8-21:
- 15 |         CCOpt.get_exn
-              ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 15, characters 8-21:
- 15 |         CCOpt.get_exn
-              ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 18, characters 8-21:
- 18 |         CCOpt.get_exn
-              ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 18, characters 8-21:
- 18 |         CCOpt.get_exn
-              ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 467, characters 59-72:
- 467 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 467, characters 59-72:
- 467 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 475, characters 59-72:
- 475 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 475, characters 59-72:
- 475 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 518, characters 59-72:
- 518 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 518, characters 59-72:
- 518 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Of_sexp.cmo -c -impl src/of_sexp.ml)
- File "src/of_sexp.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Printers.cmo -c -impl src/printers.ml)
- File "src/printers.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I src/.timere.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere__ -o src/.timere.objs/byte/timere__Resolver.cmo -c -impl src/resolver.ml)
- File "src/resolver.ml", line 302, characters 8-21:
- 302 |         CCOpt.get_exn @@ Date_time'.of_timestamp ~tz_of_date_time:tz t1
-               ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 302, characters 8-21:
- 302 |         CCOpt.get_exn @@ Date_time'.of_timestamp ~tz_of_date_time:tz t1
-               ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 308, characters 11-24:
- 308 |         |> CCOpt.get_exn
-                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 308, characters 11-24:
- 308 |         |> CCOpt.get_exn
-                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 330, characters 8-21:
- 330 |         CCOpt.get_exn @@ Date_time'.of_timestamp ~tz_of_date_time:tz t1
-               ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 330, characters 8-21:
- 330 |         CCOpt.get_exn @@ Date_time'.of_timestamp ~tz_of_date_time:tz t1
-               ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 336, characters 11-24:
- 336 |         |> CCOpt.get_exn
-                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 336, characters 11-24:
- 336 |         |> CCOpt.get_exn
-                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 516, characters 4-17:
- 516 |     CCOpt.get_exn @@ Misc_utils.last_element_of_list space
-           ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 516, characters 4-17:
- 516 |     CCOpt.get_exn @@ Misc_utils.last_element_of_list space
-           ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 593, characters 19-32:
- 593 |     if List.exists CCOpt.is_none batch_for_sampling then Seq.empty
-                          ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 604, characters 10-23:
- 604 |           CCOpt.get_exn @@ Misc_utils.last_element_of_list batch_for_sampling
-                 ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 604, characters 10-23:
- 604 |           CCOpt.get_exn @@ Misc_utils.last_element_of_list batch_for_sampling
-                 ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I gen-build/.gen_tzdb_full.eobjs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I src/.timere.objs/byte -I tzdb-none/.timere_tzdb_none.objs/byte -no-alias-deps -o gen-build/.gen_tzdb_full.eobjs/byte/dune__exe__Gen_tzdb_full.cmo -c -impl gen-build/gen_tzdb_full.ml)
- File "gen-build/gen_tzdb_full.ml", line 8, characters 4-17:
- 8 |     CCOpt.get_exn
-         ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "gen-build/gen_tzdb_full.ml", line 8, characters 4-17:
- 8 |     CCOpt.get_exn
-         ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "gen-build/gen_tzdb_full.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I src/.timere.objs/byte -I src/.timere.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -I tzdb-module/.timere_tzdb.objs/native -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/native/timere__Time.cmx -c -impl src/time.ml)
- File "src/time.ml", line 486, characters 7-16:
- 486 |     |> CCOpt.map (fun (x, y) -> `Range_exc (of_int64 x, of_int64 y))
-              ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 664, characters 19-28:
- 664 |       let modulo = CCOpt.map Int64.of_int modulo in
-                          ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 885, characters 17-26:
- 885 |     let modulo = CCOpt.map Int64.of_int modulo in
-                        ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 894, characters 19-28:
- 894 |       let modulo = CCOpt.map Int64.of_int modulo in
-                          ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 900, characters 19-28:
- 900 |       let modulo = CCOpt.map Int64.of_int modulo in
-                          ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 908, characters 19-28:
- 908 |       let modulo = CCOpt.map Int64.of_int modulo in
-                          ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1053, characters 2-15:
- 1053 |   CCOpt.get_exn @@ make_hms ~hour:hours ~minute:minutes ~second:seconds
-          ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1053, characters 2-15:
- 1053 |   CCOpt.get_exn @@ make_hms ~hour:hours ~minute:minutes ~second:seconds
-          ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1082, characters 45-58:
- 1082 |     let of_int x = x |> weekday_of_tm_int |> CCOpt.get_exn
-                                                     ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1082, characters 45-58:
- 1082 |     let of_int x = x |> weekday_of_tm_int |> CCOpt.get_exn
-                                                     ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1112, characters 46-59:
- 1112 |     let of_int x = x |> month_of_human_int |> CCOpt.get_exn
-                                                      ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1112, characters 46-59:
- 1112 |     let of_int x = x |> month_of_human_int |> CCOpt.get_exn
-                                                      ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1158, characters 7-16:
- 1158 |     |> CCOpt.map (fun month ->
-               ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1164, characters 7-16:
- 1164 |     |> CCOpt.map Ptime_utils.timestamp_of_ptime
-               ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1218, characters 15-24:
- 1218 |             |> CCOpt.map (fun t ->
-                       ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1231, characters 63-76:
- 1231 |     | `Single x -> Some (of_timestamp ~tz_of_date_time:tz x |> CCOpt.get_exn)
-                                                                       ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1231, characters 63-76:
- 1231 |     | `Single x -> Some (of_timestamp ~tz_of_date_time:tz x |> CCOpt.get_exn)
-                                                                       ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1288, characters 12-25:
- 1288 |   let min = CCOpt.get_exn @@ of_timestamp timestamp_min
-                    ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1288, characters 12-25:
- 1288 |   let min = CCOpt.get_exn @@ of_timestamp timestamp_min
-                    ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1290, characters 12-25:
- 1290 |   let max = CCOpt.get_exn @@ of_timestamp timestamp_max
-                    ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1290, characters 12-25:
- 1290 |   let max = CCOpt.get_exn @@ of_timestamp timestamp_max
-                    ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1300, characters 14-25:
- 1300 |         match CCOpt.value ~default:default_tz_info tz_info with
-                      ^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1312, characters 57-70:
- 1312 |     timestamp_now () |> of_timestamp ~tz_of_date_time |> CCOpt.get_exn
-                                                                 ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/time.ml", line 1312, characters 57-70:
- 1312 |     timestamp_now () |> of_timestamp ~tz_of_date_time |> CCOpt.get_exn
-                                                                 ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/time.ml", line 1362, characters 4-17:
- 1362 |     CCOpt.is_some @@ Date_time'.of_timestamp x
-            ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I src/.timere.objs/byte -I src/.timere.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -I tzdb-module/.timere_tzdb.objs/native -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/native/timere__To_sexp.cmx -c -impl src/to_sexp.ml)
- File "src/to_sexp.ml", line 83, characters 9-18:
- 83 |          CCOpt.map sexp_of_tz_info tz_info;
-               ^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/to_sexp.ml", line 111, characters 39-52:
- 111 |   x |> Time.Date_time'.of_timestamp |> CCOpt.get_exn |> sexp_of_date_time
-                                              ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/to_sexp.ml", line 111, characters 39-52:
- 111 |   x |> Time.Date_time'.of_timestamp |> CCOpt.get_exn |> sexp_of_date_time
-                                              ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I src/.timere.objs/byte -I src/.timere.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -I tzdb-module/.timere_tzdb.objs/native -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/native/timere__Pattern_resolver.cmx -c -impl src/pattern_resolver.ml)
- File "src/pattern_resolver.ml", line 15, characters 8-21:
- 15 |         CCOpt.get_exn
-              ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 15, characters 8-21:
- 15 |         CCOpt.get_exn
-              ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 18, characters 8-21:
- 18 |         CCOpt.get_exn
-              ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 18, characters 8-21:
- 18 |         CCOpt.get_exn
-              ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 467, characters 59-72:
- 467 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 467, characters 59-72:
- 467 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 475, characters 59-72:
- 475 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 475, characters 59-72:
- 475 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/pattern_resolver.ml", line 518, characters 59-72:
- 518 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/pattern_resolver.ml", line 518, characters 59-72:
- 518 |       |> Seq.map (fun month -> month_of_human_int month |> CCOpt.get_exn)
-                                                                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I src/.timere.objs/byte -I src/.timere.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I tzdb-module/.timere_tzdb.objs/byte -I tzdb-module/.timere_tzdb.objs/native -intf-suffix .ml -no-alias-deps -open Timere__ -o src/.timere.objs/native/timere__Resolver.cmx -c -impl src/resolver.ml)
- File "src/resolver.ml", line 302, characters 8-21:
- 302 |         CCOpt.get_exn @@ Date_time'.of_timestamp ~tz_of_date_time:tz t1
-               ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 302, characters 8-21:
- 302 |         CCOpt.get_exn @@ Date_time'.of_timestamp ~tz_of_date_time:tz t1
-               ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 308, characters 11-24:
- 308 |         |> CCOpt.get_exn
-                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 308, characters 11-24:
- 308 |         |> CCOpt.get_exn
-                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 330, characters 8-21:
- 330 |         CCOpt.get_exn @@ Date_time'.of_timestamp ~tz_of_date_time:tz t1
-               ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 330, characters 8-21:
- 330 |         CCOpt.get_exn @@ Date_time'.of_timestamp ~tz_of_date_time:tz t1
-               ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 336, characters 11-24:
- 336 |         |> CCOpt.get_exn
-                  ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 336, characters 11-24:
- 336 |         |> CCOpt.get_exn
-                  ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 516, characters 4-17:
- 516 |     CCOpt.get_exn @@ Misc_utils.last_element_of_list space
-           ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 516, characters 4-17:
- 516 |     CCOpt.get_exn @@ Misc_utils.last_element_of_list space
-           ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- File "src/resolver.ml", line 593, characters 19-32:
- 593 |     if List.exists CCOpt.is_none batch_for_sampling then Seq.empty
-                          ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 604, characters 10-23:
- 604 |           CCOpt.get_exn @@ Misc_utils.last_element_of_list batch_for_sampling
-                 ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "src/resolver.ml", line 604, characters 10-23:
- 604 |           CCOpt.get_exn @@ Misc_utils.last_element_of_list batch_for_sampling
-                 ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -I gen-build/.gen_tzdb_full.eobjs/byte -I gen-build/.gen_tzdb_full.eobjs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/mparser -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/yojson -I src/.timere.objs/byte -I src/.timere.objs/native -I tzdb-none/.timere_tzdb_none.objs/byte -I tzdb-none/.timere_tzdb_none.objs/native -intf-suffix .ml -no-alias-deps -o gen-build/.gen_tzdb_full.eobjs/native/dune__exe__Gen_tzdb_full.cmx -c -impl gen-build/gen_tzdb_full.ml)
- File "gen-build/gen_tzdb_full.ml", line 8, characters 4-17:
- 8 |     CCOpt.get_exn
-         ^^^^^^^^^^^^^
- Alert deprecated: module CCOpt
- use CCOption instead
- File "gen-build/gen_tzdb_full.ml", line 8, characters 4-17:
- 8 |     CCOpt.get_exn
-         ^^^^^^^^^^^^^
- Alert deprecated: CCOpt.get_exn
- use CCOption.get_exn_or instead
- (cd _build/default/tzdb-full && ../gen-build/gen_tzdb_full.exe ../gen-artifacts/time_zone_db.sexp tzdb_marshalled.ml)
- Generating file tzdb_marshalled.ml from file ../gen-artifacts/time_zone_db.sexp
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w +a-4-9-29-37-40-42-44-48-50-32-30@8 -g -bin-annot -I tzdb-full/.timere_tzdb_full.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/either -I tzdb-module/.timere_tzdb.objs/byte -no-alias-deps -open Timere_tzdb__timere_tzdb_full__ -o tzdb-full/.timere_tzdb_full.objs/byte/timere_tzdb__Tzdb_marshalled.cmo -c -impl tzdb-full/tzdb_marshalled.ml)
- File "tzdb-full/tzdb_marshalled.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-> compiled  timere.0.1.3
-> removed   timere.0.1.3
-> installed timere.0.1.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 15:18.54 ---> saved as "eae18ae98efbb4f52a04dbf5f17e4eb48ef916f999fbd698663086630c3ef6c2"
Job succeeded
2025-12-11 15:19.00: Job succeeded