Build:
- 0
2026-03-02 19:23.58: New job: test otoggl.0.3.2 with dune.3.22.0~alpha0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
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/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a
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.22.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune.3.22.0~alpha0; \
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.22.0~alpha0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall otoggl.0.3.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" != 'otoggl.0.3.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 otoggl.0.3.2) || true
RUN opam reinstall --with-test --verbose otoggl.0.3.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" != 'otoggl.0.3.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-03-02 19:23.58: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a-dune.3.22.0~alpha0-otoggl.0.3.2-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:23.58: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
(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.22.0~alpha0 3.22.0~alpha0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha0;\
\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.22.0~alpha0' && 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 otoggl.0.3.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\" != 'otoggl.0.3.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 otoggl.0.3.2) || true"))
(run (shell "opam reinstall --with-test --verbose otoggl.0.3.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\" != 'otoggl.0.3.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-03-02 19:23.58: Waiting for resource in pool OCluster
2026-03-03 04:27.29: Waiting for worker…
2026-03-03 04:30.12: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
.../chrome-trace/chrome-trace.3.22.0~alpha0/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha0/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha0/opam | 40 ++++++++++++
.../dune-build-info.3.22.0~alpha0/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha0/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha0/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha0/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha0/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha0/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha0/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha0/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha0/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha0/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha0/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha0/opam | 39 +++++++++++
18 files changed, 797 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
2026-03-03 04:30.16 ---> using "40de8e47c13dd397f7466181b47c70cd31f6d05f624f7f51643a7089a29a5322" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-03 04:30.16 ---> using "11e955cadb21ab08a7e8407d7e49d7e8b8232723aa9e80323bab6a7d993e9a38" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 04:30.16 ---> using "b84411f14b612833c97eea3b0fb49d7afb0294cf8c4774caaff1f8b0f1bd5849" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-03 04:30.16 ---> using "bc1392749f7c1b1568053e91f3061e53f54f3bf6892fcf3fa14761d0f2fabccc" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-03 04:30.16 ---> using "0f88aad717079fee185cb5f7b0853d5dede0158dafac18dc05292641ad1318aa" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 04:30.17 ---> using "cf2f29575da4e00ad2c0e3200eaf5375ace45ec778f515d81ffd2e5eb96c41f1" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 04:30.17 ---> using "c517023779902244dbe5c8fbf440d1dd4569daf367c1e2ee7dd7eb370c41d91c" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1833 kB/s)
- Reading package lists...
2026-03-03 04:30.17 ---> using "a2e6599fe15f34bfd0a71de19dbfccfacdc1f910f7a37fea793bb8ff67d4ba47" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
dune is now pinned to version 3.22.0~alpha0
2026-03-03 04:30.17 ---> using "9ecf7f496eb9b328aa3c8f7333a40a30e123b33b9d8b5606b7ac6bfc2b62fac7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha0;\
\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.22.0~alpha0' && 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.22.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.0~alpha0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha0 (cached)
-> installed dune.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:30.17 ---> using "1d093925996c7908c33a8109d0c1a7be5172d79d6a00aabc511d552ee2499f33" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall otoggl.0.3.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\" != 'otoggl.0.3.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
otoggl.0.3.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 72 packages
- install angstrom 0.16.1 [required by piaf]
- install atd 3.0.1 [required by atdgen]
- install atdgen 3.0.1 [required by otoggl]
- install atdgen-runtime 3.0.1 [required by otoggl]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.2 [required by otoggl]
- install bigarray-compat 1.1.0 [required by mrmime]
- install bigarray-overlap 0.2.1 [required by mrmime]
- install bigstringaf 0.10.0 [required by piaf]
- install biniou 1.2.2 [required by atdgen]
- install camlp-streams 5.0.1 [required by biniou]
- install cmdliner 2.1.0 [required by atd, logs]
- install coin 0.1.5 [required by rosetta]
- install conf-libssl 4 [required by piaf]
- install conf-pkg-config 4 [required by conf-libssl]
- install containers 3.18 [required by otoggl]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install domain-name 0.5.0 [required by ipaddr]
- install dune-configurator 3.22.0~alpha0 [required by containers]
- install easy-format 1.3.4 [required by atd]
- install either 1.0.0 [required by containers]
- install emile 1.1 [required by mrmime]
- install faraday 0.8.2 [required by piaf]
- install faraday-lwt 0.8.2 [required by faraday-lwt-unix]
- install faraday-lwt-unix 0.8.2 [required by gluten-lwt-unix]
- install fmt 0.11.0 [required by logs, mrmime]
- install gluten 0.5.2 [required by gluten-lwt]
- install gluten-lwt 0.5.2 [required by gluten-lwt-unix]
- install gluten-lwt-unix 0.5.2 [required by piaf]
- install ipaddr 5.6.2 [required by mrmime]
- install ke 0.6 [required by mrmime]
- install logs 0.10.0 [required by piaf]
- install lwt 6.1.1 [required by piaf]
- install lwt_ssl 1.2.0 [required by piaf]
- install macaddr 5.6.2 [required by ipaddr]
- install magic-mime 1.3.1 [required by piaf]
- install menhir 20260209 [required by atd]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by menhir]
- install menhirSdk 20260209 [required by menhir]
- install mrmime 0.3.2 [required by piaf]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install ocplib-endian 1.2 [required by lwt]
- install otoggl 0.3.2
- install pecu 0.7 [required by piaf]
- install piaf 0.1.0 [required by otoggl]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by otoggl]
- install ppxlib 0.37.0 [required by ppx_deriving]
- install psq 0.2.1 [required by piaf]
- install ptime 1.2.0 [required by otoggl]
- install re 1.14.0 [required by atdgen]
- install result 1.5 [required by piaf]
- install rosetta 0.4.0 [required by mrmime]
- install rresult 0.7.0 [required by mrmime]
- install seq base [required by psq]
- install sexplib0 v0.17.0 [required by ppxlib]
- install ssl 0.7.0 [required by piaf]
- install stdlib-shims 0.3.0 [required by piaf]
- install stringext 1.6.0 [required by uri]
- install topkg 1.1.1 [required by logs]
- install unstrctrd 0.4 [required by mrmime]
- install uri 4.4.0 [required by piaf]
- install uutf 1.0.4 [required by mrmime]
- install uuuu 0.4.0 [required by rosetta]
- install yojson 3.0.0 [required by atdgen]
- install yuscii 0.3.0 [required by rosetta]
The following system packages will first need to be installed:
libssl-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libssl-dev" "pkg-config"
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../libssl-dev_3.5.4-1~deb13u2_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.4-1~deb13u2) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libssl-dev:amd64 (3.5.4-1~deb13u2) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved atd.3.0.1, atdgen.3.0.1, atdgen-runtime.3.0.1 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved bigarray-overlap.0.2.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved biniou.1.2.2 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved coin.0.1.5 (cached)
-> retrieved conf-libssl.4 (cached)
-> installed conf-pkg-config.4
-> retrieved containers.3.18 (cached)
-> installed base64.3.5.2
-> installed conf-libssl.4
-> retrieved cppo.1.8.0 (cached)
-> installed bigarray-compat.1.1.0
-> installed camlp-streams.5.0.1
-> retrieved csexp.1.5.2 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> installed bigarray-overlap.0.2.1
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed coin.0.1.5
-> retrieved dune-configurator.3.22.0~alpha0 (cached)
-> retrieved easy-format.1.3.4 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved emile.1.1 (cached)
-> retrieved faraday.0.8.2, faraday-lwt.0.8.2, faraday-lwt-unix.0.8.2 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved gluten.0.5.2, gluten-lwt.0.5.2, gluten-lwt-unix.0.5.2 (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2 (cached)
-> retrieved ke.0.6 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.1 (cached)
-> installed cmdliner.2.1.0
-> installed cppo.1.8.0
-> installed dune-configurator.3.22.0~alpha0
-> installed easy-format.1.3.4
-> installed either.1.0.0
-> installed macaddr.5.6.2
-> retrieved lwt_ssl.1.2.0 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> installed bigstringaf.0.10.0
-> installed biniou.1.2.2
-> installed ipaddr.5.6.2
-> installed magic-mime.1.3.1
-> retrieved mrmime.0.3.2 (cached)
-> installed menhirCST.20260209
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed containers.3.18
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed faraday.0.8.2
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved otoggl.0.3.2 (cached)
-> retrieved pecu.0.7 (cached)
-> installed gluten.0.5.2
-> retrieved piaf.0.1.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> installed ocaml-syntax-shims.1.0.0
-> installed pecu.0.7
-> installed ppx_derivers.1.2.1
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rosetta.0.4.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved ssl.0.7.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved unstrctrd.0.4 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed angstrom.0.16.1
-> retrieved uuuu.0.4.0 (cached)
-> installed result.1.5
-> retrieved yojson.3.0.0 (cached)
-> installed psq.0.2.1
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> retrieved yuscii.0.3.0 (cached)
-> installed sexplib0.v0.17.0
-> installed yuscii.0.3.0
-> installed uuuu.0.4.0
-> installed rosetta.0.4.0
-> installed re.1.14.0
-> installed ssl.0.7.0
-> installed yojson.3.0.0
-> installed uri.4.4.0
-> installed atdgen-runtime.3.0.1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed lwt.6.1.1
-> installed menhir.20260209
-> installed faraday-lwt.0.8.2
-> installed lwt_ssl.1.2.0
-> installed gluten-lwt.0.5.2
-> installed faraday-lwt-unix.0.8.2
-> installed gluten-lwt-unix.0.5.2
-> installed atd.3.0.1
-> installed atdgen.3.0.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed unstrctrd.0.4
-> installed emile.1.1
-> installed ke.0.6
-> installed logs.0.10.0
-> installed mrmime.0.3.2
-> installed ppxlib.0.37.0
-> installed piaf.0.1.0
-> installed ppx_deriving.6.1.1
-> installed otoggl.0.3.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:30.46 ---> saved as "f24a1ffc412648df524dfbfb2b4e444a40a2d71d7ea0f500f48a4797b12fb17d"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test otoggl.0.3.2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile otoggl 0.3.2
=== install 3 packages
- install alcotest 1.9.1 [required by otoggl]
- install alcotest-lwt 1.9.1 [required by otoggl]
- install astring 0.8.5 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved otoggl.0.3.2 (https://opam.ocaml.org/cache)
-> removed otoggl.0.3.2
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed alcotest-lwt.1.9.1
-> installed otoggl.0.3.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:30.55 ---> saved as "267f4fe4a3f50d2a809db8f4fee2b7760bdd3fc0b28905c91b3ffdb7824f3154"
/home/opam: (run (shell "opam reinstall --with-test --verbose otoggl.0.3.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\" != 'otoggl.0.3.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 otoggl 0.3.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [otoggl.0.3.2: extract]
-> retrieved otoggl.0.3.2 (cached)
Processing 2/4: [otoggl: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "otoggl" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/otoggl.0.3.2)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/.otoggl_test.objs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest-lwt -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/atdgen-runtime -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/biniou -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/domain -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/easy-format -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/gluten -I /home/opam/.opam/4.14/lib/gluten-lwt -I /home/opam/.opam/4.14/lib/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mrmime/prettym -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/piaf -I /home/opam/.opam/4.14/lib/piaf/h2 -I /home/opam/.opam/4.14/lib/piaf/h2-lwt -I /home/opam/.opam/4.14/lib/piaf/h2-lwt-unix -I /home/opam/.opam/4.14/lib/piaf/hpack -I /home/opam/.opam/4.14/lib/piaf/httpaf -I /home/opam/.opam/4.14/lib/piaf/httpaf-lwt -I /home/opam/.opam/4.14/lib/piaf/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/piaf/multipart -I /home/opam/.opam/4.14/lib/piaf/multipart_form -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -I lib/.Toggl.objs/byte -no-alias-deps -open Otoggl_test -o test/.otoggl_test.objs/byte/otoggl_test__Test_toggl.cmo -c -impl test/test_toggl.ml)
- File "test/test_toggl.ml", line 7, characters 12-19:
- 7 | result |> map_err (fun err -> Failure (Piaf.Error.to_string err)) |> get_exn
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 149, characters 7-14:
- 149 | |> map_err (check string "Says that url is not found" "not_found")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 148, characters 7-14:
- 148 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 156, characters 7-14:
- 156 | |> map_err (check string "Says that url is not found" "not_found")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 155, characters 7-14:
- 155 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 163, characters 7-14:
- 163 | |> map_err (check string "Says that url is not found" "not_found")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 162, characters 7-14:
- 162 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 170, characters 7-14:
- 170 | |> map_err (check string "Says that url is not found" "not_found")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 169, characters 7-14:
- 169 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 184, characters 7-14:
- 184 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 183, characters 7-14:
- 183 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 191, characters 7-14:
- 191 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 190, characters 7-14:
- 190 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 200, characters 7-14:
- 200 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 199, characters 7-14:
- 199 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 209, characters 7-14:
- 209 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 208, characters 7-14:
- 208 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 216, characters 7-14:
- 216 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 215, characters 7-14:
- 215 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 223, characters 7-14:
- 223 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 222, characters 7-14:
- 222 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 230, characters 7-14:
- 230 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 229, characters 7-14:
- 229 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 237, characters 7-14:
- 237 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 236, characters 7-14:
- 236 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/.otoggl_test.objs/byte -I test/.otoggl_test.objs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest-lwt -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/atdgen-runtime -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/base64/rfc2045 -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bigarray-overlap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/biniou -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/domain -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/easy-format -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/faraday -I /home/opam/.opam/4.14/lib/faraday-lwt -I /home/opam/.opam/4.14/lib/faraday-lwt-unix -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/gluten -I /home/opam/.opam/4.14/lib/gluten-lwt -I /home/opam/.opam/4.14/lib/gluten-lwt-unix -I /home/opam/.opam/4.14/lib/ke -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/lwt_ssl -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mrmime/prettym -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/pecu -I /home/opam/.opam/4.14/lib/piaf -I /home/opam/.opam/4.14/lib/piaf/h2 -I /home/opam/.opam/4.14/lib/piaf/h2-lwt -I /home/opam/.opam/4.14/lib/piaf/h2-lwt-unix -I /home/opam/.opam/4.14/lib/piaf/hpack -I /home/opam/.opam/4.14/lib/piaf/httpaf -I /home/opam/.opam/4.14/lib/piaf/httpaf-lwt -I /home/opam/.opam/4.14/lib/piaf/httpaf-lwt-unix -I /home/opam/.opam/4.14/lib/piaf/multipart -I /home/opam/.opam/4.14/lib/piaf/multipart_form -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/ssl -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/unstrctrd -I /home/opam/.opam/4.14/lib/unstrctrd/parser -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/yojson -I lib/.Toggl.objs/byte -I lib/.Toggl.objs/native -intf-suffix .ml -no-alias-deps -open Otoggl_test -o test/.otoggl_test.objs/native/otoggl_test__Test_toggl.cmx -c -impl test/test_toggl.ml)
- File "test/test_toggl.ml", line 7, characters 12-19:
- 7 | result |> map_err (fun err -> Failure (Piaf.Error.to_string err)) |> get_exn
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 149, characters 7-14:
- 149 | |> map_err (check string "Says that url is not found" "not_found")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 148, characters 7-14:
- 148 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 156, characters 7-14:
- 156 | |> map_err (check string "Says that url is not found" "not_found")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 155, characters 7-14:
- 155 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 163, characters 7-14:
- 163 | |> map_err (check string "Says that url is not found" "not_found")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 162, characters 7-14:
- 162 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 170, characters 7-14:
- 170 | |> map_err (check string "Says that url is not found" "not_found")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 169, characters 7-14:
- 169 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 184, characters 7-14:
- 184 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 183, characters 7-14:
- 183 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 191, characters 7-14:
- 191 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 190, characters 7-14:
- 190 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 200, characters 7-14:
- 200 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 199, characters 7-14:
- 199 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 209, characters 7-14:
- 209 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 208, characters 7-14:
- 208 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 216, characters 7-14:
- 216 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 215, characters 7-14:
- 215 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 223, characters 7-14:
- 223 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 222, characters 7-14:
- 222 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 230, characters 7-14:
- 230 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 229, characters 7-14:
- 229 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 237, characters 7-14:
- 237 | |> map_err (check string "Returns error" "Connect Error: connection error")
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- File "test/test_toggl.ml", line 236, characters 7-14:
- 236 | |> map_err Piaf.Error.to_string
- ^^^^^^^
- Alert deprecated: Lwt_result.map_err
- Alias to map_error
- (cd _build/default/test && ./test_runner.exe -q --color=always)
- Testing `Toggl unit tests'.
- This run has ID `NFDIWNPZ'.
-
- [OK] Normal behaviour 0 Creating time entry resp...
- [OK] Normal behaviour 1 Starting time entry resp...
- [OK] Normal behaviour 2 Stopping time entry resp...
- [OK] Normal behaviour 3 Getting current time ent...
- [OK] Normal behaviour 4 Getting specified time e...
- [OK] Normal behaviour 5 Deleting specified time ...
- [OK] Normal behaviour 6 Getting all time entries...
- [OK] Normal behaviour 7 Getting all time entries...
- [OK] Normal behaviour 8 Getting no time entries ...
- [OK] Normal behaviour 9 Getting all workspaces r...
- [OK] Normal behaviour 10 Getting all projects res...
- [OK] Page not found 0 Stopping time entry resp...
- [OK] Page not found 1 Getting all projects res...
- [OK] Page not found 2 Getting specified time e...
- [OK] Page not found 3 Deleting specified time ...
- [OK] Error case 0 Creating time entry resp...
- [OK] Error case 1 Starting time entry resp...
- [OK] Error case 2 Stopping time entry resp...
- [OK] Error case 3 Getting current time ent...
- [OK] Error case 4 Getting specified time e...
- [OK] Error case 5 Deleting specified time ...
- [OK] Error case 6 Getting all workspaces r...
- [OK] Error case 7 Getting all projects res...
- [SKIP] Toggl integration tests 0 Start, get current, stop...
- [SKIP] Toggl integration tests 1 Start, get current and d...
- [SKIP] Toggl integration tests 2 Start, stop and delete t...
- [SKIP] Toggl integration tests 3 Start and delete time en...
- [SKIP] Toggl integration tests 4 Create, get by id and de...
- [SKIP] Toggl integration tests 5 Create time entry then l...
- [SKIP] Toggl integration tests 6 Create time entry then l...
- [SKIP] Toggl integration tests 7 Create time entry then l...
- [SKIP] Toggl integration tests 8 Create time entry then l...
- [SKIP] Toggl integration tests 9 Create time entry then m...
-
- Full test results in `~/.opam/4.14/.opam-switch/build/otoggl.0.3.2/_build/default/test/_build/_tests/Toggl unit tests'.
- Test Successful in 0.002s. 23 tests run.
Processing 2/4: [otoggl: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "otoggl" "--create-install-files" "otoggl" (CWD=/home/opam/.opam/4.14/.opam-switch/build/otoggl.0.3.2)
-> compiled otoggl.0.3.2
-> removed otoggl.0.3.2
-> installed otoggl.0.3.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:31.00 ---> saved as "e9ddd3a891ee7f899c39f15ca2a4fae1a458b3405ac32b67cc83163040a2b7d6"
Job succeeded
2026-03-03 04:31.06: Job succeeded