Build:
  1. 0
2026-03-15 08:59.25: New job: test parseff.0.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29526/head (00fc6039ea5006ac1d6a9cd671e025428e45c333)
                              on opensuse-tumbleweed-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/29526/head" && git reset --hard 00fc6039
git fetch origin master
git merge --no-edit 8d34e0cf3c0ccacb6c8a26c24d0e5eb0b17fbf9d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:489983e36d75e2e6b9772b501a4ca6b8c4ba10ba202044790e2cbf8d02c55487
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 parseff.0.1.0 0.1.0
RUN opam reinstall parseff.0.1.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 "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'parseff.0.1.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 parseff.0.1.0) || true
RUN opam reinstall --with-test --verbose parseff.0.1.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 "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'parseff.0.1.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-03-15 08:59.25: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:489983e36d75e2e6b9772b501a4ca6b8c4ba10ba202044790e2cbf8d02c55487-parseff.0.1.0-00fc6039ea5006ac1d6a9cd671e025428e45c333"
2026-03-15 08:59.25: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:489983e36d75e2e6b9772b501a4ca6b8c4ba10ba202044790e2cbf8d02c55487)
 (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 parseff.0.1.0 0.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall parseff.0.1.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'parseff.0.1.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 parseff.0.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose parseff.0.1.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'parseff.0.1.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-03-15 08:59.25: Waiting for resource in pool OCluster
2026-03-15 08:59.25: Waiting for worker…
2026-03-15 08:59.26: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 8d34e0cf3c Merge pull request #29540 from davesnx/release-melange-fest-0.2.0
Updating 8d34e0cf3c..00fc6039ea
Fast-forward
 packages/parseff/parseff.0.1.0/opam | 49 +++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 packages/parseff/parseff.0.1.0/opam

(from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:489983e36d75e2e6b9772b501a4ca6b8c4ba10ba202044790e2cbf8d02c55487)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:489983e36d75e2e6b9772b501a4ca6b8c4ba10ba202044790e2cbf8d02c55487' locally
docker.io/ocaml/opam@sha256:489983e36d75e2e6b9772b501a4ca6b8c4ba10ba202044790e2cbf8d02c55487: Pulling from ocaml/opam
17c552ef8c08: Pulling fs layer
6556acaba877: Pulling fs layer
1c6bad104b7d: Pulling fs layer
00d9ec9582df: Pulling fs layer
c065bc3a56b8: Pulling fs layer
6556acaba877: Waiting
17c552ef8c08: Waiting
17c552ef8c08: Verifying Checksum
17c552ef8c08: Download complete
6556acaba877: Verifying Checksum
6556acaba877: Download complete
1c6bad104b7d: Verifying Checksum
1c6bad104b7d: Download complete
00d9ec9582df: Verifying Checksum
00d9ec9582df: Download complete
c065bc3a56b8: Verifying Checksum
c065bc3a56b8: Download complete
17c552ef8c08: Pull complete
6556acaba877: Pull complete
1c6bad104b7d: Pull complete
00d9ec9582df: Pull complete
c065bc3a56b8: Pull complete
Digest: sha256:489983e36d75e2e6b9772b501a4ca6b8c4ba10ba202044790e2cbf8d02c55487
Status: Downloaded newer image for ocaml/opam@sha256:489983e36d75e2e6b9772b501a4ca6b8c4ba10ba202044790e2cbf8d02c55487
2026-03-15 09:02.35 ---> saved as "78e6c5f23a4dc8d8126dd5038125a2c5c57ef9072a95eb6f863a664cb875e09a"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-15 09:02.35 ---> saved as "329ca71c40b0553b28b7368cb5ffb2931f0d2454deacbac5568a81cbbd44fb0d"

/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-03-15 09:02.59 ---> saved as "e274c7f61545ea22704651ced02f3850afa0be885e84710b6d14b2a50007922a"

/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=opensuse-tumbleweed os-version=20260305
# 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-03-15 09:03.00 ---> saved as "3ab69ff9329daad35070902cb279735602aa2840931c1bef9a7a9fc32e7c6ce1"

/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-03-15 09:03.07 ---> saved as "7514ca0e2495a325c75102ff3618c302a3470e9421119227a7ca0dfd96a8899b"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-15 09:03.14 ---> saved as "22b76f75ef9e1c5c953d62769f5b08c9ae1b59e5a6419b4a4c4595652b1c3e4d"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-15 09:03.33 ---> saved as "f73726522e28ac6133e907985d670e5a7d43c4126252683c54444f7f7dfe1039"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Retrieving repository 'openSUSE-Tumbleweed-Update' metadata [..
- Looking for gpg keys in repository openSUSE-Tumbleweed-Update.
-   gpgkey=http://download.opensuse.org/update/tumbleweed/repodata/repomd.xml.key
- ...
- ....done]
- Building repository 'openSUSE-Tumbleweed-Update' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key
- ...
- ....done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key
- ....
- ..........
- ...........
- ....done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- All repositories have been refreshed.
2026-03-15 09:03.46 ---> saved as "f18f1de1c24e6ef2f5b3219891f3f3474e6d3456dfa0e312c8ca543a5592d79c"

/home/opam: (run (shell "opam pin add -k version -yn parseff.0.1.0 0.1.0"))
parseff is now pinned to version 0.1.0
2026-03-15 09:03.47 ---> saved as "3cdccfabe723e012342ce7417101342905b337db8a861c05615b15a6d2a0d203"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall parseff.0.1.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'parseff.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
parseff.0.1.0 is not installed. Install it? [Y/n] y
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - parseff -> ocaml >= 5.3 -> ocaml-variants < 5.4.2~
    You can temporarily relax the switch invariant with `--update-invariant'
  * Missing dependency:
    - parseff -> ocaml >= 5.3 -> ocaml-variants < 5.4.2~ -> ocaml-beta
    unmet availability conditions: 'enable-ocaml-beta-repository'
  * Missing dependency:
    - parseff -> ocaml >= 5.3 -> ocaml-variants < 5.4.2~ -> system-msvc
    unmet availability conditions: 'os = "win32"'

No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall parseff.0.1.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 "\"opensuse-tumbleweed\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'parseff.0.1.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
2026-03-15 09:03.58: Job failed: Failed: Build failed
2026-03-15 09:03.58: Log analysis:
2026-03-15 09:03.58: >>> 
No solution found, exiting
 (score = 100)
2026-03-15 09:03.58: [SKIP] Package not available