2025-01-11 05:17.29: New job: test linol-eio.0.8, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27246/head (a9279ecc3d9507e2ac76b01c358ecdea7b0c393a)
                              on macos-homebrew-ocaml-4.14/arm64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27246/head" && git reset --hard a9279ecc
git fetch origin master
git merge --no-edit 67e940587b8aca227f511e1943bcd31eabe6b1db
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 linol-eio.0.8 0.8
RUN opam reinstall linol-eio.0.8; \
    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" != 'linol-eio.0.8' && 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 linol-eio.0.8) || true
RUN opam reinstall --with-test --verbose linol-eio.0.8; \
    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" != 'linol-eio.0.8' && 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-01-11 05:17.29: Using cache hint "macos-homebrew-ocaml-4.14-linol-eio.0.8-a9279ecc3d9507e2ac76b01c358ecdea7b0c393a"
2025-01-11 05:17.29: 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 linol-eio.0.8 0.8"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall linol-eio.0.8;\
             \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\" != 'linol-eio.0.8' && 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 linol-eio.0.8) || true"))
 (run (shell  "opam reinstall --with-test --verbose linol-eio.0.8;\
             \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\" != 'linol-eio.0.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-01-11 05:17.29: Waiting for resource in pool OCluster
2025-01-11 05:17.31: Waiting for worker…
2025-01-11 05:21.05: Got resource from pool OCluster
Building on m1-worker-03
All commits already cached
Updating files:  42% (12346/28897)
Updating files:  43% (12426/28897)
Updating files:  44% (12715/28897)
Updating files:  45% (13004/28897)
Updating files:  46% (13293/28897)
Updating files:  47% (13582/28897)
Updating files:  48% (13871/28897)
Updating files:  49% (14160/28897)
Updating files:  50% (14449/28897)
Updating files:  51% (14738/28897)
Updating files:  52% (15027/28897)
Updating files:  53% (15316/28897)
Updating files:  54% (15605/28897)
Updating files:  55% (15894/28897)
Updating files:  56% (16183/28897)
Updating files:  57% (16472/28897)
Updating files:  58% (16761/28897)
Updating files:  59% (17050/28897)
Updating files:  60% (17339/28897)
Updating files:  61% (17628/28897)
Updating files:  62% (17917/28897)
Updating files:  63% (18206/28897)
Updating files:  64% (18495/28897)
Updating files:  65% (18784/28897)
Updating files:  66% (19073/28897)
Updating files:  67% (19361/28897)
Updating files:  68% (19650/28897)
Updating files:  69% (19939/28897)
Updating files:  70% (20228/28897)
Updating files:  71% (20517/28897)
Updating files:  72% (20806/28897)
Updating files:  73% (21095/28897)
Updating files:  74% (21384/28897)
Updating files:  74% (21548/28897)
Updating files:  75% (21673/28897)
Updating files:  76% (21962/28897)
Updating files:  77% (22251/28897)
Updating files:  78% (22540/28897)
Updating files:  79% (22829/28897)
Updating files:  80% (23118/28897)
Updating files:  81% (23407/28897)
Updating files:  82% (23696/28897)
Updating files:  83% (23985/28897)
Updating files:  84% (24274/28897)
Updating files:  85% (24563/28897)
Updating files:  86% (24852/28897)
Updating files:  87% (25141/28897)
Updating files:  88% (25430/28897)
Updating files:  89% (25719/28897)
Updating files:  90% (26008/28897)
Updating files:  91% (26297/28897)
Updating files:  92% (26586/28897)
Updating files:  93% (26875/28897)
Updating files:  94% (27164/28897)
Updating files:  95% (27453/28897)
Updating files:  96% (27742/28897)
Updating files:  97% (28031/28897)
Updating files:  98% (28320/28897)
Updating files:  99% (28609/28897)
Updating files: 100% (28897/28897)
Updating files: 100% (28897/28897), done.
HEAD is now at 67e940587b Merge pull request #27236 from kit-ty-kate/opam-publish-mccs.1.1-19
Updating 67e940587b..a9279ecc3d
Fast-forward
 packages/linol-eio/linol-eio.0.8/opam | 41 +++++++++++++++++++++++++++++++++++
 packages/linol-lwt/linol-lwt.0.8/opam | 40 ++++++++++++++++++++++++++++++++++
 packages/linol/linol.0.8/opam         | 41 +++++++++++++++++++++++++++++++++++
 3 files changed, 122 insertions(+)
 create mode 100644 packages/linol-eio/linol-eio.0.8/opam
 create mode 100644 packages/linol-lwt/linol-lwt.0.8/opam
 create mode 100644 packages/linol/linol.0.8/opam

(from macos-homebrew-ocaml-4.14)
2025-01-11 05:26.26 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2025-01-11 05:26.26 ---> 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-01-11 05:26.26 ---> 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.3.0
# self-upgrade         no
# system               arch=arm64 os=macos os-distribution=homebrew os-version=14.4
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 7
# 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-01-11 05:26.26 ---> 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-01-11 05:26.27 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2025-01-11 05:26.28 ---> using "a614b5b635b7494543f1c210b17a1060374e070275dd82d8fcfb2388cbc5dcc8" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-01-11 05:26.28 ---> using "7374933fad4371deea6ba062b8e57f5a083411d715fd384e6c1a0f28ecf94fe0" from cache

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /opt/homebrew/bin/brew "update"
- ==> Updating Homebrew...
- ==> 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-01-11 05:26.28 ---> using "66f48fb2782ada84a48b89bf2e5adce7ebe9bf24639f4352035f798aad95caa4" from cache

/: (run (shell "opam pin add -k version -yn linol-eio.0.8 0.8"))
linol-eio is now pinned to version 0.8
2025-01-11 05:26.28 ---> using "26f4466241f811e7415252cd86a5f5b61363c2ccdd9871fca4456c9eb4dfb898" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall linol-eio.0.8;\
               \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\" != 'linol-eio.0.8' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
linol-eio.0.8 is not installed. Install it? [y/n] y
  * No agreement on the version of ocaml:
    - (invariant) -> ocaml-base-compiler = 4.14.2 -> ocaml = 4.14.2
    - linol-eio >= 0.8 -> eio >= 1.0 -> ocaml >= 5.1.0
    You can temporarily relax the switch invariant with `--update-invariant'
  * No agreement on the version of ocaml-base-compiler:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - linol-eio >= 0.8 -> eio >= 1.0 -> ocaml >= 5.1.0 -> ocaml-base-compiler >= 5.2.1~
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - linol-eio >= 0.8 -> eio >= 1.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.3.2~
  * Missing dependency:
    - linol-eio >= 0.8 -> eio >= 1.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.3.2~ -> system-msvc
    unmet availability conditions: 'os = "win32"'

No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall linol-eio.0.8;
        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" != 'linol-eio.0.8' && 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-01-11 05:26.48: Job failed: Failed: Build failed
2025-01-11 05:26.48: Log analysis:
2025-01-11 05:26.48: >>> 
No solution found, exiting
 (score = 100)
2025-01-11 05:26.48: [SKIP] Package not available