(not at the head of any monitored branch or PR)
2025-02-10 18:20.32: New job: test cohttp-eio.6.0.0~alpha0 with lwt.5.8.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27204/head (7ed2f1c01e376051eb0d1865dbb9ee4b512da765)
                              on debian-12-ocaml-5.3/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/27204/head" && git reset --hard 7ed2f1c0
git fetch origin master
git merge --no-edit 36f4d2d5ceb882a79fd7d7f956b490201da67226
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683
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 lwt.5.8.1 5.8.1
RUN opam reinstall lwt.5.8.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt.5.8.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall cohttp-eio.6.0.0~alpha0; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cohttp-eio.6.0.0~alpha0' && 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 cohttp-eio.6.0.0~alpha0) || true
RUN opam reinstall --with-test --verbose cohttp-eio.6.0.0~alpha0; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cohttp-eio.6.0.0~alpha0' && 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-02-10 18:20.32: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683-lwt.5.8.1-cohttp-eio.6.0.0~alpha0-7ed2f1c01e376051eb0d1865dbb9ee4b512da765"
2025-02-10 18:20.32: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683)
 (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 lwt.5.8.1 5.8.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt.5.8.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'lwt.5.8.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall cohttp-eio.6.0.0~alpha0;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'cohttp-eio.6.0.0~alpha0' && 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 cohttp-eio.6.0.0~alpha0) || true"))
 (run (shell  "opam reinstall --with-test --verbose cohttp-eio.6.0.0~alpha0;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'cohttp-eio.6.0.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-02-10 18:20.32: Waiting for resource in pool OCluster
2025-02-11 04:30.55: Waiting for worker…
2025-02-11 04:33.28: Got resource from pool OCluster
Building on x86-bm-c4.sw.ocaml.org
All commits already cached
Updating files:  57% (13493/23305)
Updating files:  58% (13517/23305)
Updating files:  59% (13750/23305)
Updating files:  60% (13983/23305)
Updating files:  61% (14217/23305)
Updating files:  62% (14450/23305)
Updating files:  63% (14683/23305)
Updating files:  64% (14916/23305)
Updating files:  65% (15149/23305)
Updating files:  66% (15382/23305)
Updating files:  67% (15615/23305)
Updating files:  68% (15848/23305)
Updating files:  69% (16081/23305)
Updating files:  70% (16314/23305)
Updating files:  71% (16547/23305)
Updating files:  72% (16780/23305)
Updating files:  73% (17013/23305)
Updating files:  74% (17246/23305)
Updating files:  75% (17479/23305)
Updating files:  76% (17712/23305)
Updating files:  77% (17945/23305)
Updating files:  78% (18178/23305)
Updating files:  79% (18411/23305)
Updating files:  80% (18644/23305)
Updating files:  81% (18878/23305)
Updating files:  82% (19111/23305)
Updating files:  83% (19344/23305)
Updating files:  84% (19577/23305)
Updating files:  85% (19810/23305)
Updating files:  86% (20043/23305)
Updating files:  87% (20276/23305)
Updating files:  88% (20509/23305)
Updating files:  89% (20742/23305)
Updating files:  90% (20975/23305)
Updating files:  91% (21208/23305)
Updating files:  92% (21441/23305)
Updating files:  93% (21674/23305)
Updating files:  94% (21907/23305)
Updating files:  95% (22140/23305)
Updating files:  96% (22373/23305)
Updating files:  97% (22606/23305)
Updating files:  98% (22839/23305)
Updating files:  99% (23072/23305)
Updating files: 100% (23305/23305)
Updating files: 100% (23305/23305), done.
HEAD is now at 36f4d2d5ce Merge pull request #27169 from Frigory33/release-allegro5-0.1
Merge made by the 'ort' strategy.
 packages/lwt/lwt.5.8.1/opam         | 63 +++++++++++++++++++++++++++++++++++++
 packages/lwt_ppx/lwt_ppx.5.8.1/opam | 41 ++++++++++++++++++++++++
 2 files changed, 104 insertions(+)
 create mode 100644 packages/lwt/lwt.5.8.1/opam
 create mode 100644 packages/lwt_ppx/lwt_ppx.5.8.1/opam

(from ocaml/opam:debian-12-ocaml-5.3@sha256:2ebf84c1b80d45bd693320d055f608b32529285fcbeeb35803f2ce50d3048683)
2025-02-11 04:33.33 ---> using "2eea5bde28725c99a87e1f2a5b147a024a046c2a06cd3ab003a93e0be5a0f139" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-02-11 04:33.33 ---> using "88186dbc3508db9ea08ddebc1085e9bfd977ff51a8aa06e73caed7f922db43fc" 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 development 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 39 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=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] no changes from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-02-11 04:33.33 ---> using "d156e62450e17e03814e3980a64c0012ea73d3eb21216bc40a494f13df757607" 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.4.0~alpha1~dev (747e73667ad9d054b0f736be205c0013e1bec087)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 31
# repositories         1 (local), 1 (version-controlled)
# pinned               1 (version)
# current-switch       5.3
# invariant            ["ocaml-base-compiler" {>= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-02-11 04:33.33 ---> using "e4d817dc9e39278825c22b99161bb0e397890509ba9b4e4dd0ac5ffc302bedfd" 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-02-11 04:33.33 ---> using "5062cfb9d7669b5e1598a0907630fe7ef6fc4e76142fbea3736fa476d97f9b73" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-02-11 04:33.35 ---> using "0bb67cc38785b7a3480a0aa4f1b7b233eaaba9fc6e11df408ec6004b89895c35" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-02-11 04:33.35 ---> using "47122463128b132dcfe27e7161a3f8c8070255a68a9c1bafc37db7b73956c587" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [245 kB]
- Fetched 348 kB in 0s (1342 kB/s)
- Reading package lists...
- 
2025-02-11 04:33.35 ---> using "176817f66036b22a97854cb174aa66a7a96faee614beb6d75f28fcf92a3e26ac" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt.5.8.1 5.8.1"))
lwt is now pinned to version 5.8.1
2025-02-11 04:33.35 ---> using "e88fde6d86f6659325ca71062259024b03afef67f6bdd68c4bdb4f4a7a225f5b" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt.5.8.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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'lwt.5.8.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt.5.8.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
  - install base-bytes        base           [required by ocplib-endian]
  - install cppo              1.8.0          [required by lwt]
  - install csexp             1.5.2          [required by dune-configurator]
  - install dune              3.17.2         [required by lwt]
  - install dune-configurator 3.17.2         [required by lwt]
  - install lwt               5.8.1 (pinned)
  - install ocamlfind         1.9.8          [required by base-bytes]
  - install ocplib-endian     1.2            [required by lwt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2  (cached)
-> retrieved lwt.5.8.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.17.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.17.2
-> installed lwt.5.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 04:33.35 ---> using "0d0896e0a29df64b1e28410a0c96f326ae3e35c2b6b00eed285bcaa4f89870cf" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall cohttp-eio.6.0.0~alpha0;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'cohttp-eio.6.0.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
cohttp-eio.6.0.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install bigstringaf 0.10.0       [required by eio]
  - install cohttp-eio  6.0.0~alpha0
  - install cstruct     6.2.0        [required by eio]
  - install eio         0.6          [required by cohttp-eio]
  - install fmt         0.9.0        [required by cohttp-eio]
  - install hmap        0.8.1        [required by eio]
  - install http        6.0.0~alpha0 [required by cohttp-eio]
  - install lwt-dllist  1.0.1        [required by eio]
  - install mtime       2.1.0        [required by eio]
  - install ocamlbuild  0.15.0       [required by hmap, mtime]
  - install optint      0.3.0        [required by eio]
  - install psq         0.2.1        [required by eio]
  - install seq         base         [required by psq]
  - install topkg       1.0.7        [required by hmap, mtime]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cohttp-eio.6.0.0~alpha0, http.6.0.0~alpha0  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved eio.0.6  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved lwt-dllist.1.0.1  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> installed lwt-dllist.1.0.1
-> retrieved topkg.1.0.7  (cached)
-> installed bigstringaf.0.10.0
-> installed http.6.0.0~alpha0
-> installed psq.0.2.1
-> installed optint.0.3.0
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed hmap.0.8.1
-> installed fmt.0.9.0
-> installed mtime.2.1.0
-> installed cstruct.6.2.0
-> installed eio.0.6
-> installed cohttp-eio.6.0.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-11 04:34.23 ---> saved as "c84658ca9fa6ab9cda56e2d9329d12dde75c8cab9ef74cf698dbd6d11db47cbe"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test cohttp-eio.6.0.0~alpha0) || true"))
  * No agreement on the version of eio:
    - cohttp-eio < 6.0.0~alpha1 -> eio_main -> eio_posix (< 0.10 | = 0.11 | = 0.13 | = 0.15 | = 1.0 | = 1.1) -> eio (= 0.9 | = 0.11 | = 0.13 | = 0.15 | = 1.0 | = 1.1)
    - cohttp-eio < 6.0.0~alpha1 -> eio < 0.7
  * No agreement on the version of eio:
    - cohttp-eio < 6.0.0~alpha1 -> eio_main -> eio_linux (= 0.10 | = 0.12 | = 0.14 | >= 1.2) -> eio (= 0.10 | = 0.12 | = 0.14 | >= 1.2)
    - cohttp-eio < 6.0.0~alpha1 -> eio < 0.7
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler >= 5.3.0
    - cohttp-eio < 6.0.0~alpha1 -> eio < 0.7
    You can temporarily relax the switch invariant with `--update-invariant'
  * Missing dependency:
    - cohttp-eio < 6.0.0~alpha1 -> eio_main -> eio_luv (<= 0.2 | = 0.3 | = 0.4 | = 0.5 | = 0.6 | = 0.7 | = 0.8.1)
    unmet availability conditions, e.g. 'false'

No solution found, exiting
2025-02-11 04:34.45 ---> saved as "665cb474b3dc6a5a9626c813566521419d9caca8eae245e84ff178b3f89c360a"

/home/opam: (run (shell  "opam reinstall --with-test --verbose cohttp-eio.6.0.0~alpha0;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'cohttp-eio.6.0.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
  * No agreement on the version of eio:
    - cohttp-eio < 6.0.0~alpha1 -> eio_main -> eio_posix (< 0.10 | = 0.11 | = 0.13 | = 0.15 | = 1.0 | = 1.1) -> eio (= 0.9 | = 0.11 | = 0.13 | = 0.15 | = 1.0 | = 1.1)
    - cohttp-eio < 6.0.0~alpha1 -> eio < 0.7
  * No agreement on the version of eio:
    - cohttp-eio < 6.0.0~alpha1 -> eio_main -> eio_linux (= 0.10 | = 0.12 | = 0.14 | >= 1.2) -> eio (= 0.10 | = 0.12 | = 0.14 | >= 1.2)
    - cohttp-eio < 6.0.0~alpha1 -> eio < 0.7
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler >= 5.3.0
    - cohttp-eio < 6.0.0~alpha1 -> eio < 0.7
    You can temporarily relax the switch invariant with `--update-invariant'
  * Missing dependency:
    - cohttp-eio < 6.0.0~alpha1 -> eio_main -> eio_luv (<= 0.2 | = 0.3 | = 0.4 | = 0.5 | = 0.6 | = 0.7 | = 0.8.1)
    unmet availability conditions, e.g. 'false'

No solution found, exiting
'opam reinstall --with-test --verbose cohttp-eio.6.0.0~alpha0' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose cohttp-eio.6.0.0~alpha0;
        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-12\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'cohttp-eio.6.0.0~alpha0' && 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-02-11 04:35.47: Job failed: Failed: Build failed
2025-02-11 04:35.47: Log analysis:
2025-02-11 04:35.47: >>> 
No solution found, exiting
 (score = 100)
2025-02-11 04:35.47: >>> 
No solution found, exiting
 (score = 100)
2025-02-11 04:35.47: [SKIP] Package not available