- github
- ocaml
- opam-repository
- 65f044
- compilers,4.14,lwt.5.9.1,revdeps,irmin.2.6.1
(not at the head of any monitored branch or PR)
2025-03-07 09:56.26: New job: test irmin.2.6.1 with lwt.5.9.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/27583/head (65f0444f860f151e52fa62d523ffefb662b20944)
on debian-12-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/27583/head" && git reset --hard 65f0444f
git fetch origin master
git merge --no-edit 862a7640b194b6ef60dc2d24341920e48dd021fe
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a
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.5.9.1 5.9.1
RUN opam reinstall lwt.5.9.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt.5.9.1' && 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.6.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'irmin.2.6.1' && 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.6.1) || true
RUN opam reinstall --with-test --verbose irmin.2.6.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'irmin.2.6.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-03-07 09:56.26: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a-lwt.5.9.1-irmin.2.6.1-65f0444f860f151e52fa62d523ffefb662b20944"
2025-03-07 09:56.26: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a)
(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.5.9.1 5.9.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.5.9.1;\
\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-12\\\"\"; 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.5.9.1' && 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.6.1;\
\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-12\\\"\"; 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.6.1' && 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.6.1) || true"))
(run (shell "opam reinstall --with-test --verbose irmin.2.6.1;\
\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-12\\\"\"; 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.6.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-03-07 09:56.26: Waiting for resource in pool OCluster
2025-03-07 20:42.17: Waiting for worker…
2025-03-07 20:46.05: Got resource from pool OCluster
Building on doris.caelum.ci.dev
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /var/cache/obuilder/ocluster/git/opam-repository.git-b322f7b18d276db68487afc3dfc5a5befdd45818/.git/
HEAD is now at 862a7640b1 Merge pull request #27578 from kit-ty-kate/patch-3.0-revdeps
Updating 862a7640b1..65f0444f86
Fast-forward
packages/lwt/lwt.5.9.1/opam | 63 +++++++++++++++++++++++++++++++++++++
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 42 +++++++++++++++++++++++++
2 files changed, 105 insertions(+)
create mode 100644 packages/lwt/lwt.5.9.1/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.5.9.1/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:063c2b32ef761611dbb98f20a0dcb2f06dc59770f34be7739ae58d1639b9418a)
2025-03-07 20:47.08 ---> saved as "d2dbd4e2d532e8c62f07aa22d50c50b7ad6c763419419e849ca6f7abbed6a816"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-03-07 20:47.08 ---> saved as "6107ef551409e9a51c9203dfc874837b90300e79ce7e550509a8be6e57c32b93"
/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 development 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 39 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=39 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-07 20:48.03 ---> saved as "a1cf6f11bd1106ffb7027fe3330a262ca001823e620e406c27f998c9e3df1fdd"
/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.4.0~alpha1~dev (7f62f012239c88b3ce08e800578ca1d88e602f8a)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-03-07 20:48.04 ---> saved as "151786d5197006b76ff4703b371ea0131ff28d48748f8a701414cb695132a8c5"
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-03-07 20:48.14 ---> saved as "d687aaf65422492f8c62b1922bf7bf3f56a5f7cc7c5271a79621cfd60fcaa471"
/home/opam: (copy (src .) (dst opam-repository/))
2025-03-07 20:49.06 ---> saved as "4125c51bebb2e0eb8635e2b028691d50762178e70a589203e7d9d68b981b14f3"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-07 20:49.44 ---> saved as "ad918b3e342c65f6179107eb9698e5746a2f08c768786924c6f5abc28f023e39"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [246 kB]
- Fetched 349 kB in 0s (874 kB/s)
- Reading package lists...
2025-03-07 20:49.45 ---> saved as "ed72ab6df900cc2e2771ae42b55b95b705a96c591da8a475ba3e71186a9fc355"
/home/opam: (run (shell "opam pin add -k version -yn lwt.5.9.1 5.9.1"))
lwt is now pinned to version 5.9.1
2025-03-07 20:49.47 ---> saved as "5b10adb643313ab7a7db8f330b7eeb6c491b3921e8f1e0a5d1d9a88051089571"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.5.9.1;\
\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-12\\\"\"; 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.5.9.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt.5.9.1 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.17.2 [required by lwt]
- install dune-configurator 3.17.2 [required by lwt]
- install lwt 5.9.1 (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 (https://github.com/ocaml-community/cppo/archive/v1.8.0.tar.gz)
-> retrieved csexp.1.5.2 (https://github.com/ocaml-dune/csexp/releases/download/1.5.2/csexp-1.5.2.tbz)
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (https://github.com/ocaml/dune/releases/download/3.17.2/dune-3.17.2.tbz)
-> retrieved lwt.5.9.1 (https://github.com/ocsigen/lwt/archive/refs/tags/5.9.1.tar.gz)
-> retrieved ocamlfind.1.9.8 (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> retrieved ocplib-endian.1.2 (https://github.com/OCamlPro/ocplib-endian/archive/refs/tags/1.2.tar.gz)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.17.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.17.2
-> installed lwt.5.9.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-07 20:50.21 ---> saved as "c587ba9727394fba9fbb4dca5e0e914a8bae07306d05391fbdf3bf3545b41fea"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall irmin.2.6.1;\
\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-12\\\"\"; 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.6.1' && 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.6.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 28 packages
- install angstrom 0.16.1 [required by uri]
- install astring 0.8.5 [required by irmin]
- install base64 3.5.1 [required by repr]
- install bheap 2.0.0 [required by irmin]
- install bigstringaf 0.10.0 [required by angstrom]
- install digestif 1.2.0 [required by irmin]
- install either 1.0.0 [required by repr]
- install eqaf 0.10 [required by digestif]
- install fmt 0.9.0 [required by irmin]
- install irmin 2.6.1
- install jsonm 1.0.2 [required by irmin]
- install logs 0.7.0 [required by irmin]
- 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 jsonm, astring, fmt, logs]
- install ocamlgraph 2.1.0 [required by irmin]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by ppx_repr]
- install ppx_irmin 2.6.1 [required by irmin]
- install ppx_repr 0.3.0 [required by ppx_irmin]
- install ppxlib 0.35.0 [required by ppx_repr]
- install repr 0.3.0 [required by irmin]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ocamlgraph]
- install stringext 1.6.0 [required by uri]
- install topkg 1.0.7 [required by jsonm, astring, fmt, logs]
- install uri 4.4.0 [required by irmin]
- install uutf 1.0.3 [required by irmin]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (https://github.com/inhabitedtype/angstrom/archive/0.16.1.tar.gz)
-> retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved base64.3.5.1 (https://github.com/mirage/ocaml-base64/releases/download/v3.5.1/base64-3.5.1.tbz)
-> installed base64.3.5.1
-> retrieved bheap.2.0.0 (https://github.com/backtracking/bheap/releases/download/2.0.0/bheap-2.0.0.tbz)
-> installed bheap.2.0.0
-> retrieved bigstringaf.0.10.0 (https://github.com/inhabitedtype/bigstringaf/archive/0.10.0.tar.gz)
-> installed bigstringaf.0.10.0
-> retrieved digestif.1.2.0 (https://github.com/mirage/digestif/releases/download/v1.2.0/digestif-1.2.0.tbz)
-> retrieved either.1.0.0 (https://github.com/mirage/either/releases/download/1.0.0/either-1.0.0.tbz)
-> installed either.1.0.0
-> retrieved eqaf.0.10 (https://github.com/mirage/eqaf/releases/download/v0.10/eqaf-0.10.tbz)
-> installed eqaf.0.10
-> retrieved fmt.0.9.0 (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> installed digestif.1.2.0
-> retrieved irmin.2.6.1, ppx_irmin.2.6.1 (https://github.com/mirage/irmin/releases/download/2.6.1/irmin-2.6.1.tbz)
-> retrieved jsonm.1.0.2 (https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz)
-> retrieved logs.0.7.0 (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> retrieved ocaml-compiler-libs.v0.12.4 (https://github.com/janestreet/ocaml-compiler-libs/releases/download/v0.12.4/ocaml-compiler-libs-v0.12.4.tbz)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlgraph.2.1.0 (https://github.com/backtracking/ocamlgraph/releases/download/2.1.0/ocamlgraph-2.1.0.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ppx_derivers.1.2.1 (https://github.com/ocaml-ppx/ppx_derivers/archive/1.2.1.tar.gz)
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppx_derivers.1.2.1
-> installed angstrom.0.16.1
-> installed ocamlbuild.0.16.1
-> retrieved ppx_deriving.6.0.3 (https://github.com/ocaml-ppx/ppx_deriving/releases/download/v6.0.3/ppx_deriving-6.0.3.tbz)
-> retrieved ppx_repr.0.3.0, repr.0.3.0 (https://github.com/mirage/repr/releases/download/0.3.0/repr-fuzz-0.3.0.tbz)
-> retrieved ppxlib.0.35.0 (https://github.com/ocaml-ppx/ppxlib/releases/download/0.35.0/ppxlib-0.35.0.tbz)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> retrieved stringext.1.6.0 (https://github.com/rgrinberg/stringext/releases/download/1.6.0/stringext-1.6.0.tbz)
-> retrieved topkg.1.0.7 (cached)
-> installed stringext.1.6.0
-> retrieved uri.4.4.0 (https://github.com/mirage/ocaml-uri/releases/download/v4.4.0/uri-4.4.0.tbz)
-> retrieved uutf.1.0.3 (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed ocamlgraph.2.1.0
-> installed uri.4.4.0
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed fmt.0.9.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed logs.0.7.0
-> installed repr.0.3.0
-> installed ppxlib.0.35.0
-> installed ppx_deriving.6.0.3
-> installed ppx_repr.0.3.0
-> installed ppx_irmin.2.6.1
-> installed irmin.2.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-07 20:51.41 ---> saved as "15ae8a743e9eccdba1bb28e6ea89507e4e948b795e31d192bf3e80e596510778"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test irmin.2.6.1) || true"))
The following actions will be performed:
=== recompile 8 packages
- recompile fmt 0.9.0 [uses cmdliner]
- recompile irmin 2.6.1
- recompile jsonm 1.0.2 [uses uutf]
- recompile logs 0.7.0 [uses cmdliner]
- recompile ppx_irmin 2.6.1 [uses ppx_repr]
- recompile ppx_repr 0.3.0 [uses repr]
- recompile repr 0.3.0 [uses fmt, uutf]
- recompile uutf 1.0.3 [uses cmdliner]
=== install 7 packages
- install alcotest 1.8.0 [required by irmin]
- install alcotest-lwt 1.8.0 [required by irmin]
- install cmdliner 1.3.0 [required by alcotest]
- install cstruct 6.2.0 [required by hex]
- install hex 1.5.0 [required by irmin]
- install re 1.12.0 [required by alcotest]
- install seq base [required by re]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.8.0, alcotest-lwt.1.8.0 (https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz)
-> retrieved cmdliner.1.3.0 (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> retrieved cstruct.6.2.0 (https://github.com/mirage/ocaml-cstruct/releases/download/v6.2.0/cstruct-6.2.0.tbz)
-> retrieved fmt.0.9.0 (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> retrieved hex.1.5.0 (https://github.com/mirage/ocaml-hex/releases/download/v1.5.0/hex-1.5.0.tbz)
-> retrieved irmin.2.6.1, ppx_irmin.2.6.1 (https://github.com/mirage/irmin/releases/download/2.6.1/irmin-2.6.1.tbz)
-> retrieved jsonm.1.0.2 (https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz)
-> retrieved logs.0.7.0 (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> retrieved ppx_repr.0.3.0, repr.0.3.0 (https://github.com/mirage/repr/releases/download/0.3.0/repr-fuzz-0.3.0.tbz)
-> installed cmdliner.1.3.0
-> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> removed irmin.2.6.1
-> removed logs.0.7.0
-> removed ppx_irmin.2.6.1
-> removed ppx_repr.0.3.0
-> removed repr.0.3.0
-> removed fmt.0.9.0
-> removed jsonm.1.0.2
-> installed seq.base
-> retrieved uutf.1.0.3 (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> removed uutf.1.0.3
-> installed fmt.0.9.0
-> installed re.1.12.0
-> installed uutf.1.0.3
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed alcotest.1.8.0
-> installed jsonm.1.0.2
-> installed logs.0.7.0
-> installed alcotest-lwt.1.8.0
-> installed repr.0.3.0
-> installed ppx_repr.0.3.0
-> installed ppx_irmin.2.6.1
-> installed irmin.2.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-07 20:52.15 ---> saved as "c2e72f43d5bb5782bff4e13a4e87e18fb2a4cfb99823bf6c6d8f7917cb9f1fb7"
/home/opam: (run (shell "opam reinstall --with-test --verbose irmin.2.6.1;\
\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-12\\\"\"; 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.6.1' && 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.6.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [irmin.2.6.1: extract]
-> retrieved irmin.2.6.1 (cached)
Processing 2/4: [irmin: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "irmin" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/irmin.2.6.1)
- (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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Contents.cmo -c -impl src/irmin/contents.pp.ml)
- File "src/irmin/contents.ml", line 44, characters 28-36:
- 44 | | `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/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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Contents.cmx -c -impl src/irmin/contents.pp.ml)
- File "src/irmin/contents.ml", line 44, characters 28-36:
- 44 | | `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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Commit.cmo -c -impl src/irmin/commit.pp.ml)
- File "src/irmin/commit.ml", line 64, characters 4-13:
- 64 | 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 210, characters 38-42:
- 210 | 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 291, characters 7-15:
- 291 | 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 295, characters 32-40:
- 295 | (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 449, characters 15-23:
- 449 | 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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Tree.cmo -c -impl src/irmin/tree.pp.ml)
- File "src/irmin/tree.ml", line 1064, characters 4-13:
- 1064 | 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 846, characters 12-44:
- 846 | (step [@tailcall]) ~path acc d h @@ fun acc ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- File "src/irmin/tree.ml", line 856, characters 12-52:
- 856 | (steps [@tailcall]) ~path acc d bindings @@ fun acc ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- File "src/irmin/tree.ml", line 1192, characters 14-53:
- 1192 | (aux [@tailcall]) key_suffix to_recurse @@ function
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- File "src/irmin/tree.ml", line 1370, characters 4-31:
- 1370 | (add_to_todo [@tailcall]) n @@ fun () ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 51 [wrong-tailcall-expectation]: expected tailcall
- (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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Commit.cmx -c -impl src/irmin/commit.pp.ml)
- File "src/irmin/commit.ml", line 64, characters 4-13:
- 64 | 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 210, characters 38-42:
- 210 | 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 291, characters 7-15:
- 291 | 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 295, characters 32-40:
- 295 | (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 449, characters 15-23:
- 449 | 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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Sync_ext.cmo -c -impl src/irmin/sync_ext.pp.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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/byte/irmin__Store.cmo -c -impl src/irmin/store.pp.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 277, characters 27-36:
- 277 | 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 317, characters 17-26:
- 317 | | 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 414, characters 22-31:
- 414 | 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 432, characters 14-22:
- 432 | 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 745, characters 17-26:
- 745 | | 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 934, characters 8-17:
- 934 | Fmt.kstrf Lwt.fail_invalid_arg
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 1096, characters 6-15:
- 1096 | 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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Tree.cmx -c -impl src/irmin/tree.pp.ml)
- File "src/irmin/tree.ml", line 1064, characters 4-13:
- 1064 | 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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Store.cmx -c -impl src/irmin/store.pp.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 277, characters 27-36:
- 277 | 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 317, characters 17-26:
- 317 | | 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 414, characters 22-31:
- 414 | 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 432, characters 14-22:
- 432 | 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 745, characters 17-26:
- 745 | | 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 934, characters 8-17:
- 934 | Fmt.kstrf Lwt.fail_invalid_arg
- ^^^^^^^^^
- Alert deprecated: Fmt.kstrf
- use Fmt.kstr instead.
- File "src/irmin/store.ml", line 1096, characters 6-15:
- 1096 | 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/bheap -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/either -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/repr -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 -intf-suffix .ml -no-alias-deps -open Irmin__ -o src/irmin/.irmin.objs/native/irmin__Sync_ext.cmx -c -impl src/irmin/sync_ext.pp.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.
Processing 2/4: [irmin: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "irmin" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/irmin.2.6.1)
- (cd _build/default/test/irmin && ./test.exe)
- Testing `irmin'.
- This run has ID `HG97UL1N'.
-
- [OK] tree 0 bindings.
- [OK] tree 1 paginated bindings.
- [OK] tree 2 diff.
- [OK] tree 3 add.
- [OK] tree 4 remove.
- [OK] tree 5 update.
- [OK] tree 6 clear.
- [OK] tree 7 fold.
- [OK] tree 8 shallow.
- [OK] tree 9 kind of empty path.
- [OK] tree 10 generic equality.
- [OK] tree 11 is_empty.
- [OK] tree 12 of_concrete.
- [OK] hash 0 short_hash.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/irmin.2.6.1/_build/default/test/irmin/_build/_tests/irmin'.
- Test Successful in 5.963s. 14 tests run.
-> compiled irmin.2.6.1
-> removed irmin.2.6.1
-> installed irmin.2.6.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-07 20:52.36 ---> saved as "0a393ddbe9f37c798c825dfbba3c6c00899064edc847626beeb613d038f89a00"
Job succeeded
2025-03-07 20:53.34: Job succeeded