(not at the head of any monitored branch or PR)
2025-11-10 11:00.33: New job: build lwt_direct.6.0.0~beta00, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28558/head (db50ce02bd0238ef1431a20de40a98e9f360a8c0)
                              on archlinux-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/28558/head" && git reset --hard db50ce02
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961
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_direct.6.0.0~beta00 6.0.0~beta00
RUN opam reinstall lwt_direct.6.0.0~beta00; \
    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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt_direct.6.0.0~beta00' && 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-11-10 11:00.33: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961-lwt_direct.6.0.0~beta00-db50ce02bd0238ef1431a20de40a98e9f360a8c0"
2025-11-10 11:00.33: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961)
 (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_direct.6.0.0~beta00 6.0.0~beta00"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt_direct.6.0.0~beta00;\
             \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 \"\\\"archlinux\\\"\"; 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_direct.6.0.0~beta00' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-11-10 11:00.33: Waiting for resource in pool OCluster
2025-11-10 11:27.05: Waiting for worker…
2025-11-10 11:32.34: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  95% (17790/18704)
Updating files:  96% (17956/18704)
Updating files:  97% (18143/18704)
Updating files:  98% (18330/18704)
Updating files:  99% (18517/18704)
Updating files: 100% (18704/18704)
Updating files: 100% (18704/18704), done.
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Merge made by the 'ort' strategy.
 packages/lwt/lwt.6.0.0~beta00/opam               | 67 ++++++++++++++++++++++++
 packages/lwt_direct/lwt_direct.6.0.0~beta00/opam | 42 +++++++++++++++
 2 files changed, 109 insertions(+)
 create mode 100644 packages/lwt/lwt.6.0.0~beta00/opam
 create mode 100644 packages/lwt_direct/lwt_direct.6.0.0~beta00/opam

(from ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961)
Unable to find image 'ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961' locally
docker.io/ocaml/opam@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961: Pulling from ocaml/opam
a59b1e251b85: Pulling fs layer
849b0775ea0f: Pulling fs layer
9d20c098ec76: Pulling fs layer
06eb9f7865f2: Pulling fs layer
c240908bead2: Pulling fs layer
849b0775ea0f: Waiting
1ecf1bb05538: Pulling fs layer
a59b1e251b85: Waiting
ed893cc754b7: Pulling fs layer
9d20c098ec76: Waiting
c240908bead2: Waiting
06eb9f7865f2: Waiting
edacf2579914: Pulling fs layer
1ecf1bb05538: Waiting
ed893cc754b7: Waiting
05c577939763: Pulling fs layer
edacf2579914: Waiting
ef8936ed2115: Pulling fs layer
05c577939763: Waiting
03d88b820e0f: Pulling fs layer
ef8936ed2115: Waiting
7ad98e89cb6f: Pulling fs layer
03d88b820e0f: Waiting
d5de02ff18c6: Pulling fs layer
7ad98e89cb6f: Waiting
a039df7c27db: Pulling fs layer
d5de02ff18c6: Waiting
4f4fb700ef54: Pulling fs layer
a039df7c27db: Waiting
6a3e38ba2bef: Pulling fs layer
4f4fb700ef54: Waiting
fbffc84d36db: Pulling fs layer
6a3e38ba2bef: Waiting
576b77c89595: Pulling fs layer
fbffc84d36db: Waiting
3481805c55c1: Pulling fs layer
576b77c89595: Waiting
42630e11cdf2: Pulling fs layer
3481805c55c1: Waiting
b5fc415bc313: Pulling fs layer
42630e11cdf2: Waiting
737547a67ea4: Pulling fs layer
b5fc415bc313: Waiting
9cc4ccf31d95: Pulling fs layer
737547a67ea4: Waiting
b438a2bfeb52: Pulling fs layer
9cc4ccf31d95: Waiting
acb0748395fb: Pulling fs layer
b438a2bfeb52: Waiting
0ab398869fe3: Pulling fs layer
acb0748395fb: Waiting
6c1375743e2c: Pulling fs layer
0ab398869fe3: Waiting
c88d9a06b9a9: Pulling fs layer
6c1375743e2c: Waiting
83e3b1e13251: Pulling fs layer
c88d9a06b9a9: Waiting
99dce37e928a: Pulling fs layer
152d026b0425: Pulling fs layer
83e3b1e13251: Waiting
99dce37e928a: Waiting
01cfea535c66: Pulling fs layer
134d5afae458: Pulling fs layer
01cfea535c66: Waiting
7df685c2050d: Pulling fs layer
134d5afae458: Waiting
db2e8ff73121: Pulling fs layer
7df685c2050d: Waiting
c1a6bec855d5: Pulling fs layer
db2e8ff73121: Waiting
370974f263de: Pulling fs layer
c1a6bec855d5: Waiting
370974f263de: Waiting
a59b1e251b85: Verifying Checksum
a59b1e251b85: Download complete
849b0775ea0f: Verifying Checksum
849b0775ea0f: Download complete
9d20c098ec76: Verifying Checksum
9d20c098ec76: Download complete
06eb9f7865f2: Verifying Checksum
06eb9f7865f2: Download complete
c240908bead2: Verifying Checksum
c240908bead2: Download complete
1ecf1bb05538: Verifying Checksum
1ecf1bb05538: Download complete
ed893cc754b7: Verifying Checksum
ed893cc754b7: Download complete
edacf2579914: Download complete
05c577939763: Verifying Checksum
05c577939763: Download complete
ef8936ed2115: Verifying Checksum
ef8936ed2115: Download complete
03d88b820e0f: Download complete
7ad98e89cb6f: Download complete
d5de02ff18c6: Verifying Checksum
d5de02ff18c6: Download complete
a039df7c27db: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
a59b1e251b85: Pull complete
849b0775ea0f: Pull complete
6a3e38ba2bef: Download complete
fbffc84d36db: Verifying Checksum
fbffc84d36db: Download complete
576b77c89595: Download complete
3481805c55c1: Download complete
42630e11cdf2: Download complete
b5fc415bc313: Verifying Checksum
b5fc415bc313: Download complete
737547a67ea4: Download complete
9cc4ccf31d95: Verifying Checksum
9cc4ccf31d95: Download complete
b438a2bfeb52: Verifying Checksum
b438a2bfeb52: Download complete
acb0748395fb: Verifying Checksum
acb0748395fb: Download complete
0ab398869fe3: Verifying Checksum
0ab398869fe3: Download complete
6c1375743e2c: Download complete
9d20c098ec76: Pull complete
06eb9f7865f2: Pull complete
c240908bead2: Pull complete
1ecf1bb05538: Pull complete
ed893cc754b7: Pull complete
edacf2579914: Pull complete
05c577939763: Pull complete
ef8936ed2115: Pull complete
03d88b820e0f: Pull complete
7ad98e89cb6f: Pull complete
d5de02ff18c6: Pull complete
a039df7c27db: Pull complete
4f4fb700ef54: Pull complete
6a3e38ba2bef: Pull complete
fbffc84d36db: Pull complete
576b77c89595: Pull complete
3481805c55c1: Pull complete
42630e11cdf2: Pull complete
b5fc415bc313: Pull complete
737547a67ea4: Pull complete
9cc4ccf31d95: Pull complete
b438a2bfeb52: Pull complete
acb0748395fb: Pull complete
0ab398869fe3: Pull complete
6c1375743e2c: Pull complete
83e3b1e13251: Download complete
99dce37e928a: Verifying Checksum
99dce37e928a: Download complete
152d026b0425: Verifying Checksum
152d026b0425: Download complete
134d5afae458: Verifying Checksum
134d5afae458: Download complete
7df685c2050d: Verifying Checksum
7df685c2050d: Download complete
db2e8ff73121: Verifying Checksum
db2e8ff73121: Download complete
370974f263de: Verifying Checksum
370974f263de: Download complete
c1a6bec855d5: Download complete
c88d9a06b9a9: Verifying Checksum
c88d9a06b9a9: Download complete
c88d9a06b9a9: Pull complete
83e3b1e13251: Pull complete
99dce37e928a: Pull complete
152d026b0425: Pull complete
01cfea535c66: Pull complete
134d5afae458: Pull complete
7df685c2050d: Pull complete
db2e8ff73121: Pull complete
c1a6bec855d5: Pull complete
370974f263de: Pull complete
Digest: sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961
Status: Downloaded newer image for ocaml/opam@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961
2025-11-10 11:40.18 ---> saved as "90e6ad271d6cff4d2d84b95e7df48355be7a23830eeb095c4f58a5dc3b57ca64"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 11:40.18 ---> saved as "15f45865a083c7cfab55ba0775e9565b1a55687dc62b58bb4492b19a84e419b3"

/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
2025-11-10 11:40.42 ---> saved as "1110c0a39239d6f102cc7f418ebb881ec1acb8fbf65e53c27ad27a49b180e2e2"

/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~alpha1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=arch os-version=20251019.0.436919
# 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
2025-11-10 11:40.43 ---> saved as "c12e5e7d23b60796935938a0eb27d41a4f17be86238b92ad3510b26a3c1f0f4e"

/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-11-10 11:40.51 ---> saved as "b6eb5f9a486e65c54b887bec0bc1e59355c26361baecfe32d07029df9f3285b5"

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 11:40.59 ---> saved as "8f87494d68ebc74911eb1d5e83c7e8d438959d9539afcfc8e4af9fb18c31c7d4"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 11:41.19 ---> saved as "743b6ae48824f52163ab15f88b6f80ee0370fad858e0e69ba920d8b745306426"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2025-11-10 11:41.19 ---> saved as "11b83800d1f2e4ff70566d94b679d06bed2d6deaeb7b74e8e9c26e4206942fa9"

/home/opam: (run (shell "opam pin add -k version -yn lwt_direct.6.0.0~beta00 6.0.0~beta00"))
lwt_direct is now pinned to version 6.0.0~beta00
2025-11-10 11:41.20 ---> saved as "aed270c5fc9b3bdb08ff1302ec9104528bc3fbc70fb8c61bb8524e7e7600e324"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt_direct.6.0.0~beta00;\
                        \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 \"\\\"archlinux\\\"\"; 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_direct.6.0.0~beta00' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt_direct.6.0.0~beta00 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
    - lwt_direct >= 6.0.0~beta00 → ocaml >= 5.0
    You can temporarily relax the switch invariant with `--update-invariant'

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