Build:
  1. 0
2026-01-09 00:37.03: New job: test conf-dwarfutils.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29202/head (570d32ed26fb4f0d7a8046e9c55447f190f25af8)
                              on debian-13-ocaml-5.4/i386

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29202/head" && git reset --hard 570d32ed
git fetch origin master
git merge --no-edit 93a7bce43a4d9f9b00c3c6b0c3d696c7608217be
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:1f0f0b1e5ea28bca67235e7935a96cf2a510dbd39b2c072948a15a41fe7b8913
SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ]
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 conf-dwarfutils.1 1
RUN opam reinstall conf-dwarfutils.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" != 'conf-dwarfutils.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test conf-dwarfutils.1) || true
RUN opam reinstall --with-test --verbose conf-dwarfutils.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" != 'conf-dwarfutils.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-09 00:37.03: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:1f0f0b1e5ea28bca67235e7935a96cf2a510dbd39b2c072948a15a41fe7b8913-conf-dwarfutils.1-570d32ed26fb4f0d7a8046e9c55447f190f25af8"
2026-01-09 00:37.03: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:1f0f0b1e5ea28bca67235e7935a96cf2a510dbd39b2c072948a15a41fe7b8913)
 (shell /usr/bin/linux32 /bin/sh -c)
 (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 conf-dwarfutils.1 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-dwarfutils.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\" != 'conf-dwarfutils.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test conf-dwarfutils.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose conf-dwarfutils.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\" != 'conf-dwarfutils.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-09 00:37.03: Waiting for resource in pool OCluster
2026-01-09 00:37.04: Waiting for worker…
2026-01-09 00:37.05: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at 93a7bce43a Merge pull request #29186 from raphael-proust/server-reason-react-ppxlib-bounds
Updating 93a7bce43a..570d32ed26
Fast-forward
 packages/conf-dwarfutils/conf-dwarfutils.1/opam | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 packages/conf-dwarfutils/conf-dwarfutils.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:1f0f0b1e5ea28bca67235e7935a96cf2a510dbd39b2c072948a15a41fe7b8913)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:1f0f0b1e5ea28bca67235e7935a96cf2a510dbd39b2c072948a15a41fe7b8913' locally
docker.io/ocaml/opam@sha256:1f0f0b1e5ea28bca67235e7935a96cf2a510dbd39b2c072948a15a41fe7b8913: Pulling from ocaml/opam
7ba68d5e03a0: Already exists
07b8ed5c5fc7: Already exists
58593d382636: Already exists
0ac347eff7cb: Already exists
9e0dce827f6c: Already exists
59412abebd11: Already exists
6f40c6b8e49d: Already exists
d425252fe4ce: Already exists
d2fd5628395f: Already exists
1afdf15deb97: Already exists
b0f895c507c7: Already exists
008ad3ebfa79: Already exists
2c2f57579aeb: Already exists
d53c2fa82d21: Already exists
e4d849d21609: Already exists
105c7911a399: Already exists
cffce0974ee5: Already exists
2592e9c0b5c6: Already exists
e781106bd8eb: Already exists
a92c4ad367c1: Already exists
a5032c647546: Already exists
db024d7ceed7: Already exists
4f4fb700ef54: Already exists
b736586eae86: Already exists
0793122c5463: Already exists
d43d7e0d3789: Already exists
524f31350c16: Already exists
834542d0184a: Already exists
92a1bdddbb21: Already exists
db8f6f57c096: Already exists
8b21ba328ac8: Already exists
b62a644fd3ae: Already exists
74df08082153: Already exists
4544a2d99dec: Already exists
f1c2491fd607: Already exists
b65b8b420dec: Already exists
b7d2dd83e3d1: Already exists
2705612c6e82: Already exists
296f4af8d4cd: Already exists
6858402c6fe2: Already exists
a04f04ce7fcc: Already exists
91d4a726377c: Already exists
d00b82ade35e: Already exists
a0753987c7c1: Already exists
fe4e08258b65: Already exists
810890259cc3: Already exists
a8378ff06e69: Already exists
995a6beb057b: Already exists
Digest: sha256:1f0f0b1e5ea28bca67235e7935a96cf2a510dbd39b2c072948a15a41fe7b8913
Status: Downloaded newer image for ocaml/opam@sha256:1f0f0b1e5ea28bca67235e7935a96cf2a510dbd39b2c072948a15a41fe7b8913
2026-01-09 00:38.05 ---> using "69cdc841404901a469c1696bcc1bb4860cfbf93d8bb71cbd8d79aded069cd577" from cache

/: (shell /usr/bin/linux32 /bin/sh -c)

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-09 00:38.05 ---> using "a9640ab6e956dadbc2b4f50518c76b75157570311b174afe3a7482467ab94293" 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-01-09 00:38.05 ---> using "da528fc5c4b75980b700d0790ce5ebcf71e7563267bed96a09df9d5ccd003d9b" 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_32 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       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-option-bytecode-only.1, ocaml-options-vanilla.1
# ocaml:native         false
# ocaml:native-tools   false
# ocaml:native-dynlink false
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0+bytecode-only
2026-01-09 00:38.05 ---> using "1b08a0d9137210c542b156b6f82a5915a8568eeef98e03fd7d8a429d1903acfb" 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-01-09 00:38.05 ---> using "c9588b84fd43367de35112dc3ff507b0bbddedb502eb55070fe49451d4cf70d8" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-09 00:38.08 ---> saved as "985ca031bda9dfbb1034d2874a31c0c95c437f729390287cd77824f59fa942a1"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-09 00:38.40 ---> saved as "24333fa61ecba1832301050d7f3fa62d03383616cc24f4cf1bd8bbc0948b233f"

/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 i386 Packages [86.3 kB]
- Fetched 177 kB in 0s (1685 kB/s)
- Reading package lists...
2026-01-09 00:38.41 ---> saved as "8e486ae1559ad9d90d20726c25c702d3921d0e2d95811e5028727b90d00c384c"

/home/opam: (run (shell "opam pin add -k version -yn conf-dwarfutils.1 1"))
conf-dwarfutils is now pinned to version 1
2026-01-09 00:38.42 ---> saved as "db9db2c807aeeb9437d4279aa9ba5e68843df1a037b38ed26fe42c97b066f2b8"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conf-dwarfutils.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\" != 'conf-dwarfutils.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
[ERROR] Package conf-dwarfutils.1 depends on the unavailable system package 'dwarfutils'. You can use `--no-depexts' to attempt installation anyway.
"/usr/bin/linux32" "/bin/sh" "-c" "opam reinstall conf-dwarfutils.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" != 'conf-dwarfutils.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 5
2026-01-09 00:38.49: Job failed: Failed: Build failed
2026-01-09 00:38.49: Log analysis:
2026-01-09 00:38.49: >>> 
[ERROR] Package conf-dwarfutils.1 depends on the unavailable system package 'dwarfutils'. You can use `--no-depexts' to attempt installation anyway.
 (score = 100)
2026-01-09 00:38.49: [SKIP] Package not available