Build:
  1. 0
2025-12-08 16:16.49: New job: test melange.6.0.1-414, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29001/head (874518b80fe25606a3e33aa700981f720b90c02f)
                              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/29001/head" && git reset --hard 874518b8
git fetch origin master
git merge --no-edit 95f7875db7c621d309c559d9c2ba6781e43a8bb9
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:0a41846bcb75ec26a93f83cf331e30d7b3b35c92a930e604d3de05fe0d57b42b
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 melange.6.0.1-414 6.0.1-414
RUN opam reinstall melange.6.0.1-414; \
    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" != 'melange.6.0.1-414' && 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 melange.6.0.1-414) || true
RUN opam reinstall --with-test --verbose melange.6.0.1-414; \
    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" != 'melange.6.0.1-414' && 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 16:16.49: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:0a41846bcb75ec26a93f83cf331e30d7b3b35c92a930e604d3de05fe0d57b42b-melange.6.0.1-414-874518b80fe25606a3e33aa700981f720b90c02f"
2025-12-08 16:16.49: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:0a41846bcb75ec26a93f83cf331e30d7b3b35c92a930e604d3de05fe0d57b42b)
 (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 melange.6.0.1-414 6.0.1-414"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall melange.6.0.1-414;\
             \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\" != 'melange.6.0.1-414' && 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 melange.6.0.1-414) || true"))
 (run (shell  "opam reinstall --with-test --verbose melange.6.0.1-414;\
             \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\" != 'melange.6.0.1-414' && 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 16:16.49: Waiting for resource in pool OCluster
2025-12-08 16:43.31: Waiting for worker…
2025-12-08 16:46.07: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 95f7875db7 Merge pull request #29036 from MisterDA/windows-ci
Merge made by the 'ort' strategy.
 packages/melange-webapi/melange-webapi.0.21.0/opam |  2 +-
 packages/melange/melange.6.0.1-414/opam            | 42 ++++++++++++++++++++++
 packages/melange/melange.6.0.1-51/opam             | 42 ++++++++++++++++++++++
 packages/melange/melange.6.0.1-52/opam             | 42 ++++++++++++++++++++++
 packages/melange/melange.6.0.1-53/opam             | 42 ++++++++++++++++++++++
 packages/melange/melange.6.0.1-54/opam             | 42 ++++++++++++++++++++++
 .../reason-react-ppx/reason-react-ppx.0.13.0/opam  |  2 +-
 .../server-reason-react.0.2.0/opam                 |  2 +-
 .../server-reason-react.0.3.0/opam                 |  2 +-
 .../server-reason-react.0.3.1/opam                 |  4 +--
 10 files changed, 216 insertions(+), 6 deletions(-)
 create mode 100644 packages/melange/melange.6.0.1-414/opam
 create mode 100644 packages/melange/melange.6.0.1-51/opam
 create mode 100644 packages/melange/melange.6.0.1-52/opam
 create mode 100644 packages/melange/melange.6.0.1-53/opam
 create mode 100644 packages/melange/melange.6.0.1-54/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:0a41846bcb75ec26a93f83cf331e30d7b3b35c92a930e604d3de05fe0d57b42b)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:0a41846bcb75ec26a93f83cf331e30d7b3b35c92a930e604d3de05fe0d57b42b' locally
docker.io/ocaml/opam@sha256:0a41846bcb75ec26a93f83cf331e30d7b3b35c92a930e604d3de05fe0d57b42b: Pulling from ocaml/opam
bf2a49c12274: Pulling fs layer
dca4f18d8fa1: Pulling fs layer
61a5e29d19d8: Pulling fs layer
fe51421e228e: Pulling fs layer
f08d504ba988: Pulling fs layer
54bed919fa1d: Pulling fs layer
fe51421e228e: Waiting
314627a97143: Pulling fs layer
e021ff7c828a: Pulling fs layer
54bed919fa1d: Waiting
314627a97143: Waiting
4de705a4bed9: Pulling fs layer
49af77cf5fb6: Pulling fs layer
e021ff7c828a: Waiting
5c9434b45253: Pulling fs layer
4de705a4bed9: Waiting
78b72c8a0ca7: Pulling fs layer
5c9434b45253: Waiting
b104156bf499: Pulling fs layer
e3d7d5db5fd0: Pulling fs layer
78b72c8a0ca7: Waiting
b104156bf499: Waiting
e11023ff4af7: Pulling fs layer
e3d7d5db5fd0: Waiting
ad196a63334c: Pulling fs layer
e11023ff4af7: Waiting
b5bede31abbb: Pulling fs layer
27f50ab4f689: Pulling fs layer
ad196a63334c: Waiting
b5bede31abbb: Waiting
71a7f91ffbff: Pulling fs layer
190efb818579: Pulling fs layer
27f50ab4f689: Waiting
5bdec9477c9d: Pulling fs layer
71a7f91ffbff: Waiting
190efb818579: Waiting
570e93459cdb: Pulling fs layer
5bdec9477c9d: Waiting
4f4fb700ef54: Pulling fs layer
648dfe082b46: Pulling fs layer
570e93459cdb: Waiting
d222c8cc4d60: Pulling fs layer
3fd106caebdc: Pulling fs layer
4f4fb700ef54: Waiting
3bbba631ea0e: Pulling fs layer
648dfe082b46: Waiting
46a8be0a0632: Pulling fs layer
505866fe4cd7: Pulling fs layer
ebc694c942d2: Pulling fs layer
d222c8cc4d60: Waiting
3bbba631ea0e: Waiting
46a8be0a0632: Waiting
a7c57f0687e8: Pulling fs layer
3fd106caebdc: Waiting
505866fe4cd7: Waiting
140d8fc2bf28: Pulling fs layer
a7c57f0687e8: Waiting
c9ca4ba68528: Pulling fs layer
8797d8b2a3d6: Pulling fs layer
140d8fc2bf28: Waiting
c9ca4ba68528: Waiting
845a0247aca9: Pulling fs layer
962c020b46f3: Pulling fs layer
8797d8b2a3d6: Waiting
fc619b999527: Pulling fs layer
845a0247aca9: Waiting
f4eab0db5ca8: Pulling fs layer
962c020b46f3: Waiting
fc619b999527: Waiting
b7cc2554af1f: Pulling fs layer
f475288e8a6f: Pulling fs layer
052606ef227a: Pulling fs layer
d17c3dc80cac: Pulling fs layer
7a431b43ac72: Pulling fs layer
132c7e46ef2a: Pulling fs layer
f4eab0db5ca8: Waiting
d17c3dc80cac: Waiting
052606ef227a: Waiting
f0a297c742d2: Pulling fs layer
c4e009441f8a: Pulling fs layer
b7cc2554af1f: Waiting
7a431b43ac72: Waiting
f475288e8a6f: Waiting
132c7e46ef2a: Waiting
cb1dae2aa4b7: Pulling fs layer
024f9fb51ed4: Pulling fs layer
c4e009441f8a: Waiting
cb1dae2aa4b7: Waiting
024f9fb51ed4: Waiting
dca4f18d8fa1: Download complete
61a5e29d19d8: Download complete
f08d504ba988: Verifying Checksum
f08d504ba988: Download complete
bf2a49c12274: Verifying Checksum
bf2a49c12274: Download complete
fe51421e228e: Verifying Checksum
fe51421e228e: Download complete
314627a97143: Download complete
e021ff7c828a: Verifying Checksum
e021ff7c828a: Download complete
4de705a4bed9: Verifying Checksum
4de705a4bed9: Download complete
bf2a49c12274: Pull complete
dca4f18d8fa1: Pull complete
61a5e29d19d8: Pull complete
49af77cf5fb6: Verifying Checksum
49af77cf5fb6: Download complete
fe51421e228e: Pull complete
f08d504ba988: Pull complete
5c9434b45253: Verifying Checksum
5c9434b45253: Download complete
78b72c8a0ca7: Verifying Checksum
78b72c8a0ca7: Download complete
b104156bf499: Verifying Checksum
b104156bf499: Download complete
e3d7d5db5fd0: Verifying Checksum
e3d7d5db5fd0: Download complete
e11023ff4af7: Verifying Checksum
e11023ff4af7: Download complete
ad196a63334c: Verifying Checksum
ad196a63334c: Download complete
54bed919fa1d: Download complete
71a7f91ffbff: Verifying Checksum
71a7f91ffbff: Download complete
b5bede31abbb: Verifying Checksum
27f50ab4f689: Verifying Checksum
27f50ab4f689: Download complete
190efb818579: Verifying Checksum
190efb818579: Download complete
5bdec9477c9d: Verifying Checksum
5bdec9477c9d: Download complete
570e93459cdb: Verifying Checksum
570e93459cdb: Download complete
4f4fb700ef54: Download complete
648dfe082b46: Verifying Checksum
648dfe082b46: Download complete
d222c8cc4d60: Verifying Checksum
d222c8cc4d60: Download complete
3fd106caebdc: Verifying Checksum
3fd106caebdc: Download complete
3bbba631ea0e: Verifying Checksum
3bbba631ea0e: Download complete
46a8be0a0632: Download complete
505866fe4cd7: Verifying Checksum
505866fe4cd7: Download complete
ebc694c942d2: Verifying Checksum
ebc694c942d2: Download complete
a7c57f0687e8: Verifying Checksum
a7c57f0687e8: Download complete
140d8fc2bf28: Verifying Checksum
140d8fc2bf28: Download complete
c9ca4ba68528: Verifying Checksum
c9ca4ba68528: Download complete
8797d8b2a3d6: Verifying Checksum
8797d8b2a3d6: Download complete
845a0247aca9: Verifying Checksum
845a0247aca9: Download complete
fc619b999527: Verifying Checksum
fc619b999527: Download complete
b7cc2554af1f: Verifying Checksum
b7cc2554af1f: Download complete
f475288e8a6f: Download complete
54bed919fa1d: Pull complete
314627a97143: Pull complete
e021ff7c828a: Pull complete
4de705a4bed9: Pull complete
052606ef227a: Download complete
49af77cf5fb6: Pull complete
5c9434b45253: Pull complete
78b72c8a0ca7: Pull complete
b104156bf499: Pull complete
e3d7d5db5fd0: Pull complete
e11023ff4af7: Pull complete
ad196a63334c: Pull complete
b5bede31abbb: Pull complete
27f50ab4f689: Pull complete
71a7f91ffbff: Pull complete
190efb818579: Pull complete
5bdec9477c9d: Pull complete
570e93459cdb: Pull complete
4f4fb700ef54: Pull complete
648dfe082b46: Pull complete
d222c8cc4d60: Pull complete
3fd106caebdc: Pull complete
3bbba631ea0e: Pull complete
46a8be0a0632: Pull complete
505866fe4cd7: Pull complete
ebc694c942d2: Pull complete
a7c57f0687e8: Pull complete
140d8fc2bf28: Pull complete
c9ca4ba68528: Pull complete
8797d8b2a3d6: Pull complete
845a0247aca9: Pull complete
d17c3dc80cac: Download complete
962c020b46f3: Verifying Checksum
962c020b46f3: Download complete
7a431b43ac72: Download complete
132c7e46ef2a: Verifying Checksum
132c7e46ef2a: Download complete
c4e009441f8a: Verifying Checksum
c4e009441f8a: Download complete
cb1dae2aa4b7: Verifying Checksum
cb1dae2aa4b7: Download complete
f0a297c742d2: Verifying Checksum
f0a297c742d2: Download complete
024f9fb51ed4: Verifying Checksum
024f9fb51ed4: Download complete
f4eab0db5ca8: Verifying Checksum
f4eab0db5ca8: Download complete
962c020b46f3: Pull complete
fc619b999527: Pull complete
f4eab0db5ca8: Pull complete
b7cc2554af1f: Pull complete
f475288e8a6f: Pull complete
052606ef227a: Pull complete
d17c3dc80cac: Pull complete
7a431b43ac72: Pull complete
132c7e46ef2a: Pull complete
f0a297c742d2: Pull complete
c4e009441f8a: Pull complete
cb1dae2aa4b7: Pull complete
024f9fb51ed4: Pull complete
Digest: sha256:0a41846bcb75ec26a93f83cf331e30d7b3b35c92a930e604d3de05fe0d57b42b
Status: Downloaded newer image for ocaml/opam@sha256:0a41846bcb75ec26a93f83cf331e30d7b3b35c92a930e604d3de05fe0d57b42b
2025-12-08 16:59.13 ---> using "e66dfd6917105659a930fc56f67cc5dd1c1f2e13e8d2ec56d5d8e6e618d2b61d" 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"))
2025-12-08 16:59.13 ---> using "1dea6fd9e63e9a3e04cabdb976d67ec534fdbc17f2e46add8552f69d1949ed9d" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-08 16:59.13 ---> using "c1331413cd39a5a16dc765746aff9533820fcc2548b1a65588a8e578140309d6" 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                 255
# 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
2025-12-08 16:59.13 ---> using "4156b0ddc5761226f027ec8a945d62af05c27e5993840e665379ac11ba136083" 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:59.13 ---> using "e0e28ba53f3f3b429b388bc3c98e13a290266885233f1c92c16153664c24c18c" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-08 16:59.14 ---> using "c6a903fc8c9183b3220bb827b5797257b830083892b735a4f483ead97fedb127" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-08 16:59.14 ---> using "234bae1ca0ee371d73d14858eec127c547b1dc5f66a58b36fca36adb9296ac52" 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 i386 Packages [73.4 kB]
- Fetched 164 kB in 0s (1861 kB/s)
- Reading package lists...
2025-12-08 16:59.14 ---> using "956224e28a8db7c5c3c7e3916f1c48b84602f58ddf41612037f2327311b82ab8" from cache

/home/opam: (run (shell "opam pin add -k version -yn melange.6.0.1-414 6.0.1-414"))
melange is now pinned to version 6.0.1-414
2025-12-08 16:59.14 ---> using "f07d76d0d7c7e3c190be5f7863cd9af46878fce7c0d17b1bff64d1832630924b" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall melange.6.0.1-414;\
                        \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\" != 'melange.6.0.1-414' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
[ERROR] melange = 6.0.1-414: unmet availability conditions: 'arch != "x86_32" & arch != "arm32"'
"/usr/bin/linux32" "/bin/sh" "-c" "opam reinstall melange.6.0.1-414;
        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" != 'melange.6.0.1-414' && 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
2025-12-08 16:59.21: Job failed: Failed: Build failed
2025-12-08 16:59.21: Log analysis:
2025-12-08 16:59.21: >>> 
[ERROR] melange = 6.0.1-414: unmet availability conditions: 'arch != "x86_32" & arch != "arm32"'
 (score = 100)
2025-12-08 16:59.21: [SKIP] Package not available