- github
- ocaml
- opam-repository
- 3f8e3a
- extras,opam-2.0-ocaml-5.4,tezt.4.3.0,tests
(not at the head of any monitored branch or PR)
2025-12-08 15:16.55: New job: test tezt.4.3.0, using opam 2.0
from https://github.com/ocaml/opam-repository.git#refs/pull/29039/head (3f8e3ae1827b1f3cd5cf264fa2d16228b3a169f4)
on debian-13-ocaml-5.4/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/29039/head" && git reset --hard 3f8e3ae1
git fetch origin master
git merge --no-edit 24866eca47222a207c9a30d2caac223d18f6a780
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn tezt.4.3.0 4.3.0
RUN opam depext tezt.4.3.0 && opam reinstall tezt.4.3.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" != 'tezt.4.3.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam depext --with-test tezt.4.3.0 && opam reinstall --with-test tezt.4.3.0) || true
RUN opam depext --with-test tezt.4.3.0 && opam reinstall --with-test --verbose tezt.4.3.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" != 'tezt.4.3.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 .
2025-12-08 15:16.55: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-tezt.4.3.0-3f8e3ae1827b1f3cd5cf264fa2d16228b3a169f4"
2025-12-08 15:16.55: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "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 depext -u || true"))
(run (shell "opam pin add -k version -yn tezt.4.3.0 4.3.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext tezt.4.3.0 && opam reinstall tezt.4.3.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\" != 'tezt.4.3.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 depext --with-test tezt.4.3.0 && opam reinstall --with-test tezt.4.3.0) || true"))
(run (shell "opam depext --with-test tezt.4.3.0 && opam reinstall --with-test --verbose tezt.4.3.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\" != 'tezt.4.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-08 15:16.55: Waiting for resource in pool OCluster
2025-12-08 16:00.24: Waiting for worker…
2025-12-08 16:06.50: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 91% (17421/18983)
Updating files: 92% (17465/18983)
Updating files: 93% (17655/18983)
Updating files: 94% (17845/18983)
Updating files: 95% (18034/18983)
Updating files: 96% (18224/18983)
Updating files: 97% (18414/18983)
Updating files: 98% (18604/18983)
Updating files: 99% (18794/18983)
Updating files: 100% (18983/18983)
Updating files: 100% (18983/18983), done.
HEAD is now at 24866eca47 Merge pull request #29034 from hannesm/fixes
Updating 24866eca47..3f8e3ae182
Fast-forward
packages/lwt_ppx/lwt_ppx.1.0.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.0.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.1.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.3/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.4/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.3/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.1.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.8.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 2 +-
packages/moonpool-lwt/moonpool-lwt.0.10/opam | 2 +-
packages/moonpool-lwt/moonpool-lwt.0.9/opam | 2 +-
packages/tezt/tezt.2.0.0/opam | 2 +-
packages/tezt/tezt.3.0.0/opam | 2 +-
packages/tezt/tezt.4.3.0/opam | 2 +-
21 files changed, 21 insertions(+), 21 deletions(-)
(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04' locally
docker.io/ocaml/opam@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04: Pulling from ocaml/opam
Digest: sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
Status: Downloaded newer image for ocaml/opam@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
2025-12-08 16:10.07 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2025-12-08 16:10.07 ---> using "fe03e46bf389a70ce0e1b055dbcbcda33d09bcb6dc4e61755b0d7b99ab523a1d" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.
[WARNING] Recommended dependencies -- most packages rely on these:
- m4
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2025-12-08 16:10.07 ---> using "961a1d9eb7d73874b2c61994ccd40c45532fdd006cdcd81e40a2dbd5ff74b279" from cache
/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version 2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-mccs+glpk
# install-criteria -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria -removed,-count[version-lag,solution],-new
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
2025-12-08 16:10.07 ---> using "3bdce138cbc5fa8a296a51032110f0e975535fe60c5833844593baec3ba2517b" 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/"))
2025-12-08 16:10.07 ---> using "56b34fdc8ff5646b29d9456a230309cc62be3b8243adaac8d81d605ed217d474" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-08 16:10.08 ---> using "7f7342e78c907944b33ebaf1ad1f5888bc3c7b5e6a8332bd7ed4643958b6b2a5" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2025-12-08 16:10.08 ---> using "9bbaed75ecbce7e98198881f809b2efe75124bd7136cdc7c6c44b6c9bc03f823" from cache
/home/opam: (run (network host)
(shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "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 [81.7 kB]
Fetched 172 kB in 0s (1012 kB/s)
Reading package lists...
# OS package update successful
2025-12-08 16:10.08 ---> using "97f9b676ed7eec191950717674f667fc43969937a8bf9fe4c863614ebab65daa" from cache
/home/opam: (run (shell "opam pin add -k version -yn tezt.4.3.0 4.3.0"))
tezt is now pinned to version 4.3.0
2025-12-08 16:10.08 ---> using "4cf93c7281bac3110c794bd8118891eaf9b0b899a0b49ffd6070dd233022176c" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext tezt.4.3.0 && opam reinstall tezt.4.3.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\" != 'tezt.4.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
tezt.4.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install ocamlbuild 0.16.1 [required by jsonm]
- install ocamlfind 1.9.8 [required by jsonm]
- install dune 3.20.2 [required by tezt]
- install topkg 1.1.1 [required by jsonm]
- install base-bytes base [required by ocplib-endian]
- install sexplib0 v0.17.0 [required by ezjsonm]
- install re 1.14.0 [required by tezt]
- install cstruct 4.0.0 [required by hex]
- install csexp 1.5.2 [required by dune-configurator]
- install cppo 1.8.0 [required by lwt]
- install clap 0.3.0 [required by tezt]
- install uutf 1.0.4 [required by ezjsonm]
- install hex 1.5.0 [required by ezjsonm]
- install dune-configurator 3.20.2 [required by lwt]
- install ocplib-endian 1.2 [required by lwt]
- install jsonm 1.0.2 [required by ezjsonm]
- install lwt 5.9.2 [required by tezt]
- install ezjsonm 1.3.0 [required by tezt]
- install tezt 4.3.0*
===== 19 to install =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[clap.0.3.0] found in cache
[cppo.1.8.0] found in cache
[csexp.1.5.2] found in cache
[cstruct.4.0.0] found in cache
[dune.3.20.2] found in cache
[dune-configurator.3.20.2] found in cache
[ezjsonm.1.3.0] found in cache
[hex.1.5.0] found in cache
[jsonm.1.0.2] found in cache
[lwt.5.9.2] found in cache
[ocamlbuild.0.16.1] found in cache
[ocamlfind.1.9.8] found in cache
[ocplib-endian.1.2] found in cache
[re.1.14.0] found in cache
[sexplib0.v0.17.0] found in cache
[tezt.4.3.0] found in cache
[topkg.1.1.1] found in cache
[uutf.1.0.4] found in cache
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed jsonm.1.0.2
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed clap.0.3.0
-> installed cstruct.4.0.0
-> installed sexplib0.v0.17.0
-> installed cppo.1.8.0
-> installed re.1.14.0
-> installed hex.1.5.0
-> installed ocplib-endian.1.2
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.20.2
-> installed lwt.5.9.2
-> installed tezt.4.3.0
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-08 16:10.27 ---> saved as "c55c61a7bf3e934275c38128a74f74816d8b35882d2351d48576e45a726e7818"
/home/opam: (run (network host)
(shell "(opam depext --with-test tezt.4.3.0 && opam reinstall --with-test tezt.4.3.0) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] No solution for tezt.4.3.0: The following dependencies couldn't be met:
- tezt -> ocamlformat = 0.27.0 -> ocaml < 5.4
base of this switch (use `--unlock-base' to force)
Command failed: opam list --readonly --with-test --external '--resolve=tezt.4.3.0' --color=never returned 20
2025-12-08 16:10.43 ---> saved as "a8d23de18c6cca7d95e929e5cd127b32e74294b49614a000a423b8fe5b3fa555"
/home/opam: (run (shell "opam depext --with-test tezt.4.3.0 && opam reinstall --with-test --verbose tezt.4.3.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\" != 'tezt.4.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] No solution for tezt.4.3.0: The following dependencies couldn't be met:
- tezt -> ocamlformat = 0.27.0 -> ocaml < 5.4
base of this switch (use `--unlock-base' to force)
Command failed: opam list --readonly --with-test --external '--resolve=tezt.4.3.0' --color=never returned 20
"/usr/bin/env" "bash" "-c" "opam depext --with-test tezt.4.3.0 && opam reinstall --with-test --verbose tezt.4.3.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" != 'tezt.4.3.0' && 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
2025-12-08 16:10.57: Job failed: Failed: Build failed
2025-12-08 16:10.57: Log analysis:
2025-12-08 16:10.57: >>>
[ERROR] No solution for tezt.4.3.0: The following dependencies couldn't be met:
(score = 100)
2025-12-08 16:10.57: >>>
[ERROR] No solution for tezt.4.3.0: The following dependencies couldn't be met:
(score = 100)
2025-12-08 16:10.57: [SKIP] Package not available