Build:
- 0
2026-02-27 03:58.22: New job: test yocaml_yaml.1.0.0 with ocamlfind.1.9.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
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/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633
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 ocamlfind.1.9.1 1.9.1
RUN opam reinstall ocamlfind.1.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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocamlfind.1.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 yocaml_yaml.1.0.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" != 'yocaml_yaml.1.0.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 yocaml_yaml.1.0.0) || true
RUN opam reinstall --with-test --verbose yocaml_yaml.1.0.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" != 'yocaml_yaml.1.0.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-27 03:58.22: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633-ocamlfind.1.9.1-yocaml_yaml.1.0.0-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 03:58.22: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
(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 ocamlfind.1.9.1 1.9.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlfind.1.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-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\" != 'ocamlfind.1.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 yocaml_yaml.1.0.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\" != 'yocaml_yaml.1.0.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 yocaml_yaml.1.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose yocaml_yaml.1.0.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\" != 'yocaml_yaml.1.0.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-27 03:58.22: Waiting for resource in pool OCluster
2026-02-27 10:41.43: Waiting for worker…
2026-02-27 10:46.49: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files: 56% (10394/18334)
Updating files: 57% (10451/18334)
Updating files: 58% (10634/18334)
Updating files: 59% (10818/18334)
Updating files: 60% (11001/18334)
Updating files: 61% (11184/18334)
Updating files: 62% (11368/18334)
Updating files: 63% (11551/18334)
Updating files: 64% (11734/18334)
Updating files: 65% (11918/18334)
Updating files: 66% (12101/18334)
Updating files: 67% (12284/18334)
Updating files: 68% (12468/18334)
Updating files: 69% (12651/18334)
Updating files: 70% (12834/18334)
Updating files: 71% (13018/18334)
Updating files: 72% (13201/18334)
Updating files: 73% (13384/18334)
Updating files: 74% (13568/18334)
Updating files: 75% (13751/18334)
Updating files: 76% (13934/18334)
Updating files: 77% (14118/18334)
Updating files: 78% (14301/18334)
Updating files: 79% (14484/18334)
Updating files: 80% (14668/18334)
Updating files: 81% (14851/18334)
Updating files: 82% (15034/18334)
Updating files: 83% (15218/18334)
Updating files: 84% (15401/18334)
Updating files: 85% (15584/18334)
Updating files: 86% (15768/18334)
Updating files: 87% (15951/18334)
Updating files: 88% (16134/18334)
Updating files: 89% (16318/18334)
Updating files: 90% (16501/18334)
Updating files: 91% (16684/18334)
Updating files: 92% (16868/18334)
Updating files: 93% (17051/18334)
Updating files: 94% (17234/18334)
Updating files: 95% (17418/18334)
Updating files: 96% (17601/18334)
Updating files: 97% (17784/18334)
Updating files: 98% (17968/18334)
Updating files: 99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
2026-02-27 10:46.54 ---> using "d6079ab6cce1b58b34ac9b5ed11aa86b7980ab728c75f5a6ba9271e98dc1ac1c" 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-27 10:46.54 ---> using "3c00c47f9d923b8bd6ffb2b949e4b9efd562ec1af5385aec1656ef10f01c4450" 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-27 10:46.54 ---> using "a92b73fe3956045426c13ac4a0686c952a1f3abe3c88ddfc7b2f3a6ed1e46736" 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-27 10:46.54 ---> using "cae9d187aa902d60c82d0c2150bbd9c0de1870c923aa0b0063ad5a25247acae5" 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-27 10:46.54 ---> using "feb31a4f8ccbcfb9943e7338a457db5bc00688ce26b7db5634b111626cd4af24" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-27 10:46.55 ---> using "b92870a8fb6886bac6050e75eb8fa24a784127e0cc5005f6e7617ee9eaf0fbc1" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-27 10:46.55 ---> using "99f9416150e19d4e3f0d87844ce4f5bfe5703b97a6a1e1cd5864eee876c17ec0" 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 (1675 kB/s)
- Reading package lists...
2026-02-27 10:46.55 ---> using "601bd46762889fe7f0e35beb46822e1a66440be2f8382677d2b4063ddcb53047" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocamlfind.1.9.1 1.9.1"))
ocamlfind is now pinned to version 1.9.1
2026-02-27 10:46.55 ---> using "dff07a7ef5db22a2b53bd0f1201f6c2d28dd46dab171a7f07efe82e9b2e5495b" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlfind.1.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-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\" != 'ocamlfind.1.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"))
ocamlfind.1.9.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install ocamlfind 1.9.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.1 (cached)
-> installed ocamlfind.1.9.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 10:46.55 ---> using "f0cf7220b3de8729496627d11799c7021b6462a056445cb5a2663c5e9b08b858" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_yaml.1.0.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\" != 'yocaml_yaml.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
yocaml_yaml.1.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 19 packages
- install astring 0.8.5 [required by bos]
- install bos 0.2.1 [required by yaml]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by yaml]
- install dune 3.21.1 [required by yocaml_yaml]
- install dune-configurator 3.21.1 [required by yaml]
- install either 1.0.0 [required by preface]
- install fmt 0.11.0 [required by bos]
- install fpath 0.7.3 [required by bos]
- install integers 0.7.0 [required by ctypes]
- install logs 0.10.0 [required by bos]
- install ocamlbuild 0.16.1 [required by bos]
- install preface 1.0.0 [required by yocaml_yaml]
- install rresult 0.7.0 [required by bos]
- install stdlib-shims 0.3.0 [required by integers]
- install topkg 1.1.1 [required by bos]
- install yaml 3.2.0 [required by yocaml_yaml]
- install yocaml 1.0.0 [required by yocaml_yaml]
- install yocaml_yaml 1.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved preface.1.0.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved yaml.3.2.0 (cached)
-> retrieved yocaml.1.0.0, yocaml_yaml.1.0.0 (cached)
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed dune.3.21.1
-> installed stdlib-shims.0.3.0
-> installed either.1.0.0
-> installed csexp.1.5.2
-> installed integers.0.7.0
-> installed preface.1.0.0
-> installed dune-configurator.3.21.1
-> installed yocaml.1.0.0
-> installed ctypes.0.24.0
-> installed yaml.3.2.0
-> installed yocaml_yaml.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 10:49.09 ---> saved as "a9a19d055b665f9efcb54cc089e18b2802e4830d879842dc0d2a3e7bcd5d3dd0"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test yocaml_yaml.1.0.0) || true"))
The following actions will be performed:
=== recompile 5 packages
- recompile bos 0.2.1 [uses fmt]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile logs 0.10.0 [uses cmdliner]
- recompile yaml 3.2.0 [uses bos]
- recompile yocaml_yaml 1.0.0
=== install 5 packages
- install alcotest 1.9.1 [required by yocaml_yaml]
- install cmdliner 2.1.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.14.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved bos.0.2.1 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved yaml.3.2.0 (https://opam.ocaml.org/cache)
-> retrieved yocaml_yaml.1.0.0 (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> installed ocaml-syntax-shims.1.0.0
-> removed yocaml_yaml.1.0.0
-> removed yaml.3.2.0
-> removed bos.0.2.1
-> removed logs.0.10.0
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed alcotest.1.9.1
-> installed bos.0.2.1
-> installed yaml.3.2.0
-> installed yocaml_yaml.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 10:50.04 ---> saved as "c5ef4a6835e46fa5eece4e4c0a5d7158dc476b0917f0609ab5e321f7884ec904"
/home/opam: (run (shell "opam reinstall --with-test --verbose yocaml_yaml.1.0.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\" != 'yocaml_yaml.1.0.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 yocaml_yaml 1.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [yocaml_yaml.1.0.0: extract]
-> retrieved yocaml_yaml.1.0.0 (cached)
Processing 2/4: [yocaml_yaml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yocaml_yaml" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/yocaml_yaml.1.0.0)
Processing 2/4: [yocaml_yaml: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "yocaml_yaml" (CWD=/home/opam/.opam/4.14/.opam-switch/build/yocaml_yaml.1.0.0)
- (cd _build/default/tests && ./yocaml_test.exe)
- Testing `YOCaml test'.
- This run has ID `8PIH0Q2N'.
-
- [OK] Build 0 Simple copying using [read_file] when ...
- [OK] Build 1 Simple copying using [read_file] with ...
- [OK] Deps 0 When the file has no dependencies but ...
- [OK] Deps 1 When the file has no dependencies but ...
- [OK] Deps 2 When the file has dependencies but the...
- [OK] Deps 3 When the file has dependencies and the...
- [OK] Util 0 split_metadate - no metadata 1.
- [OK] Util 1 split_metadate - no metadata 2.
- [OK] Util 2 split_metadate - no metadata 3.
- [OK] Util 3 split_metadate - no metadata 4.
- [OK] Util 4 split_metadate - no metadata 5.
- [OK] Util 5 split_metadate - no metadata 6.
- [OK] Util 6 split_metadate - with metadata 1.
- [OK] Util 7 split_metadate - with metadata 2.
- [OK] Util 8 split_metadate - with metadata 3.
- [OK] Util 9 split_metadate - with metadata 4.
- [OK] Key_value 0 string | when a string is valid it sho...
- [OK] Key_value 1 string_and | when a string is valid it...
- [OK] Key_value 2 string | when a string is valid it sho...
- [OK] Key_value 3 validate partial user using field desc...
- [OK] Key_value 4 validate filled user using field descr...
- [OK] Key_value 5 validate partial invalid user using fi...
- [OK] Key_value 6 validate partial user using assoc desc...
- [OK] Key_value 7 validate filled user using assoc descr...
- [OK] Key_value 8 validate partial invalid user using fi...
- [OK] Key_value 9 validate partial user using field desc...
- [OK] Metadata 0 capture base metadata 1 without values.
- [OK] Metadata 1 capture base metadata 2 without values.
- [OK] Metadata 2 capture base metadata 3 without values.
- [OK] Metadata 3 capture base metadata 4 with only a ti...
- [OK] Metadata 4 capture base metadata 5 with an indexe...
- [OK] Metadata 5 capture article metadata 1 invalid.
- [OK] Metadata 6 capture article metadata 2 invalid.
- [OK] Metadata 7 capture article metadata 3 invalid.
- [OK] Metadata 8 capture article metadata 4 invalid.
- [OK] Metadata 9 capture article metadata 5 invalid.
- [OK] Metadata 10 capture article metadata 1 valid.
- [OK] Metadata 11 capture article metadata 2 valid.
- [OK] Date 0 Date.make 1.
- [OK] Date 1 Date.make 2.
- [OK] Date 2 Date.from_string 1.
- [OK] Date 3 Date.from_string 2.
- [OK] Date 4 Date.make invalid 1.
- [OK] Date 5 dow: Valid (2021-07-14).
- [OK] Date 6 dow: Valid (1789-07-14).
- [OK] Date 7 dow: Valid (2021-08-11).
- [OK] Date 8 dow: Valid (2021-08-12).
- [OK] Date 9 dow: Valid (2021-08-13).
- [OK] Date 10 dow: Valid (2021-08-14).
- [OK] Date 11 dow: Valid (2021-08-15).
- [OK] Date 12 dow: Valid (2021-08-16).
- [OK] Date 13 dow: Valid (2021-08-17).
- [OK] Date 14 dow: Valid (2021-08-18).
- [OK] Date 15 dow: Valid (2021-08-19).
- [OK] Date 16 dow: Valid (2021-08-20).
- [OK] Date 17 dow: Valid (2021-08-21).
- [OK] Date 18 dow: Valid (2021-08-22).
- [OK] Date 19 dow: Valid (2021-08-23).
- [OK] Date 20 dow: Valid (2021-08-24).
- [OK] Date 21 dow: Valid (2021-08-25).
- [OK] Date 22 dow: Valid (2021-08-26).
- [OK] Date 23 dow: Valid (2021-08-27).
- [OK] Date 24 dow: Valid (2021-08-28).
- [OK] Date 25 dow: Valid (2021-08-29).
- [OK] Date 26 dow: Valid (2021-08-30).
- [OK] Date 27 dow: Valid (2021-08-31).
- [OK] Date 28 dow: Valid (2021-09-01).
- [OK] Date 29 dow: Valid (2021-09-02).
- [OK] Date 30 dow: Valid (2021-09-03).
- [OK] Date 31 dow: Valid (2021-09-04).
- [OK] Date 32 dow: Valid (2021-09-05).
- [OK] Date 33 dow: Valid (2021-09-06).
- [OK] Date 34 dow: Valid (2021-09-07).
- [OK] Date 35 dow: Valid (2021-09-08).
- [OK] Date 36 dow: Valid (2021-09-09).
- [OK] Date 37 dow: Valid (2021-09-10).
- [OK] Date 38 dow: Valid (2021-09-11).
- [OK] Date 39 dow: Valid (2021-09-12).
- [OK] Date 40 dow: Valid (2021-09-13).
- [OK] Date 41 dow: Valid (2021-09-14).
- [OK] Date 42 dow: Valid (2021-09-15).
- [OK] Date 43 dow: Valid (2021-09-16).
- [OK] Date 44 dow: Valid (2021-09-17).
- [OK] Date 45 dow: Valid (2021-09-18).
- [OK] Date 46 dow: Valid (2021-09-19).
- [OK] Date 47 dow: Valid (2021-09-20).
- [OK] Date 48 dow: Valid (2021-09-21).
- [OK] Date 49 dow: Valid (2021-09-22).
- [OK] Date 50 dow: Valid (1600-01-10).
- [OK] Date 51 dow: Valid (1600-01-11).
- [OK] Date 52 dow: Valid (1600-01-12).
- [OK] Date 53 dow: Valid (1600-01-13).
- [OK] Date 54 dow: Valid (1600-01-14).
- [OK] Date 55 dow: Valid (1600-01-15).
- [OK] Date 56 dow: Valid (1600-01-16).
- [OK] Date 57 dow: Valid (1600-01-17).
- [OK] Date 58 dow: Valid (1600-01-18).
- [OK] Date 59 dow: Valid (1600-01-19).
- [OK] Date 60 dow: Valid (1600-01-20).
- [OK] Date 61 dow: Valid (1600-01-21).
- [OK] Date 62 dow: Valid (1600-01-22).
- [OK] Date 63 dow: Valid (1600-01-23).
- [OK] Date 64 dow: Valid (1600-01-24).
- [OK] Date 65 dow: Valid (1600-01-25).
- [OK] Date 66 dow: Valid (1600-01-26).
- [OK] Date 67 dow: Valid (1600-01-27).
- [OK] Date 68 dow: Valid (1600-01-28).
- [OK] Date 69 dow: Valid (1600-01-29).
- [OK] Date 70 dow: Valid (1600-01-30).
- [OK] Date 71 dow: Valid (1600-01-31).
- [OK] Date 72 dow: Valid (1600-02-01).
- [OK] Date 73 dow: Valid (1600-02-02).
- [OK] Date 74 dow: Valid (1600-02-03).
- [OK] Date 75 dow: Valid (1600-02-04).
- [OK] Date 76 dow: Valid (1600-02-05).
- [OK] Date 77 dow: Valid (1600-02-06).
- [OK] Date 78 dow: Valid (1600-02-07).
- [OK] Date 79 dow: Valid (1600-02-08).
- [OK] Date 80 dow: Valid (1600-02-09).
- [OK] Date 81 dow: Valid (1600-02-10).
- [OK] Date 82 dow: Valid (1600-02-11).
- [OK] Date 83 dow: Valid (1600-02-12).
- [OK] Date 84 dow: Valid (1600-02-13).
- [OK] Date 85 dow: Valid (1600-02-14).
- [OK] Date 86 dow: Valid (1600-02-15).
- [OK] Date 87 dow: Valid (1600-02-16).
- [OK] Date 88 dow: Valid (1600-02-17).
- [OK] Date 89 dow: Valid (1600-02-18).
- [OK] Date 90 dow: Valid (1600-02-19).
- [OK] Date 91 dow: Valid (1600-02-20).
- [OK] Date 92 dow: Valid (1600-02-21).
- [OK] Date 93 dow: Valid (1600-02-22).
- [OK] Date 94 dow: Valid (1600-02-23).
- [OK] Date 95 dow: Valid (1600-02-24).
- [OK] Date 96 dow: Valid (1600-02-25).
- [OK] Date 97 dow: Valid (1600-02-26).
- [OK] Date 98 dow: Valid (1600-02-27).
- [OK] Date 99 dow: Valid (1600-02-28).
- [OK] Date 100 dow: Valid (1600-02-29).
- [OK] Date 101 dow: Valid (1600-03-01).
- [OK] Date 102 dow: Valid (1600-03-02).
- [OK] Date 103 dow: Valid (1600-03-03).
- [OK] Date 104 dow: Valid (1600-03-04).
- [OK] Date 105 dow: Valid (1600-03-05).
- [OK] Date 106 dow: Valid (1600-03-06).
- [OK] Date 107 dow: Valid (1600-03-07).
- [OK] Date 108 dow: Valid (1600-03-08).
- [OK] Date 109 dow: Valid (1600-03-09).
- [OK] Date 110 dow: Valid (1600-03-10).
- [OK] Date 111 dow: Valid (1600-03-11).
- [OK] Date 112 dow: Valid (1600-03-12).
- [OK] Date 113 dow: Valid (1600-03-13).
- [OK] Date 114 dow: Valid (1600-03-14).
- [OK] Date 115 dow: Valid (1600-03-15).
- [OK] Date 116 dow: Valid (1600-03-16).
- [OK] Date 117 dow: Valid (1600-03-17).
- [OK] Date 118 dow: Valid (1600-03-18).
- [OK] Date 119 dow: Valid (1600-03-19).
- [OK] Date 120 dow: Valid (1600-03-20).
- [OK] Date 121 dow: Valid (1600-03-21).
- [OK] Date 122 dow: Valid (1600-03-22).
- [OK] Date 123 dow: Valid (1600-03-23).
- [OK] Date 124 dow: Valid (1600-03-24).
- [OK] Date 125 dow: Valid (1600-03-25).
- [OK] Date 126 dow: Valid (1600-03-26).
- [OK] Date 127 dow: Valid (1600-03-27).
- [OK] Date 128 dow: Valid (1600-03-28).
- [OK] Date 129 dow: Valid (1600-03-29).
- [OK] Date 130 dow: Valid (1600-03-30).
- [OK] Date 131 dow: Valid (1600-03-31).
- [OK] Date 132 dow: Valid (1600-04-01).
- [OK] Date 133 dow: Valid (1600-04-02).
- [OK] Date 134 dow: Valid (1600-04-03).
- [OK] Date 135 dow: Valid (1600-04-04).
- [OK] Date 136 dow: Valid (1600-04-05).
- [OK] Date 137 dow: Valid (1600-04-06).
- [OK] Date 138 dow: Valid (1600-04-07).
- [OK] Date 139 dow: Valid (1999-10-13).
- [OK] Date 140 dow: Valid (1999-10-14).
- [OK] Date 141 dow: Valid (1999-10-15).
- [OK] Date 142 dow: Valid (1999-10-16).
- [OK] Date 143 dow: Valid (1999-10-17).
- [OK] Date 144 dow: Valid (1999-10-18).
- [OK] Date 145 dow: Valid (1999-10-19).
- [OK] Date 146 dow: Valid (1999-10-20).
- [OK] Date 147 dow: Valid (1999-10-21).
- [OK] Date 148 dow: Valid (1999-10-22).
- [OK] Date 149 dow: Valid (1999-10-23).
- [OK] Date 150 dow: Valid (1999-10-24).
- [OK] Date 151 dow: Valid (1999-10-25).
- [OK] Date 152 dow: Valid (1999-10-26).
- [OK] Date 153 dow: Valid (1999-10-27).
- [OK] Date 154 dow: Valid (1999-10-28).
- [OK] Date 155 dow: Valid (1999-10-29).
- [OK] Date 156 dow: Valid (1999-10-30).
- [OK] Date 157 dow: Valid (1999-10-31).
- [OK] Date 158 dow: Valid (1999-11-01).
- [OK] Date 159 dow: Valid (1999-11-02).
- [OK] Date 160 dow: Valid (1999-11-03).
- [OK] Date 161 dow: Valid (1999-11-04).
- [OK] Date 162 dow: Valid (1999-11-05).
- [OK] Date 163 dow: Valid (1999-11-06).
- [OK] Date 164 dow: Valid (1999-11-07).
- [OK] Date 165 dow: Valid (1999-11-08).
- [OK] Date 166 dow: Valid (1999-11-09).
- [OK] Date 167 dow: Valid (1999-11-10).
- [OK] Date 168 dow: Valid (1999-11-11).
- [OK] Date 169 dow: Valid (1999-11-12).
- [OK] Date 170 dow: Valid (1999-11-13).
- [OK] Date 171 dow: Valid (1999-11-14).
- [OK] Date 172 dow: Valid (1999-11-15).
- [OK] Date 173 dow: Valid (1999-11-16).
- [OK] Date 174 dow: Valid (1999-11-17).
- [OK] Date 175 dow: Valid (1999-11-18).
- [OK] Date 176 dow: Valid (1999-11-19).
- [OK] Date 177 dow: Valid (1999-11-20).
- [OK] Date 178 dow: Valid (1999-11-21).
- [OK] Date 179 dow: Valid (1999-11-22).
- [OK] Date 180 dow: Valid (1999-11-23).
- [OK] Date 181 dow: Valid (1999-11-24).
- [OK] Date 182 dow: Valid (1999-11-25).
- [OK] Date 183 dow: Valid (1999-11-26).
- [OK] Date 184 dow: Valid (1999-11-27).
- [OK] Date 185 dow: Valid (1999-11-28).
- [OK] Date 186 dow: Valid (1999-11-29).
- [OK] Date 187 dow: Valid (1999-11-30).
- [OK] Date 188 dow: Valid (1999-12-01).
- [OK] Date 189 dow: Valid (1999-12-02).
- [OK] Date 190 dow: Valid (1999-12-03).
- [OK] Date 191 dow: Valid (1999-12-04).
- [OK] Date 192 dow: Valid (1999-12-05).
- [OK] Date 193 dow: Valid (1999-12-06).
- [OK] Date 194 dow: Valid (1999-12-07).
- [OK] Date 195 dow: Valid (1999-12-08).
- [OK] Date 196 dow: Valid (1999-12-09).
- [OK] Date 197 dow: Valid (1999-12-10).
- [OK] Date 198 dow: Valid (1999-12-11).
- [OK] Date 199 dow: Valid (1999-12-12).
- [OK] Date 200 dow: Valid (1999-12-13).
- [OK] Date 201 dow: Valid (1999-12-14).
- [OK] Date 202 dow: Valid (1999-12-15).
- [OK] Date 203 dow: Valid (1999-12-16).
- [OK] Date 204 dow: Valid (1999-12-17).
- [OK] Date 205 dow: Valid (1999-12-18).
- [OK] Date 206 dow: Valid (1999-12-19).
- [OK] Date 207 dow: Valid (1999-12-20).
- [OK] Date 208 dow: Valid (1999-12-21).
- [OK] Date 209 dow: Valid (1999-12-22).
- [OK] Date 210 dow: Valid (1999-12-23).
- [OK] Date 211 dow: Valid (1999-12-24).
- [OK] Date 212 dow: Valid (1999-12-25).
- [OK] Date 213 dow: Valid (1999-12-26).
- [OK] Date 214 dow: Valid (1999-12-27).
- [OK] Date 215 dow: Valid (1999-12-28).
- [OK] Date 216 dow: Valid (1999-12-29).
- [OK] Date 217 dow: Valid (1999-12-30).
- [OK] Date 218 dow: Valid (1999-12-31).
- [OK] Date 219 dow: Valid (2000-01-01).
- [OK] Date 220 dow: Valid (2000-01-02).
- [OK] Date 221 dow: Valid (2000-01-03).
- [OK] Date 222 dow: Valid (2000-01-04).
- [OK] Date 223 dow: Valid (2000-01-05).
- [OK] Date 224 dow: Valid (2000-01-06).
- [OK] Date 225 dow: Valid (2000-01-07).
- [OK] Date 226 dow: Valid (2000-01-08).
- [OK] Date 227 dow: Valid (2000-01-09).
- [OK] Date 228 dow: Valid (2000-01-10).
- [OK] Date 229 dow: Valid (2000-01-11).
- [OK] Date 230 dow: Valid (2000-01-12).
- [OK] Date 231 dow: Valid (2000-01-13).
- [OK] Date 232 dow: Valid (2000-01-14).
- [OK] Date 233 dow: Valid (2000-01-15).
- [OK] Date 234 dow: Valid (2000-01-16).
- [OK] Date 235 dow: Valid (2000-01-17).
- [OK] Date 236 dow: Valid (2000-01-18).
- [OK] Date 237 dow: Valid (2000-01-19).
- [OK] Date 238 dow: Valid (2000-01-20).
- [OK] Date 239 dow: Valid (2000-01-21).
- [OK] Date 240 dow: Valid (2000-01-22).
- [OK] Date 241 dow: Valid (3000-01-01).
- [OK] Date 242 dow: Valid (3000-01-02).
- [OK] Date 243 dow: Valid (3000-01-03).
- [OK] Date 244 dow: Valid (3000-01-04).
- [OK] Date 245 dow: Valid (3000-01-05).
- [OK] Date 246 dow: Valid (3000-01-06).
- [OK] Date 247 dow: Valid (3000-01-07).
- [OK] Date 248 dow: Valid (3000-01-08).
- [OK] Date 249 dow: Valid (3000-01-09).
- [OK] Date 250 dow: Valid (3000-01-10).
- [OK] Date 251 dow: Valid (3000-01-11).
- [OK] Date 252 dow: Valid (3000-01-12).
- [OK] Date 253 dow: Valid (3000-01-13).
- [OK] Date 254 dow: Valid (3000-01-14).
- [OK] Date 255 dow: Valid (3000-01-15).
- [OK] Date 256 dow: Valid (3000-01-16).
- [OK] Date 257 dow: Valid (3000-01-17).
- [OK] Date 258 dow: Valid (3000-01-18).
- [OK] Date 259 dow: Valid (3000-01-19).
- [OK] Date 260 dow: Valid (3000-01-20).
- [OK] Date 261 dow: Valid (3000-01-21).
- [OK] Date 262 dow: Valid (3000-01-22).
- [OK] Date 263 dow: Valid (3000-01-23).
- [OK] Date 264 dow: Valid (3000-01-24).
- [OK] Date 265 dow: Valid (3000-01-25).
- [OK] Date 266 dow: Valid (3000-01-26).
- [OK] Date 267 dow: Valid (3000-01-27).
- [OK] Date 268 dow: Valid (3000-01-28).
- [OK] Date 269 dow: Valid (3000-01-29).
- [OK] Date 270 dow: Valid (3000-01-30).
- [OK] Date 271 dow: Valid (3000-01-31).
- [OK] Date 272 dow: Valid (3000-02-01).
- [OK] Date 273 dow: Valid (3000-02-02).
- [OK] Date 274 dow: Valid (3000-02-03).
- [OK] Date 275 dow: Valid (3000-02-04).
- [OK] Date 276 dow: Valid (3000-02-05).
- [OK] Date 277 dow: Valid (3000-02-06).
- [OK] Date 278 dow: Valid (3000-02-07).
- [OK] Date 279 dow: Valid (3000-02-08).
- [OK] Date 280 dow: Valid (3000-02-09).
- [OK] Date 281 dow: Valid (3000-02-10).
- [OK] Date 282 dow: Valid (3000-02-11).
- [OK] Date 283 dow: Valid (3000-02-12).
- [OK] Date 284 dow: Valid (3000-02-13).
- [OK] Date 285 dow: Valid (3000-02-14).
- [OK] Date 286 dow: Valid (3000-02-15).
- [OK] Date 287 dow: Valid (3000-02-16).
- [OK] Date 288 dow: Valid (3000-02-17).
- [OK] Date 289 dow: Valid (3000-02-18).
- [OK] Date 290 dow: Valid (3000-02-19).
- [OK] Date 291 dow: Valid (3000-02-20).
- [OK] Date 292 dow: Valid (3000-02-21).
- [OK] Date 293 dow: Valid (3000-02-22).
- [OK] Date 294 dow: Valid (3000-02-23).
- [OK] Date 295 dow: Valid (3000-02-24).
- [OK] Date 296 dow: Valid (3000-02-25).
- [OK] Date 297 dow: Valid (3000-02-26).
- [OK] Date 298 dow: Valid (3000-02-27).
- [OK] Date 299 dow: Valid (3000-02-28).
- [OK] Date 300 dow: Valid (3000-03-01).
- [OK] Date 301 dow: Valid (3000-03-02).
- [OK] Date 302 dow: Valid (3000-03-03).
- [OK] Date 303 dow: Valid (3000-03-04).
- [OK] Date 304 dow: Valid (3000-03-05).
- [OK] Date 305 dow: Valid (3000-03-06).
- [OK] Date 306 dow: Valid (3000-03-07).
- [OK] Date 307 dow: Valid (3000-03-08).
- [OK] Date 308 dow: Valid (3000-03-09).
- [OK] Date 309 dow: Valid (3000-03-10).
- [OK] Date 310 dow: Valid (3000-03-11).
- [OK] Date 311 dow: Valid (3000-03-12).
- [OK] Date 312 dow: Valid (3000-03-13).
- [OK] Date 313 dow: Valid (3000-03-14).
- [OK] Date 314 dow: Valid (3000-03-15).
- [OK] Date 315 dow: Valid (3000-03-16).
- [OK] Date 316 dow: Valid (3000-03-17).
- [OK] Date 317 dow: Valid (3000-03-18).
- [OK] Date 318 dow: Valid (3000-03-19).
- [OK] Date 319 dow: Valid (3000-03-20).
- [OK] Date 320 dow: Valid (3000-03-21).
- [OK] Date 321 dow: Valid (3000-03-22).
- [OK] Date 322 dow: Valid (3000-03-23).
- [OK] Date 323 dow: Valid (3000-03-24).
- [OK] Date 324 dow: Valid (3000-03-25).
- [OK] Date 325 dow: Valid (3000-03-26).
- [OK] Date 326 dow: Valid (3000-03-27).
- [OK] Date 327 dow: Valid (3000-03-28).
- [OK] Date 328 dow: Valid (3000-03-29).
- [OK] Date 329 dow: Valid (3000-03-30).
- [OK] Date 330 dow: Valid (3000-03-31).
- [OK] Date 331 dow: Valid (3000-04-01).
- [OK] Date 332 dow: Valid (3000-04-02).
- [OK] Date 333 dow: Valid (3000-04-03).
- [OK] Date 334 dow: Valid (3000-04-04).
- [OK] Date 335 dow: Valid (3000-04-05).
- [OK] Date 336 dow: Valid (3000-04-06).
- [OK] Date 337 dow: Valid (3000-04-07).
- [OK] Date 338 dow: Valid (3000-04-08).
- [OK] Date 339 dow: Valid (3000-04-09).
- [OK] Date 340 dow: Valid (3000-04-10).
- [OK] Date 341 dow: Valid (3000-04-11).
- [OK] Date 342 dow: Valid (3000-04-12).
- [OK] Date 343 dow: Valid (3000-04-13).
- [OK] Date 344 dow: Valid (3000-04-14).
- [OK] Date 345 dow: Valid (3000-04-15).
- [OK] Date 346 dow: Valid (3000-04-16).
- [OK] Date 347 dow: Valid (3000-04-17).
- [OK] Date 348 dow: Valid (3000-04-18).
- [OK] Date 349 dow: Valid (3000-04-19).
- [OK] Date 350 dow: Valid (3000-04-20).
- [OK] Date 351 dow: Valid (3000-04-21).
- [OK] Date 352 dow: Valid (3000-04-22).
- [OK] Date 353 dow: Valid (3000-04-23).
- [OK] Date 354 dow: Valid (3000-04-24).
- [OK] Date 355 dow: Valid (3000-04-25).
- [OK] Date 356 dow: Valid (3000-04-26).
- [OK] Date 357 dow: Valid (3000-04-27).
- [OK] Date 358 dow: Valid (3000-04-28).
- [OK] Date 359 dow: Valid (3000-04-29).
- [OK] Date 360 dow: Valid (3000-04-30).
- [OK] Date 361 dow: Valid (3000-05-01).
- [OK] Date 362 dow: Valid (3000-05-02).
- [OK] Date 363 dow: Valid (3000-05-03).
- [OK] Date 364 dow: Valid (3000-05-04).
- [OK] Date 365 dow: Valid (3000-05-05).
- [OK] Date 366 dow: Valid (3000-05-06).
- [OK] Date 367 dow: Valid (3000-05-07).
- [OK] Date 368 dow: Valid (3000-05-08).
- [OK] Date 369 dow: Valid (3000-05-09).
- [OK] Date 370 dow: Valid (3000-05-10).
- [OK] Date 371 dow: Valid (3000-05-11).
- [OK] Date 372 dow: Valid (3000-05-12).
- [OK] Date 373 dow: Valid (3000-05-13).
- [OK] Date 374 dow: Valid (3000-05-14).
- [OK] Date 375 dow: Valid (3000-05-15).
- [OK] Date 376 dow: Valid (3000-05-16).
- [OK] Date 377 dow: Valid (3000-05-17).
- [OK] Date 378 dow: Valid (3000-05-18).
- [OK] Date 379 dow: Valid (3000-05-19).
- [OK] Date 380 dow: Valid (3000-05-20).
- [OK] Date 381 dow: Valid (3000-05-21).
- [OK] Date 382 dow: Valid (3000-05-22).
- [OK] Date 383 dow: Valid (3000-05-23).
- [OK] Date 384 dow: Valid (3000-05-24).
- [OK] Date 385 dow: Valid (3000-05-25).
- [OK] Date 386 dow: Valid (3000-05-26).
- [OK] Date 387 dow: Valid (3000-05-27).
- [OK] Date 388 dow: Valid (3000-05-28).
- [OK] Date 389 dow: Valid (3000-05-29).
- [OK] Date 390 dow: Valid (3000-05-30).
- [OK] Date 391 dow: Valid (3000-05-31).
- [OK] Date 392 dow: Valid (3000-06-01).
- [OK] Date 393 dow: Valid (3000-06-02).
- [OK] Date 394 dow: Valid (3000-06-03).
- [OK] Date 395 dow: Valid (3000-06-04).
- [OK] Date 396 dow: Valid (3000-06-05).
- [OK] Date 397 dow: Valid (3000-06-06).
- [OK] Date 398 dow: Valid (3000-06-07).
- [OK] Date 399 dow: Valid (3000-06-08).
- [OK] Date 400 dow: Valid (3000-06-09).
- [OK] Date 401 dow: Valid (3000-06-10).
- [OK] Date 402 dow: Valid (3000-06-11).
- [OK] Date 403 dow: Valid (3000-06-12).
- [OK] Date 404 dow: Valid (3000-06-13).
- [OK] Date 405 dow: Valid (3000-06-14).
- [OK] Date 406 dow: Valid (3000-06-15).
- [OK] Date 407 dow: Valid (3000-06-16).
- [OK] Date 408 dow: Valid (3000-06-17).
- [OK] Date 409 dow: Valid (3000-06-18).
- [OK] Date 410 dow: Valid (3000-06-19).
- [OK] Date 411 dow: Valid (3000-06-20).
- [OK] Date 412 dow: Valid (3000-06-21).
- [OK] Date 413 dow: Valid (3000-06-22).
- [OK] Date 414 dow: Valid (3000-06-23).
- [OK] Date 415 dow: Valid (3000-06-24).
- [OK] Date 416 dow: Valid (3000-06-25).
- [OK] Date 417 dow: Valid (3000-06-26).
- [OK] Date 418 dow: Valid (3000-06-27).
- [OK] Date 419 dow: Valid (3000-06-28).
- [OK] Date 420 dow: Valid (3000-06-29).
- [OK] Date 421 dow: Valid (3000-06-30).
- [OK] Date 422 dow: Valid (3000-07-01).
- [OK] Date 423 dow: Valid (3000-07-02).
- [OK] Date 424 dow: Valid (3000-07-03).
- [OK] Date 425 dow: Valid (3000-07-04).
- [OK] Date 426 dow: Valid (3000-07-05).
- [OK] Date 427 dow: Valid (3000-07-06).
- [OK] Date 428 dow: Valid (3000-07-07).
- [OK] Date 429 dow: Valid (3000-07-08).
- [OK] Date 430 dow: Valid (3000-07-09).
- [OK] Date 431 dow: Valid (3000-07-10).
- [OK] Date 432 dow: Valid (3000-07-11).
- [OK] Date 433 dow: Valid (3000-07-12).
- [OK] Date 434 dow: Valid (3000-07-13).
- [OK] Date 435 dow: Valid (3000-07-14).
- [OK] Date 436 dow: Valid (3000-07-15).
- [OK] Date 437 dow: Valid (3000-07-16).
- [OK] Date 438 dow: Valid (3000-07-17).
- [OK] Date 439 dow: Valid (3000-07-18).
- [OK] Date 440 dow: Valid (3000-07-19).
- [OK] Date 441 dow: Valid (3000-07-20).
- [OK] Date 442 dow: Valid (3000-07-21).
-
- Full test results in `~/.opam/4.14/.opam-switch/build/yocaml_yaml.1.0.0/_build/default/tests/_build/_tests/YOCaml test'.
- Test Successful in 0.124s. 481 tests run.
-> compiled yocaml_yaml.1.0.0
-> removed yocaml_yaml.1.0.0
-> installed yocaml_yaml.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 10:50.19 ---> saved as "e11389c06cc5f4c6032afb14a57a79466dff8fdd16b7073b37da67b60457205c"
Job succeeded
2026-02-27 10:50.45: Job succeeded