(for PR #29027)

2025-12-06 22:13.28: New job: test http.6.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29027/head (1943a08a49bd8ad146df90b1b6fce4343775819f)
                              on macos-homebrew-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/29027/head" && git reset --hard 1943a08a
git fetch origin master
git merge --no-edit 2ab7464b16d46be89975bea0595240dd3fccf608
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/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 -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn http.6.2.0 6.2.0
RUN opam reinstall http.6.2.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 "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'http.6.2.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 http.6.2.0) || true
RUN opam reinstall --with-test --verbose http.6.2.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 "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'http.6.2.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-06 22:13.28: Using cache hint "macos-homebrew-ocaml-4.14-http.6.2.0-1943a08a49bd8ad146df90b1b6fce4343775819f"
2025-12-06 22:13.28: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -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 -k local --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn http.6.2.0 6.2.0"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall http.6.2.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 \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'http.6.2.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 http.6.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose http.6.2.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 \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'http.6.2.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-06 22:13.28: Waiting for resource in pool OCluster
2025-12-06 22:13.30: Waiting for worker…
2025-12-06 22:35.59: Got resource from pool OCluster
Building on i7-worker-04
All commits already cached
Updating files:  17% (3274/18994)
Updating files:  18% (3419/18994)
Updating files:  19% (3609/18994)
Updating files:  20% (3799/18994)
Updating files:  21% (3989/18994)
Updating files:  22% (4179/18994)
Updating files:  23% (4369/18994)
Updating files:  24% (4559/18994)
Updating files:  25% (4749/18994)
Updating files:  26% (4939/18994)
Updating files:  27% (5129/18994)
Updating files:  28% (5319/18994)
Updating files:  29% (5509/18994)
Updating files:  30% (5699/18994)
Updating files:  31% (5889/18994)
Updating files:  32% (6079/18994)
Updating files:  33% (6269/18994)
Updating files:  34% (6458/18994)
Updating files:  35% (6648/18994)
Updating files:  36% (6838/18994)
Updating files:  37% (7028/18994)
Updating files:  38% (7218/18994)
Updating files:  39% (7408/18994)
Updating files:  40% (7598/18994)
Updating files:  40% (7675/18994)
Updating files:  41% (7788/18994)
Updating files:  42% (7978/18994)
Updating files:  43% (8168/18994)
Updating files:  44% (8358/18994)
Updating files:  45% (8548/18994)
Updating files:  46% (8738/18994)
Updating files:  47% (8928/18994)
Updating files:  48% (9118/18994)
Updating files:  49% (9308/18994)
Updating files:  50% (9497/18994)
Updating files:  51% (9687/18994)
Updating files:  52% (9877/18994)
Updating files:  53% (10067/18994)
Updating files:  54% (10257/18994)
Updating files:  55% (10447/18994)
Updating files:  56% (10637/18994)
Updating files:  57% (10827/18994)
Updating files:  58% (11017/18994)
Updating files:  59% (11207/18994)
Updating files:  60% (11397/18994)
Updating files:  61% (11587/18994)
Updating files:  62% (11777/18994)
Updating files:  63% (11967/18994)
Updating files:  64% (12157/18994)
Updating files:  65% (12347/18994)
Updating files:  66% (12537/18994)
Updating files:  67% (12726/18994)
Updating files:  67% (12914/18994)
Updating files:  68% (12916/18994)
Updating files:  69% (13106/18994)
Updating files:  70% (13296/18994)
Updating files:  71% (13486/18994)
Updating files:  72% (13676/18994)
Updating files:  73% (13866/18994)
Updating files:  74% (14056/18994)
Updating files:  75% (14246/18994)
Updating files:  76% (14436/18994)
Updating files:  77% (14626/18994)
Updating files:  78% (14816/18994)
Updating files:  79% (15006/18994)
Updating files:  80% (15196/18994)
Updating files:  81% (15386/18994)
Updating files:  82% (15576/18994)
Updating files:  83% (15766/18994)
Updating files:  84% (15955/18994)
Updating files:  85% (16145/18994)
Updating files:  86% (16335/18994)
Updating files:  87% (16525/18994)
Updating files:  88% (16715/18994)
Updating files:  89% (16905/18994)
Updating files:  90% (17095/18994)
Updating files:  91% (17285/18994)
Updating files:  92% (17475/18994)
Updating files:  93% (17665/18994)
Updating files:  94% (17855/18994)
Updating files:  95% (18045/18994)
Updating files:  96% (18235/18994)
Updating files:  96% (18248/18994)
Updating files:  97% (18425/18994)
Updating files:  98% (18615/18994)
Updating files:  99% (18805/18994)
Updating files: 100% (18994/18994)
Updating files: 100% (18994/18994), done.
HEAD is now at 2ab7464b16 Merge pull request #29022 from thatportugueseguy/release-passage-0.3.1
Merge made by the 'ort' strategy.
 packages/cohttp-async/cohttp-async.6.2.0/opam      | 74 +++++++++++++++++++++
 packages/cohttp-bench/cohttp-bench.6.2.0/opam      | 62 ++++++++++++++++++
 .../cohttp-curl-async/cohttp-curl-async.6.2.0/opam | 63 ++++++++++++++++++
 .../cohttp-curl-lwt/cohttp-curl-lwt.6.2.0/opam     | 63 ++++++++++++++++++
 packages/cohttp-curl/cohttp-curl.6.2.0/opam        | 51 +++++++++++++++
 packages/cohttp-eio/cohttp-eio.6.2.0/opam          | 64 ++++++++++++++++++
 .../cohttp-lwt-jsoo/cohttp-lwt-jsoo.6.2.0/opam     | 63 ++++++++++++++++++
 .../cohttp-lwt-unix/cohttp-lwt-unix.6.2.0/opam     | 70 ++++++++++++++++++++
 packages/cohttp-lwt/cohttp-lwt.6.2.0/opam          | 63 ++++++++++++++++++
 packages/cohttp-mirage/cohttp-mirage.6.2.0/opam    | 70 ++++++++++++++++++++
 .../cohttp-server-lwt-unix.6.2.0/opam              | 57 ++++++++++++++++
 packages/cohttp-top/cohttp-top.6.2.0/opam          | 54 +++++++++++++++
 packages/cohttp/cohttp.6.2.0/opam                  | 76 ++++++++++++++++++++++
 packages/http/http.6.2.0/opam                      | 60 +++++++++++++++++
 14 files changed, 890 insertions(+)
 create mode 100644 packages/cohttp-async/cohttp-async.6.2.0/opam
 create mode 100644 packages/cohttp-bench/cohttp-bench.6.2.0/opam
 create mode 100644 packages/cohttp-curl-async/cohttp-curl-async.6.2.0/opam
 create mode 100644 packages/cohttp-curl-lwt/cohttp-curl-lwt.6.2.0/opam
 create mode 100644 packages/cohttp-curl/cohttp-curl.6.2.0/opam
 create mode 100644 packages/cohttp-eio/cohttp-eio.6.2.0/opam
 create mode 100644 packages/cohttp-lwt-jsoo/cohttp-lwt-jsoo.6.2.0/opam
 create mode 100644 packages/cohttp-lwt-unix/cohttp-lwt-unix.6.2.0/opam
 create mode 100644 packages/cohttp-lwt/cohttp-lwt.6.2.0/opam
 create mode 100644 packages/cohttp-mirage/cohttp-mirage.6.2.0/opam
 create mode 100644 packages/cohttp-server-lwt-unix/cohttp-server-lwt-unix.6.2.0/opam
 create mode 100644 packages/cohttp-top/cohttp-top.6.2.0/opam
 create mode 100644 packages/cohttp/cohttp.6.2.0/opam
 create mode 100644 packages/http/http.6.2.0/opam

(from macos-homebrew-ocaml-4.14)
2025-12-06 22:36.05 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2025-12-06 22:36.05 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 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 1 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=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2025-12-06 22:36.06 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache

/: (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.1
# self-upgrade         no
# system               arch=x86_64 os=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 11
# repositories         1 (version-controlled)
# pinned               0
# current-switch       4.14.2
# invariant            ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "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       /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-12-06 22:36.06 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2025-12-06 22:36.06 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2025-12-06 22:36.08 ---> using "2292a6d2e2b992226f299f4c3ddde6c066b9efa22a532086c6732a66fe9cd1d0" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-12-06 22:36.08 ---> using "cb30a6ae50ab2ed2e20a989002fc2aead83ea5f043d4ed4a1d91eb313d1786a0" from cache

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:b48c918b7693c6d27e8027dc803a18cf64ddce49552fb45d88f3cabb9eead0fd
- #=#=#                                                                          

                                                                           0.7%
#                                                                          1.5%
#                                                                          2.3%
##                                                                         3.3%
##                                                                         4.1%
###                                                                        4.9%
####                                                                       5.9%
####                                                                       6.7%
#####                                                                      7.5%
######                                                                     8.4%
######                                                                     9.2%
- 
#######                                                                   10.1%
#######                                                                   11.0%
########                                                                  11.9%
#########                                                                 12.9%
#########                                                                 13.7%
##########                                                                14.5%
###########                                                               15.4%
###########                                                               16.3%
############                                                              17.1%
############                                                              18.0%
#############                                                             18.8%
- 
##############                                                            19.7%
##############                                                            20.6%
###############                                                           21.5%
################                                                          22.4%
################                                                          23.2%
#################                                                         24.1%
#################                                                         25.0%
##################                                                        25.8%
###################                                                       26.6%
###################                                                       27.6%
- 
####################                                                      28.4%
#####################                                                     29.2%
#####################                                                     30.0%
######################                                                    31.0%
######################                                                    31.8%
#######################                                                   32.6%
########################                                                  33.5%
########################                                                  34.4%
#########################                                                 35.2%
#########################                                                 36.1%
##########################                                                37.0%
###########################                                               37.9%
- 
###########################                                               38.7%
############################                                              39.5%
#############################                                             40.5%
#############################                                             41.3%
##############################                                            42.1%
##############################                                            42.9%
###############################                                           43.9%
################################                                          44.7%
################################                                          45.5%
#################################                                         46.4%
##################################                                        47.3%
- 
##################################                                        48.1%
###################################                                       49.0%
###################################                                       49.8%
####################################                                      50.7%
#####################################                                     51.6%
#####################################                                     52.5%
######################################                                    53.4%
#######################################                                   54.2%
#######################################                                   55.0%
########################################                                  56.0%
########################################                                  56.8%
- 
#########################################                                 57.6%
##########################################                                58.4%
##########################################                                59.4%
###########################################                               60.2%
###########################################                               61.0%
############################################                              61.9%
#############################################                             62.8%
#############################################                             63.6%
##############################################                            64.6%
###############################################                           65.4%
###############################################                           66.2%
- 
################################################                          67.1%
################################################                          68.0%
#################################################                         68.8%
##################################################                        69.7%
##################################################                        70.5%
###################################################                       71.5%
####################################################                      72.3%
####################################################                      73.1%
#####################################################                     73.9%
#####################################################                     74.9%
######################################################                    75.7%
#######################################################                   76.7%
- 
#######################################################                   77.5%
########################################################                  78.3%
########################################################                  79.1%
#########################################################                 80.1%
##########################################################                80.9%
##########################################################                81.7%
###########################################################               82.6%
############################################################              83.5%
############################################################              84.3%
#############################################################             85.2%
##############################################################            86.1%
- 
##############################################################            87.0%
###############################################################           87.8%
###############################################################           88.6%
################################################################          89.6%
#################################################################         90.4%
#################################################################         91.2%
##################################################################        92.0%
##################################################################        93.0%
###################################################################       93.9%
####################################################################      94.8%
####################################################################      95.6%
- 
#####################################################################     96.4%
######################################################################    97.2%
######################################################################    98.2%
#######################################################################   99.0%
#######################################################################   99.6%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.7.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2025-12-06 22:36.08 ---> using "08ed0498d487390d600979f9e95c58b19acefb6be424d5b04ce389c85d1eddf1" from cache

/: (run (shell "opam pin add -k version -yn http.6.2.0 6.2.0"))
http is now pinned to version 6.2.0
2025-12-06 22:36.08 ---> using "095273455e5c6a7d3c4868ca17ac6b810c21bd5f54ba2b4726ac2e41ea537462" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall http.6.2.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 \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'http.6.2.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
http.6.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune 3.20.2         [required by http]
  - install http 6.2.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2  (cached)
-> retrieved http.6.2.0  (cached)
-> installed dune.3.20.2
-> installed http.6.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-06 22:36.09 ---> using "b460c600e2deb7c2b85ef47d59ac82ec5c92aaf256afe7f2d9d5bcfdc8c86ef9" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test http.6.2.0) || true"))
  * No agreement on the version of ocaml-base-compiler:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - http >= 6.2.0 -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-base-compiler >= 5.1.0~
    You can temporarily relax the switch invariant with `--update-invariant'
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - http >= 6.2.0 -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.5.1~
  * Missing dependency:
    - http >= 6.2.0 -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.5.1~ -> ocaml-beta
    unmet availability conditions: 'enable-ocaml-beta-repository'
  * Missing dependency:
    - http >= 6.2.0 -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants >= 5.1.0~ -> system-msvc
    unmet availability conditions: 'os = "win32"'

No solution found, exiting
2025-12-06 22:36.17 ---> saved as "97b814266ffee8b489dd2c0ae42283c468aeaa0598bf3b920e6961487cb02976"

/: (run (shell  "opam reinstall --with-test --verbose http.6.2.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 \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'http.6.2.0' && 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 ocaml-base-compiler:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - http >= 6.2.0 -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-base-compiler >= 5.1.0~
    You can temporarily relax the switch invariant with `--update-invariant'
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - http >= 6.2.0 -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.5.1~
  * Missing dependency:
    - http >= 6.2.0 -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.5.1~ -> ocaml-beta
    unmet availability conditions: 'enable-ocaml-beta-repository'
  * Missing dependency:
    - http >= 6.2.0 -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants >= 5.1.0~ -> system-msvc
    unmet availability conditions: 'os = "win32"'

No solution found, exiting
'opam reinstall --with-test --verbose http.6.2.0' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose http.6.2.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 "\"macos-homebrew\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'http.6.2.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-06 22:36.37: Job failed: Failed: Build failed
2025-12-06 22:36.37: Log analysis:
2025-12-06 22:36.37: >>> 
No solution found, exiting
 (score = 100)
2025-12-06 22:36.37: >>> 
No solution found, exiting
 (score = 100)
2025-12-06 22:36.37: [SKIP] Package not available