- github
- ocaml
- opam-repository
- 3513e0
- compilers,4.14,lwt.6.0.0~beta01,revdeps,irmin.2.2.0
(not at the head of any monitored branch or PR)
2026-02-04 13:41.27: New job: test irmin.2.2.0 with lwt.6.0.0~beta01, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29336/head (3513e0876097dd74e6a34c4d690c9d4e2b9fa1d8)
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/29336/head" && git reset --hard 3513e087
git fetch origin master
git merge --no-edit 45c04602c2fc908af6d1b17ba39c7517d58cb274
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
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 lwt.6.0.0~beta01 6.0.0~beta01
RUN opam reinstall lwt.6.0.0~beta01; \
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" != 'lwt.6.0.0~beta01' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall irmin.2.2.0; \
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" != 'irmin.2.2.0' && 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 irmin.2.2.0) || true
RUN opam reinstall --with-test --verbose irmin.2.2.0; \
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" != 'irmin.2.2.0' && 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-02-04 13:41.27: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7-lwt.6.0.0~beta01-irmin.2.2.0-3513e0876097dd74e6a34c4d690c9d4e2b9fa1d8"
2026-02-04 13:41.27: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7)
(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 lwt.6.0.0~beta01 6.0.0~beta01"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0~beta01;\
\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\" != 'lwt.6.0.0~beta01' && 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 irmin.2.2.0;\
\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\" != 'irmin.2.2.0' && 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 irmin.2.2.0) || true"))
(run (shell "opam reinstall --with-test --verbose irmin.2.2.0;\
\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\" != 'irmin.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-04 13:41.27: Waiting for resource in pool OCluster
2026-02-04 13:53.19: Waiting for worker…
2026-02-04 13:55.55: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 44% (8576/19337)
Updating files: 45% (8702/19337)
Updating files: 46% (8896/19337)
Updating files: 47% (9089/19337)
Updating files: 48% (9282/19337)
Updating files: 49% (9476/19337)
Updating files: 50% (9669/19337)
Updating files: 51% (9862/19337)
Updating files: 52% (10056/19337)
Updating files: 53% (10249/19337)
Updating files: 54% (10442/19337)
Updating files: 55% (10636/19337)
Updating files: 56% (10829/19337)
Updating files: 57% (11023/19337)
Updating files: 58% (11216/19337)
Updating files: 59% (11409/19337)
Updating files: 60% (11603/19337)
Updating files: 61% (11796/19337)
Updating files: 62% (11989/19337)
Updating files: 63% (12183/19337)
Updating files: 64% (12376/19337)
Updating files: 65% (12570/19337)
Updating files: 66% (12763/19337)
Updating files: 67% (12956/19337)
Updating files: 68% (13150/19337)
Updating files: 69% (13343/19337)
Updating files: 70% (13536/19337)
Updating files: 71% (13730/19337)
Updating files: 72% (13923/19337)
Updating files: 73% (14117/19337)
Updating files: 74% (14310/19337)
Updating files: 75% (14503/19337)
Updating files: 76% (14697/19337)
Updating files: 77% (14890/19337)
Updating files: 78% (15083/19337)
Updating files: 78% (15084/19337)
Updating files: 79% (15277/19337)
Updating files: 80% (15470/19337)
Updating files: 81% (15663/19337)
Updating files: 82% (15857/19337)
Updating files: 83% (16050/19337)
Updating files: 84% (16244/19337)
Updating files: 85% (16437/19337)
Updating files: 86% (16630/19337)
Updating files: 87% (16824/19337)
Updating files: 88% (17017/19337)
Updating files: 89% (17210/19337)
Updating files: 90% (17404/19337)
Updating files: 91% (17597/19337)
Updating files: 92% (17791/19337)
Updating files: 93% (17984/19337)
Updating files: 94% (18177/19337)
Updating files: 95% (18371/19337)
Updating files: 96% (18564/19337)
Updating files: 97% (18757/19337)
Updating files: 98% (18951/19337)
Updating files: 99% (19144/19337)
Updating files: 100% (19337/19337)
Updating files: 100% (19337/19337), done.
HEAD is now at 45c04602c2 Merge pull request #29332 from fpottier/master
Updating 45c04602c2..3513e08760
Fast-forward
packages/lwt/{lwt.6.0.0-beta01 => lwt.6.0.0~beta01}/opam | 0
.../lwt_direct/{lwt_direct.6.0.0-beta01 => lwt_direct.6.0.0~beta01}/opam | 0
packages/lwt_ppx/{lwt_ppx.6.0.0-beta01 => lwt_ppx.6.0.0~beta01}/opam | 0
.../opam | 0
4 files changed, 0 insertions(+), 0 deletions(-)
rename packages/lwt/{lwt.6.0.0-beta01 => lwt.6.0.0~beta01}/opam (100%)
rename packages/lwt_direct/{lwt_direct.6.0.0-beta01 => lwt_direct.6.0.0~beta01}/opam (100%)
rename packages/lwt_ppx/{lwt_ppx.6.0.0-beta01 => lwt_ppx.6.0.0~beta01}/opam (100%)
rename packages/lwt_runtime_events/{lwt_runtime_events.6.0.0-beta01 => lwt_runtime_events.6.0.0~beta01}/opam (100%)
(from ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7' locally
docker.io/ocaml/opam@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7: Pulling from ocaml/opam
2ca1bfae7ba8: Already exists
e4d8ee4b2a38: Pulling fs layer
1d3116276f8e: Pulling fs layer
75b74a4d1ac0: Pulling fs layer
b6ccadbb02b4: Pulling fs layer
8cbf8e460264: Pulling fs layer
b6ccadbb02b4: Waiting
3315611f76bf: Pulling fs layer
8cbf8e460264: Waiting
504308973b3d: Pulling fs layer
3315611f76bf: Waiting
d88808e698ae: Pulling fs layer
504308973b3d: Waiting
64194555da04: Pulling fs layer
bcae218e4dec: Pulling fs layer
64194555da04: Waiting
d88808e698ae: Waiting
0678004b187f: Pulling fs layer
bcae218e4dec: Waiting
608c27b1299a: Pulling fs layer
0678004b187f: Waiting
2d112e543012: Pulling fs layer
7515eb74eee1: Pulling fs layer
608c27b1299a: Waiting
2d112e543012: Waiting
c57ccaf32dad: Pulling fs layer
7515eb74eee1: Waiting
1ad18dadc94d: Pulling fs layer
c57ccaf32dad: Waiting
e597bdf2ce86: Pulling fs layer
895287036913: Pulling fs layer
e597bdf2ce86: Waiting
1ad18dadc94d: Waiting
669157da4bb1: Pulling fs layer
895287036913: Waiting
05dacbfea855: Pulling fs layer
c07f56eefed9: Pulling fs layer
4f4fb700ef54: Pulling fs layer
669157da4bb1: Waiting
05dacbfea855: Waiting
8d67afca45c4: Pulling fs layer
c07f56eefed9: Waiting
eaf56bb8bbcb: Pulling fs layer
8d67afca45c4: Waiting
4f4fb700ef54: Waiting
3eb319385d03: Pulling fs layer
eaf56bb8bbcb: Waiting
3eb319385d03: Waiting
7e47d6bb7bc1: Pulling fs layer
dc066cdb4877: Pulling fs layer
7e47d6bb7bc1: Waiting
3bd4cfbaf252: Pulling fs layer
e1cd4fc2a870: Pulling fs layer
3bd4cfbaf252: Waiting
c620a639b37a: Pulling fs layer
e1cd4fc2a870: Waiting
dc066cdb4877: Waiting
2765b1030b2e: Pulling fs layer
4e076d3d484c: Pulling fs layer
c620a639b37a: Waiting
2765b1030b2e: Waiting
8fe2e737bcaf: Pulling fs layer
4e076d3d484c: Waiting
29a5f2a84735: Pulling fs layer
8fe2e737bcaf: Waiting
829846ac5653: Pulling fs layer
29a5f2a84735: Waiting
6cf201ca8833: Pulling fs layer
829846ac5653: Waiting
7f975caeb23f: Pulling fs layer
de5cd6b102fb: Pulling fs layer
6cf201ca8833: Waiting
8ce740230729: Pulling fs layer
29df89ae24a1: Pulling fs layer
de5cd6b102fb: Waiting
8ce740230729: Waiting
cd1a29bde858: Pulling fs layer
29df89ae24a1: Waiting
50df3536b5d6: Pulling fs layer
dba635352ec5: Pulling fs layer
cd1a29bde858: Waiting
50df3536b5d6: Waiting
dba635352ec5: Waiting
7f975caeb23f: Waiting
df590c87b573: Pulling fs layer
1d3116276f8e: Verifying Checksum
1d3116276f8e: Download complete
e4d8ee4b2a38: Verifying Checksum
e4d8ee4b2a38: Download complete
e4d8ee4b2a38: Pull complete
1d3116276f8e: Pull complete
75b74a4d1ac0: Verifying Checksum
75b74a4d1ac0: Download complete
b6ccadbb02b4: Verifying Checksum
b6ccadbb02b4: Download complete
75b74a4d1ac0: Pull complete
3315611f76bf: Verifying Checksum
3315611f76bf: Download complete
b6ccadbb02b4: Pull complete
504308973b3d: Verifying Checksum
504308973b3d: Download complete
d88808e698ae: Verifying Checksum
d88808e698ae: Download complete
64194555da04: Verifying Checksum
64194555da04: Download complete
bcae218e4dec: Verifying Checksum
bcae218e4dec: Download complete
0678004b187f: Verifying Checksum
0678004b187f: Download complete
2d112e543012: Verifying Checksum
2d112e543012: Download complete
608c27b1299a: Verifying Checksum
608c27b1299a: Download complete
7515eb74eee1: Verifying Checksum
7515eb74eee1: Download complete
c57ccaf32dad: Verifying Checksum
c57ccaf32dad: Download complete
e597bdf2ce86: Verifying Checksum
e597bdf2ce86: Download complete
8cbf8e460264: Verifying Checksum
8cbf8e460264: Download complete
1ad18dadc94d: Verifying Checksum
1ad18dadc94d: Download complete
895287036913: Verifying Checksum
895287036913: Download complete
669157da4bb1: Verifying Checksum
669157da4bb1: Download complete
05dacbfea855: Verifying Checksum
05dacbfea855: Download complete
c07f56eefed9: Verifying Checksum
c07f56eefed9: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
8d67afca45c4: Download complete
eaf56bb8bbcb: Verifying Checksum
eaf56bb8bbcb: Download complete
3eb319385d03: Verifying Checksum
3eb319385d03: Download complete
7e47d6bb7bc1: Verifying Checksum
7e47d6bb7bc1: Download complete
dc066cdb4877: Download complete
3bd4cfbaf252: Verifying Checksum
3bd4cfbaf252: Download complete
e1cd4fc2a870: Download complete
c620a639b37a: Download complete
2765b1030b2e: Verifying Checksum
2765b1030b2e: Download complete
4e076d3d484c: Verifying Checksum
4e076d3d484c: Download complete
8fe2e737bcaf: Verifying Checksum
8fe2e737bcaf: Download complete
29a5f2a84735: Download complete
6cf201ca8833: Verifying Checksum
6cf201ca8833: Download complete
de5cd6b102fb: Verifying Checksum
de5cd6b102fb: Download complete
8ce740230729: Download complete
29df89ae24a1: Download complete
829846ac5653: Verifying Checksum
829846ac5653: Download complete
7f975caeb23f: Verifying Checksum
7f975caeb23f: Download complete
50df3536b5d6: Verifying Checksum
50df3536b5d6: Download complete
dba635352ec5: Download complete
df590c87b573: Verifying Checksum
df590c87b573: Download complete
cd1a29bde858: Download complete
8cbf8e460264: Pull complete
3315611f76bf: Pull complete
504308973b3d: Pull complete
d88808e698ae: Pull complete
64194555da04: Pull complete
bcae218e4dec: Pull complete
0678004b187f: Pull complete
608c27b1299a: Pull complete
2d112e543012: Pull complete
7515eb74eee1: Pull complete
c57ccaf32dad: Pull complete
1ad18dadc94d: Pull complete
e597bdf2ce86: Pull complete
895287036913: Pull complete
669157da4bb1: Pull complete
05dacbfea855: Pull complete
c07f56eefed9: Pull complete
4f4fb700ef54: Pull complete
8d67afca45c4: Pull complete
eaf56bb8bbcb: Pull complete
3eb319385d03: Pull complete
7e47d6bb7bc1: Pull complete
dc066cdb4877: Pull complete
3bd4cfbaf252: Pull complete
e1cd4fc2a870: Pull complete
c620a639b37a: Pull complete
2765b1030b2e: Pull complete
4e076d3d484c: Pull complete
8fe2e737bcaf: Pull complete
29a5f2a84735: Pull complete
829846ac5653: Pull complete
6cf201ca8833: Pull complete
7f975caeb23f: Pull complete
de5cd6b102fb: Pull complete
8ce740230729: Pull complete
29df89ae24a1: Pull complete
cd1a29bde858: Pull complete
50df3536b5d6: Pull complete
dba635352ec5: Pull complete
df590c87b573: Pull complete
Digest: sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
Status: Downloaded newer image for ocaml/opam@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
2026-02-04 13:57.14 ---> using "6a529338653936dd261dd42dcc0e2d18c1a03440bc5c8aa2a17bafbdf6595264" 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-02-04 13:57.14 ---> using "a8c9e5db701a2843d9e0fdf5928fcfbc8cab25ba63f7ef4876c3ba9cbe2e1c00" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-04 13:57.14 ---> using "5c373a63e5ac1e69774cf481a742f8a69ebe54e8a43166cf6ffcd33bf32d373d" 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
2026-02-04 13:57.14 ---> using "402b9d00e6f7a5da0e60648ac930485174b6a1e2d66ab81967b14702119c5f4d" 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-02-04 13:57.14 ---> using "41261ca47d1b1073701808a26cea2999906bae061c95bbddc88d4dc05a86491b" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-04 13:57.16 ---> using "a0d5300200ca91224053ba8934eebe21aad5afd24abf227c0c6a971a7244d566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-04 13:57.16 ---> using "d14171b95c8a5051e1f5a80fcaf2330cfcfda99140948f03e8bd80954b5ed58f" 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 [98.8 kB]
- Fetched 190 kB in 0s (844 kB/s)
- Reading package lists...
-
2026-02-04 13:57.16 ---> using "404217f7f25de2a298afdaabc6f47d1f4435e0ba03c877266f54ae0c93fe1954" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0~beta01 6.0.0~beta01"))
lwt is now pinned to version 6.0.0~beta01
2026-02-04 13:57.16 ---> using "7335d87157f602ab3dd1fcad5825b56ea066d17a5f1f8236c7544ce538672449" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0~beta01;\
\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\" != 'lwt.6.0.0~beta01' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt.6.0.0~beta01 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.0 [required by lwt]
- install dune-configurator 3.21.0 [required by lwt]
- install lwt 6.0.0~beta01 (pinned)
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0 (cached)
-> retrieved lwt.6.0.0~beta01 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.0
-> installed lwt.6.0.0~beta01
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-04 13:57.16 ---> using "5b3d6cbf4b3178451a37bd5acdf0e9b66caca172bfbe65c7c38213002bb51790" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall irmin.2.2.0;\
\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\" != 'irmin.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
irmin.2.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
- install angstrom 0.16.1 [required by uri]
- install astring 0.8.5 [required by irmin]
- install base64 3.5.2 [required by irmin]
- install bigstringaf 0.10.0 [required by angstrom]
- install digestif 1.3.0 [required by irmin]
- install eqaf 0.10 [required by digestif]
- install fmt 0.11.0 [required by irmin]
- install irmin 2.2.0
- install jsonm 1.0.2 [required by irmin]
- install logs 0.10.0 [required by irmin]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by jsonm, astring, fmt, logs]
- install ocamlgraph 2.2.0 [required by irmin]
- install stringext 1.6.0 [required by uri]
- install topkg 1.1.1 [required by jsonm, astring, fmt, logs]
- install uri 4.4.0 [required by irmin]
- install uutf 1.0.4 [required by jsonm]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> installed base64.3.5.2
-> installed bigstringaf.0.10.0
-> retrieved digestif.1.3.0 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved irmin.2.2.0 (https://opam.ocaml.org/cache)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed eqaf.0.10
-> retrieved uri.4.4.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed stringext.1.6.0
-> installed ocaml-syntax-shims.1.0.0
-> installed digestif.1.3.0
-> installed angstrom.0.16.1
-> installed ocamlgraph.2.2.0
-> installed uri.4.4.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed logs.0.10.0
-> installed irmin.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-04 13:57.55 ---> saved as "0c195b6ace397707fce33f5774f06772b8e27e4235912a8383313f22efb50fee"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test irmin.2.2.0) || true"))
The following actions will be performed:
=== recompile 5 packages
- recompile fmt 0.11.0 [uses cmdliner]
- recompile irmin 2.2.0
- recompile jsonm 1.0.2 [uses uutf]
- recompile logs 0.10.0 [uses cmdliner]
- recompile uutf 1.0.4 [uses cmdliner]
=== install 16 packages
- install alcotest 1.9.1 [required by irmin]
- install cmdliner 2.1.0 [required by alcotest]
- install cstruct 6.2.0 [required by hex]
- install either 1.0.0 [required by repr]
- install hex 1.5.0 [required by irmin]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install optint 0.3.0 [required by repr]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by ppx_repr]
- install ppx_irmin 3.11.0 [required by irmin]
- install ppx_repr 0.8.0 [required by ppx_irmin]
- install ppxlib 0.37.0 [required by ppx_irmin]
- install re 1.14.0 [required by alcotest]
- install repr 0.8.0 [required by ppx_repr]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0 (https://opam.ocaml.org/cache)
-> retrieved either.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved hex.1.5.0 (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> retrieved irmin.2.2.0 (https://opam.ocaml.org/cache)
-> retrieved jsonm.1.0.2 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4 (https://opam.ocaml.org/cache)
-> retrieved optint.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving.6.1.1 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> installed optint.0.3.0
-> retrieved ppx_irmin.3.11.0 (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved ppx_repr.0.8.0, repr.0.8.0 (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> removed irmin.2.2.0
-> removed jsonm.1.0.2
-> removed logs.0.10.0
-> removed fmt.0.11.0
-> removed uutf.1.0.4
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed alcotest.1.9.1
-> installed jsonm.1.0.2
-> installed logs.0.10.0
-> installed repr.0.8.0
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed ppx_repr.0.8.0
-> installed ppx_irmin.3.11.0
-> installed irmin.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-04 13:58.58 ---> saved as "22ef1d39a7fa566a83557860a6aef23af9a9636312c82637b0828a6c33d15896"
/home/opam: (run (shell "opam reinstall --with-test --verbose irmin.2.2.0;\
\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\" != 'irmin.2.2.0' && 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 irmin 2.2.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [irmin.2.2.0: extract]
-> retrieved irmin.2.2.0 (cached)
Processing 2/4: [irmin: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "irmin" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/irmin.2.2.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/irmin/type/.irmin_type.objs/byte -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -open Irmin_type__ -o src/irmin/type/.irmin_type.objs/byte/irmin_type__Type_json.cmo -c -impl src/irmin/type/type_json.ml)
- File "src/irmin/type/type_json.ml", line 164, characters 9-17:
- 164 | (Fmt.strf
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin/type/type_json.ml", line 343, characters 27-35:
- 343 | (`Msg (Fmt.strf "missing value for %s.%s" r.rname h.fname)) )
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/irmin/type/.irmin_type.objs/byte -I src/irmin/type/.irmin_type.objs/native -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -open Irmin_type__ -o src/irmin/type/.irmin_type.objs/native/irmin_type__Type_json.cmx -c -impl src/irmin/type/type_json.ml)
- File "src/irmin/type/type_json.ml", line 164, characters 9-17:
- 164 | (Fmt.strf
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin/type/type_json.ml", line 343, characters 27-35:
- 343 | (`Msg (Fmt.strf "missing value for %s.%s" r.rname h.fname)) )
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/irmin/.irmin.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Commit.cmo -c -impl src/irmin/commit.ml)
- File "src/irmin/commit.ml", line 80, characters 4-13:
- 80 | Fmt.kstrf invalid_arg "Commit.get: %a not found" pp_key k
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/commit.ml", line 213, characters 38-42:
- 213 | Fmt.pf ppf "[%a]" Fmt.(list ~sep:(unit " ") pp_key) keys
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "src/irmin/commit.ml", line 295, characters 7-15:
- 295 | Fmt.strf "d: %d, seen1: %s, seen2: %s, seenboth: %s, lcas: %s (%d) %s"
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin/commit.ml", line 299, characters 32-40:
- 299 | (fun d ks acc -> Fmt.strf "(%d: %s)" d (str_keys ks) :: acc)
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin/commit.ml", line 457, characters 15-23:
- 457 | Fmt.strf "Recursive merging of common ancestors: %s" msg)
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/irmin/.irmin.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Tree.cmo -c -impl src/irmin/tree.ml)
- File "src/irmin/tree.ml", line 988, characters 4-13:
- 988 | Fmt.kstrf invalid_arg "Irmin.Tree.%s: %a not found" n pp_path k
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/tree.ml", line 755, characters 12-42:
- 755 | (step [@tailcall]) ~path acc h @@ fun acc ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- File "src/irmin/tree.ml", line 764, characters 12-50:
- 764 | (steps [@tailcall]) ~path acc bindings @@ fun acc ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- File "src/irmin/tree.ml", line 1068, characters 8-32:
- 1068 | (aux [@tailcall]) n path @@ function
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- File "src/irmin/tree.ml", line 1098, characters 8-32:
- 1098 | (aux [@tailcall]) n path @@ function
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- File "src/irmin/tree.ml", line 1133, characters 8-32:
- 1133 | (aux [@tailcall]) n path @@ function
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- File "src/irmin/tree.ml", line 1238, characters 4-31:
- 1238 | (add_to_todo [@tailcall]) n @@ fun () ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/irmin/.irmin.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Sync_ext.cmo -c -impl src/irmin/sync_ext.ml)
- File "src/irmin/sync_ext.ml", line 20, characters 23-32:
- 20 | let invalid_argf fmt = Fmt.kstrf Lwt.fail_invalid_arg fmt
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/irmin/.irmin.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Contents.cmo -c -impl src/irmin/contents.ml)
- File "src/irmin/contents.ml", line 43, characters 28-36:
- 43 | | `Error e -> failwith (Fmt.strf "%a" Jsonm.pp_error e)
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/irmin/.irmin.objs/byte -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Store.cmo -c -impl src/irmin/store.ml)
- File "src/irmin/store.ml", line 45, characters 10-19:
- 45 | Fmt.kstrf Lwt.fail_invalid_arg "corrupted value: got %a, expecting %a"
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 291, characters 27-36:
- 291 | let import_error fmt = Fmt.kstrf (fun x -> Lwt.fail (Import_error x)) fmt
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 333, characters 17-26:
- 333 | | e -> Fmt.kstrf Lwt.fail_invalid_arg "impot error: %a" Fmt.exn e)
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 369, characters 22-31:
- 369 | let err_no_head s = Fmt.kstrf Lwt.fail_invalid_arg "Irmin.%s: no head" s
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 389, characters 14-22:
- 389 | let err = Fmt.strf "%a is not a valid branch name." pp_branch t in
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin/store.ml", line 699, characters 17-26:
- 699 | | Error e -> Fmt.kstrf Lwt.fail_with "%s: %a" name pp_write_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 891, characters 8-17:
- 891 | Fmt.kstrf Lwt.fail_invalid_arg
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 1054, characters 6-15:
- 1054 | Fmt.kstrf invalid_arg "Branch.get: %a not found" pp_branch k
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/irmin/.irmin.objs/byte -I src/irmin/.irmin.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -I src/irmin/type/.irmin_type.objs/native -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Commit.cmx -c -impl src/irmin/commit.ml)
- File "src/irmin/commit.ml", line 80, characters 4-13:
- 80 | Fmt.kstrf invalid_arg "Commit.get: %a not found" pp_key k
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/commit.ml", line 213, characters 38-42:
- 213 | Fmt.pf ppf "[%a]" Fmt.(list ~sep:(unit " ") pp_key) keys
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "src/irmin/commit.ml", line 295, characters 7-15:
- 295 | Fmt.strf "d: %d, seen1: %s, seen2: %s, seenboth: %s, lcas: %s (%d) %s"
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin/commit.ml", line 299, characters 32-40:
- 299 | (fun d ks acc -> Fmt.strf "(%d: %s)" d (str_keys ks) :: acc)
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin/commit.ml", line 457, characters 15-23:
- 457 | Fmt.strf "Recursive merging of common ancestors: %s" msg)
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/irmin/.irmin.objs/byte -I src/irmin/.irmin.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -I src/irmin/type/.irmin_type.objs/native -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Tree.cmx -c -impl src/irmin/tree.ml)
- File "src/irmin/tree.ml", line 988, characters 4-13:
- 988 | Fmt.kstrf invalid_arg "Irmin.Tree.%s: %a not found" n pp_path k
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/irmin/.irmin.objs/byte -I src/irmin/.irmin.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -I src/irmin/type/.irmin_type.objs/native -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Store.cmx -c -impl src/irmin/store.ml)
- File "src/irmin/store.ml", line 45, characters 10-19:
- 45 | Fmt.kstrf Lwt.fail_invalid_arg "corrupted value: got %a, expecting %a"
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 291, characters 27-36:
- 291 | let import_error fmt = Fmt.kstrf (fun x -> Lwt.fail (Import_error x)) fmt
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 333, characters 17-26:
- 333 | | e -> Fmt.kstrf Lwt.fail_invalid_arg "impot error: %a" Fmt.exn e)
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 369, characters 22-31:
- 369 | let err_no_head s = Fmt.kstrf Lwt.fail_invalid_arg "Irmin.%s: no head" s
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 389, characters 14-22:
- 389 | let err = Fmt.strf "%a is not a valid branch name." pp_branch t in
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "src/irmin/store.ml", line 699, characters 17-26:
- 699 | | Error e -> Fmt.kstrf Lwt.fail_with "%s: %a" name pp_write_error e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 891, characters 8-17:
- 891 | Fmt.kstrf Lwt.fail_invalid_arg
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 1054, characters 6-15:
- 1054 | Fmt.kstrf invalid_arg "Branch.get: %a not found" pp_branch k
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/irmin/.irmin.objs/byte -I src/irmin/.irmin.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -I src/irmin/type/.irmin_type.objs/native -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Sync_ext.cmx -c -impl src/irmin/sync_ext.ml)
- File "src/irmin/sync_ext.ml", line 20, characters 23-32:
- 20 | let invalid_argf fmt = Fmt.kstrf Lwt.fail_invalid_arg fmt
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/irmin/.irmin.objs/byte -I src/irmin/.irmin.objs/native -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/type/.irmin_type.objs/byte -I src/irmin/type/.irmin_type.objs/native -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Contents.cmx -c -impl src/irmin/contents.ml)
- File "src/irmin/contents.ml", line 43, characters 28-36:
- 43 | | `Error e -> failwith (Fmt.strf "%a" Jsonm.pp_error e)
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
Processing 2/4: [irmin: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "irmin" (CWD=/home/opam/.opam/4.14/.opam-switch/build/irmin.2.2.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/irmin/.test.eobjs/byte -I test/irmin/.test.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -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/base64 -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/digestif/c -I /home/opam/.opam/4.14/lib/eqaf -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/hex -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I src/irmin/.irmin.objs/byte -I src/irmin/.irmin.objs/native -I src/irmin/type/.irmin_type.objs/byte -I src/irmin/type/.irmin_type.objs/native -intf-suffix .ml -no-alias-deps -o test/irmin/.test.eobjs/native/test.cmx -c -impl test/irmin/test.pp.ml)
- File "test/irmin/test.ml", line 218, characters 6-14:
- 218 | Fmt.strf "Expected output of `to_string` for representation of `%s`"
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/irmin/test.ml", line 289, characters 6-14:
- 289 | Fmt.strf "Expected output of `pp_ty` for representation of `%s`" case_name
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/irmin/test.ml", line 433, characters 39-47:
- 433 | | Some ss -> Alcotest.(check int) (Fmt.strf "size:%d" x) s ss
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/irmin/test.ml", line 467, characters 28-37:
- 467 | try Ok (f ()) with e -> Fmt.kstrf (fun s -> Error s) "%a" Fmt.exn e
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "test/irmin/test.ml", line 485, characters 19-27:
- 485 | let name = Fmt.strf "size: %a" (Irmin.Type.pp t) v in
- ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default/test/irmin && ./test.exe)
- Testing `irmin'.
- This run has ID `3HKUMFDG'.
-
- [OK] type 0 base.
- [OK] type 1 json.
- [OK] type 2 json_option.
- [OK] type 3 bin.
- [OK] type 4 to_string.
- [OK] type 5 pp_ty.
- [OK] type 6 compare.
- [OK] type 7 equal.
- [OK] type 8 ints.
- [OK] type 9 decode.
- [OK] type 10 size_of.
- [OK] type 11 test_hashes.
- [OK] type 12 test_variants.
- [OK] type 13 test_duplicate_names.
- [OK] type 14 test_malformed_utf8.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/irmin.2.2.0/_build/default/test/irmin/_build/_tests/irmin'.
- Test Successful in 1.198s. 15 tests run.
-> compiled irmin.2.2.0
-> removed irmin.2.2.0
-> installed irmin.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-04 13:59.16 ---> saved as "5405f58b39374ea5095a5bf7f7b1ca28d2d67ff29bee79ae414b97c7bcef2f37"
Job succeeded
2026-02-04 14:01.44: Job succeeded