Build:
- 0
2026-01-22 10:12.40: New job: build rowex.0.0.1, lower-bounds, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29251/head (80c6482a052ff16e47e9022e70c51e61756fdc00)
on debian-13-ocaml-4.10/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/29251/head" && git reset --hard 80c6482a
git fetch origin master
git merge --no-edit 5bcf75c1acf9cccbe4dfd7e6c4ad828446384c0f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7
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 rowex.0.0.1 0.0.1
RUN opam reinstall rowex.0.0.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" != 'rowex.0.0.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
ENV OPAMCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMFIXUPCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMUPGRADECRITERIA="+removed,+count[version-lag,solution]"
RUN opam reinstall rowex.0.0.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" != 'rowex.0.0.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 .
2026-01-22 10:12.40: Using cache hint "ocaml/opam:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7-rowex.0.0.1-80c6482a052ff16e47e9022e70c51e61756fdc00"
2026-01-22 10:12.40: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7)
(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 rowex.0.0.1 0.0.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rowex.0.0.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\" != 'rowex.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(env OPAMCRITERIA +removed,+count[version-lag,solution])
(env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])
(env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rowex.0.0.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\" != 'rowex.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-22 10:12.40: Waiting for resource in pool OCluster
2026-01-23 07:13.51: Waiting for worker…
2026-01-23 07:17.47: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 70% (13634/19250)
Updating files: 71% (13668/19250)
Updating files: 72% (13860/19250)
Updating files: 73% (14053/19250)
Updating files: 74% (14245/19250)
Updating files: 75% (14438/19250)
Updating files: 76% (14630/19250)
Updating files: 77% (14823/19250)
Updating files: 78% (15015/19250)
Updating files: 79% (15208/19250)
Updating files: 80% (15400/19250)
Updating files: 81% (15593/19250)
Updating files: 82% (15785/19250)
Updating files: 83% (15978/19250)
Updating files: 84% (16170/19250)
Updating files: 85% (16363/19250)
Updating files: 86% (16555/19250)
Updating files: 87% (16748/19250)
Updating files: 88% (16940/19250)
Updating files: 89% (17133/19250)
Updating files: 90% (17325/19250)
Updating files: 91% (17518/19250)
Updating files: 92% (17710/19250)
Updating files: 93% (17903/19250)
Updating files: 94% (18095/19250)
Updating files: 95% (18288/19250)
Updating files: 96% (18480/19250)
Updating files: 97% (18673/19250)
Updating files: 98% (18865/19250)
Updating files: 99% (19058/19250)
Updating files: 100% (19250/19250)
Updating files: 100% (19250/19250), done.
HEAD is now at 5bcf75c1ac Merge pull request #29261 from panglesd/release-slipshow-v0.8.1
Merge made by the 'ort' strategy.
packages/bancos/bancos.0.0.1/opam | 36 ++++++++++++++++++++++++++++++++++++
packages/bank/bank.0.0.1/opam | 32 ++++++++++++++++++++++++++++++++
packages/rowex/rowex.0.0.1/opam | 29 +++++++++++++++++++++++++++++
3 files changed, 97 insertions(+)
create mode 100644 packages/bancos/bancos.0.0.1/opam
create mode 100644 packages/bank/bank.0.0.1/opam
create mode 100644 packages/rowex/rowex.0.0.1/opam
(from ocaml/opam:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7)
2026-01-23 07:19.55 ---> saved as "a8e17f43b5a89242ec7ab4a3e45a5034b6e3c532d0ee726a612438509a44dfed"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-23 07:19.56 ---> saved as "6b0f96963755d61fc231da2bea43309693e8914bcf89f88ce0b1b2a683fb86f1"
/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-01-23 07:20.34 ---> saved as "f3d47fa48572c8521a906a096314b3c227292a96f37fbe4a5039782492ca4006"
/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.10
# invariant ["ocaml-base-compiler" {= "4.10.2"}]
# compiler-packages ocaml-base-compiler.4.10.2
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.10/lib/ocaml/stublibs:/home/opam/.opam/4.10/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.10.2
2026-01-23 07:20.38 ---> saved as "f707ec4efc3e6242e3fcf7c0686f83e608432f74399dc494e60450338b695230"
/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-01-23 07:20.47 ---> saved as "9fd91df49287737fb17dad406201a26ad3ac3e689b96c5508d6e401ab7f3028a"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 07:21.02 ---> saved as "68360cf9b183191812d525f79aa0c89b9cfe440fcf233a07c9747e6cb688b1f9"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-23 07:21.29 ---> saved as "387c9d16e59dd6b39fb0d6e652018f8e01ca6b2d033293b37a960a93d48edfca"
/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 [97.9 kB]
- Fetched 189 kB in 0s (1779 kB/s)
- Reading package lists...
-
2026-01-23 07:21.31 ---> saved as "95e65774ec3cd4b9e9576933e4c9521baa5cc7e0d1a3ddcfed474a4dd7a34c76"
/home/opam: (run (shell "opam pin add -k version -yn rowex.0.0.1 0.0.1"))
rowex is now pinned to version 0.0.1
2026-01-23 07:21.31 ---> saved as "b71d51d03b54968bb6a188ab5d7f49b6394e7909be53b5ba98ba1737b72cc3c5"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall rowex.0.0.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\" != 'rowex.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
rowex.0.0.1 is not installed. Install it? [Y/n] y
* No agreement on the version of ocaml:
- (invariant) -> ocaml-base-compiler = 4.10.2 -> ocaml = 4.10.2
- rowex -> ocaml >= 4.11.0
You can temporarily relax the switch invariant with `--update-invariant'
* Incompatible packages:
- (invariant) -> ocaml-base-compiler = 4.10.2
- rowex -> ocaml >= 4.11.0 -> ocaml-variants >= 4.14.2~
* Missing dependency:
- rowex -> ocaml >= 4.11.0 -> ocaml-variants >= 4.14.2~ -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall rowex.0.0.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" != 'rowex.0.0.1' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 20
2026-01-23 07:21.54: Job failed: Failed: Build failed
2026-01-23 07:21.54: Log analysis:
2026-01-23 07:21.54: >>>
No solution found, exiting
(score = 100)
2026-01-23 07:21.54: [SKIP] Package not available