(not at the head of any monitored branch or PR)
2026-03-17 10:25.59: New job: test lwt_glib.1.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
                              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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299
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_glib.1.1.0 1.1.0
RUN opam reinstall lwt_glib.1.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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt_glib.1.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 lwt_glib.1.1.0) || true
RUN opam reinstall --with-test --verbose lwt_glib.1.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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lwt_glib.1.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-17 10:25.59: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299-lwt_glib.1.1.0-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:25.59: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299)
 (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_glib.1.1.0 1.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt_glib.1.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 \"\\\"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_glib.1.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 lwt_glib.1.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose lwt_glib.1.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 \"\\\"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_glib.1.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-17 10:25.59: Waiting for resource in pool OCluster
2026-03-17 11:45.39: Waiting for worker…
2026-03-17 11:47.38: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 7 ++++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 7 ++++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 403 insertions(+), 84 deletions(-)

(from ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299)
Unable to find image 'ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299' locally
docker.io/ocaml/opam@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299: Pulling from ocaml/opam
c2d2ddabd275: Pulling fs layer
7bbb5d4707f9: Pulling fs layer
e4ca9c439f39: Pulling fs layer
aef5cc661ebc: Pulling fs layer
2768b70215c2: Pulling fs layer
a489f44d714e: Pulling fs layer
fdc692ac38f2: Pulling fs layer
af6c3d8351fe: Pulling fs layer
a62601c842df: Pulling fs layer
5c650a60aeb7: Pulling fs layer
aef5cc661ebc: Waiting
36d2b2b63e41: Pulling fs layer
a489f44d714e: Waiting
2768b70215c2: Waiting
af6c3d8351fe: Waiting
f9716d8d8da7: Pulling fs layer
a62601c842df: Waiting
c74a71d5316f: Pulling fs layer
fdc692ac38f2: Waiting
a1dcbf702c8d: Pulling fs layer
a0d158e32430: Pulling fs layer
36d2b2b63e41: Waiting
5c650a60aeb7: Waiting
f9716d8d8da7: Waiting
4f4fb700ef54: Pulling fs layer
c74a71d5316f: Waiting
a0d158e32430: Waiting
cde193d1d061: Pulling fs layer
a1dcbf702c8d: Waiting
268ec713655e: Pulling fs layer
1fc018b4cf42: Pulling fs layer
4f4fb700ef54: Waiting
cde193d1d061: Waiting
880dccc27f4c: Pulling fs layer
c8fda7ce0526: Pulling fs layer
1fc018b4cf42: Waiting
268ec713655e: Waiting
880dccc27f4c: Waiting
81b6d22047cc: Pulling fs layer
ff9c2257d841: Pulling fs layer
5cc2973954cb: Pulling fs layer
81b6d22047cc: Waiting
ff9c2257d841: Waiting
f4fbd5ad605f: Pulling fs layer
c8fda7ce0526: Waiting
5cc2973954cb: Waiting
eaa3921c3f24: Pulling fs layer
9dd49c111bf0: Pulling fs layer
f4fbd5ad605f: Waiting
eaa3921c3f24: Waiting
9dd49c111bf0: Waiting
950eb77734e4: Pulling fs layer
ce42b52cb61d: Pulling fs layer
950eb77734e4: Waiting
1041f89bba12: Pulling fs layer
e91ce6a10c11: Pulling fs layer
1041f89bba12: Waiting
5f26da617f35: Pulling fs layer
32719c5f028f: Pulling fs layer
e91ce6a10c11: Waiting
3a6f201d6cf7: Pulling fs layer
a3c98c924706: Pulling fs layer
32719c5f028f: Waiting
155726d31b05: Pulling fs layer
3a6f201d6cf7: Waiting
a3c98c924706: Waiting
5f26da617f35: Waiting
2af100326921: Pulling fs layer
155726d31b05: Waiting
28c27e5f1fd2: Pulling fs layer
28c27e5f1fd2: Waiting
2af100326921: Waiting
7bbb5d4707f9: Verifying Checksum
7bbb5d4707f9: Download complete
aef5cc661ebc: Verifying Checksum
aef5cc661ebc: Download complete
c2d2ddabd275: Verifying Checksum
c2d2ddabd275: Download complete
2768b70215c2: Verifying Checksum
2768b70215c2: Download complete
a489f44d714e: Download complete
e4ca9c439f39: Verifying Checksum
e4ca9c439f39: Download complete
fdc692ac38f2: Verifying Checksum
fdc692ac38f2: Download complete
a62601c842df: Verifying Checksum
a62601c842df: Download complete
af6c3d8351fe: Download complete
5c650a60aeb7: Verifying Checksum
5c650a60aeb7: Download complete
f9716d8d8da7: Download complete
36d2b2b63e41: Verifying Checksum
36d2b2b63e41: Download complete
c74a71d5316f: Verifying Checksum
c74a71d5316f: Download complete
a1dcbf702c8d: Verifying Checksum
a1dcbf702c8d: Download complete
a0d158e32430: Verifying Checksum
a0d158e32430: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
268ec713655e: Verifying Checksum
268ec713655e: Download complete
1fc018b4cf42: Verifying Checksum
1fc018b4cf42: Download complete
880dccc27f4c: Download complete
c8fda7ce0526: Verifying Checksum
c8fda7ce0526: Download complete
81b6d22047cc: Download complete
ff9c2257d841: Verifying Checksum
ff9c2257d841: Download complete
5cc2973954cb: Verifying Checksum
5cc2973954cb: Download complete
f4fbd5ad605f: Download complete
eaa3921c3f24: Verifying Checksum
eaa3921c3f24: Download complete
9dd49c111bf0: Verifying Checksum
9dd49c111bf0: Download complete
950eb77734e4: Verifying Checksum
950eb77734e4: Download complete
1041f89bba12: Verifying Checksum
1041f89bba12: Download complete
5f26da617f35: Verifying Checksum
5f26da617f35: Download complete
32719c5f028f: Verifying Checksum
32719c5f028f: Download complete
3a6f201d6cf7: Download complete
c2d2ddabd275: Pull complete
7bbb5d4707f9: Pull complete
ce42b52cb61d: Verifying Checksum
ce42b52cb61d: Download complete
155726d31b05: Download complete
a3c98c924706: Verifying Checksum
a3c98c924706: Download complete
2af100326921: Verifying Checksum
2af100326921: Download complete
28c27e5f1fd2: Verifying Checksum
28c27e5f1fd2: Download complete
e91ce6a10c11: Verifying Checksum
e91ce6a10c11: Download complete
e4ca9c439f39: Pull complete
aef5cc661ebc: Pull complete
2768b70215c2: Pull complete
a489f44d714e: Pull complete
fdc692ac38f2: Pull complete
af6c3d8351fe: Pull complete
a62601c842df: Pull complete
5c650a60aeb7: Pull complete
36d2b2b63e41: Pull complete
f9716d8d8da7: Pull complete
c74a71d5316f: Pull complete
a1dcbf702c8d: Pull complete
a0d158e32430: Pull complete
4f4fb700ef54: Pull complete
cde193d1d061: Pull complete
268ec713655e: Pull complete
1fc018b4cf42: Pull complete
880dccc27f4c: Pull complete
c8fda7ce0526: Pull complete
81b6d22047cc: Pull complete
ff9c2257d841: Pull complete
5cc2973954cb: Pull complete
f4fbd5ad605f: Pull complete
eaa3921c3f24: Pull complete
9dd49c111bf0: Pull complete
950eb77734e4: Pull complete
ce42b52cb61d: Pull complete
1041f89bba12: Pull complete
e91ce6a10c11: Pull complete
5f26da617f35: Pull complete
32719c5f028f: Pull complete
3a6f201d6cf7: Pull complete
a3c98c924706: Pull complete
155726d31b05: Pull complete
2af100326921: Pull complete
28c27e5f1fd2: Pull complete
Digest: sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299
Status: Downloaded newer image for ocaml/opam@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299
2026-03-17 12:01.46 ---> using "a466eae14070aec815f5a6ffa3db347a0e358a5fb79fdc6b3b6116aa3b4206b7" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 12:01.46 ---> using "de8e3509b0887e428166ac0426de011b77defbed7fbffae35f3f6234dd304a96" 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 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-17 12:01.46 ---> using "07eeae27e857ac1a894a10ea873016463354dc0e35513a66fe1a537e374e6658" 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.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=arch os-version=20260308.0.497099
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# 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-17 12:01.46 ---> using "49e4f6621d764b0f376d2b8c1568a083f0a8e84498dd7ab03dbbec1c427bfe38" 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/"))
2026-03-17 12:01.46 ---> using "30067455dfbbca5df814db79ab3e8982ea7f7bf02bf20edfc7c229a0a1ed8cdd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 12:01.47 ---> using "52a3c3119f93e1f4e1ecd15cfdc0b0060d83bb2307a8cbe97109276e52212254" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 12:01.47 ---> using "eb204ea1d62b91ea3840f128c7f23892ae4214fe1ba3d8e84ca942a13677592a" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2026-03-17 12:01.47 ---> using "092a3eacc3edb756f309e8371a41febc489250b11e4945a49f1e86311fbf0811" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt_glib.1.1.0 1.1.0"))
lwt_glib is now pinned to version 1.1.0
2026-03-17 12:01.47 ---> using "0284af93d9bf17a2b6498aace2df1a40e80a6341440e102abe8c91d5bf3fd1b0" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt_glib.1.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 \"\\\"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_glib.1.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"))
lwt_glib.1.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
  ∗ base-bytes        base                      [required by ocplib-endian]
  ∗ conf-glib-2       1                         [required by lwt_glib]
  ∗ conf-pkg-config   4                         [required by lwt_glib]
  ∗ cppo              1.8.0                     [required by lwt]
  ∗ csexp             1.5.2                     [required by dune-configurator]
  ∗ dune              3.21.1                    [required by lwt]
  ∗ dune-configurator 3.21.1                    [required by lwt]
  ∗ jbuilder          1.0+beta20.2 (deprecated) [required by lwt_glib]
  ∗ lwt               5.9.2                     [required by lwt_glib]
  ∗ lwt_glib          1.1.0 (pinned)
  ∗ ocamlfind         1.9.8                     [required by base-bytes]
  ∗ ocplib-endian     1.2                       [required by lwt]

The following system packages will first need to be installed:
    pkgconf

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
  2. Display the recommended pacman command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/sbin/sudo "pacman" "-Su" "--noconfirm" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
- 
- Package (1)   New Version  Net Change  Download Size
- 
- core/pkgconf  2.5.1-1        0.20 MiB       0.07 MiB
- 
- Total Download Size:   0.07 MiB
- Total Installed Size:  0.20 MiB
- 
- :: Proceed with installation? [Y/n] 
- :: Retrieving packages...
-  pkgconf-2.5.1-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing pkgconf...
- :: Running post-transaction hooks...
- (1/1) Arming ConditionNeedsUpdate...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved cppo.1.8.0  (cached)
∗ installed conf-pkg-config.4
⬇ retrieved csexp.1.5.2  (cached)
∗ installed conf-glib-2.1
⬇ retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
⬇ retrieved jbuilder.1.0+beta20.2  (cached)
⬇ retrieved lwt.5.9.2  (cached)
⬇ retrieved lwt_glib.1.1.0  (cached)
⬇ retrieved ocamlfind.1.9.8  (cached)
⬇ retrieved ocplib-endian.1.2  (cached)
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed jbuilder.1.0+beta20.2
∗ installed dune.3.21.1
∗ installed csexp.1.5.2
∗ installed cppo.1.8.0
∗ installed ocplib-endian.1.2
∗ installed dune-configurator.3.21.1
∗ installed lwt.5.9.2
∗ installed lwt_glib.1.1.0
Done.

<><> jbuilder.1.0+beta20.2 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 12:01.54 ---> saved as "0ee6a330142b3161f19712932f516cf33568a526af5227dc484bc9f032b4a94f"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test lwt_glib.1.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
  ↻ lwt_glib 1.1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⊘ removed   lwt_glib.1.1.0
∗ installed lwt_glib.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 12:01.59 ---> saved as "131c2c8a80c8cb4d07c2c8fc2f46d9475c3716862483ad2e57864be7646c0826"

/home/opam: (run (shell  "opam reinstall --with-test --verbose lwt_glib.1.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 \"\\\"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_glib.1.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"))
The following actions will be performed:
=== recompile 1 package
  ↻ lwt_glib 1.1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [lwt_glib: jbuilder build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "jbuilder" "build" "-p" "lwt_glib" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0)
-        ocaml (internal)
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 3, characters 14-37:
- 3 |   Hashtbl.add Toploop.directive_table "require" (Toploop.Directive_string ignore);
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 4, characters 14-37:
- 4 |   Hashtbl.add Toploop.directive_table "use" (Toploop.Directive_string (fun _ ->
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 6, characters 14-37:
- 6 |   Hashtbl.add Toploop.directive_table "use_mod" (Toploop.Directive_string (fun _ ->
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
-        ocaml (internal)
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 3, characters 14-37:
- 3 |   Hashtbl.add Toploop.directive_table "require" (Toploop.Directive_string ignore);
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 4, characters 14-37:
- 4 |   Hashtbl.add Toploop.directive_table "use" (Toploop.Directive_string (fun _ ->
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 6, characters 14-37:
- 6 |   Hashtbl.add Toploop.directive_table "use_mod" (Toploop.Directive_string (fun _ ->
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
-       ocamlc src/glib/config/.discover.eobjs/discover.{cmi,cmo,cmt}
- File "src/glib/config/discover.ml", line 15, characters 8-29:
- 15 |     try Pervasives.input_line input_channel
-              ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
-       ocamlc src/glib/.lwt_glib.objs/lwt_glib.{cmo,cmt}
- File "src/glib/lwt_glib.ml", line 27, characters 42-59:
- 27 |   | State_glib_into_lwt of (unit -> unit) Lwt_sequence.node * (unit -> unit) Lwt_sequence.node
-                                                ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 27, characters 77-94:
- 27 |   | State_glib_into_lwt of (unit -> unit) Lwt_sequence.node * (unit -> unit) Lwt_sequence.node
-                                                                                   ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 86, characters 14-28:
- 86 |       ignore (Lwt_main.yield ())
-                    ^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.yield
- Use Lwt.pause instead
- File "src/glib/lwt_glib.ml", line 111, characters 35-53:
- 111 |       state := State_glib_into_lwt(Lwt_sequence.add_l enter Lwt_main.enter_iter_hooks,
-                                          ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 111, characters 60-85:
- 111 |       state := State_glib_into_lwt(Lwt_sequence.add_l enter Lwt_main.enter_iter_hooks,
-                                                                   ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.enter_iter_hooks
-  Use module Lwt_main.Enter_iter_hooks.
- File "src/glib/lwt_glib.ml", line 112, characters 35-53:
- 112 |                                    Lwt_sequence.add_l leave Lwt_main.leave_iter_hooks)
-                                          ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 112, characters 60-85:
- 112 |                                    Lwt_sequence.add_l leave Lwt_main.leave_iter_hooks)
-                                                                   ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.leave_iter_hooks
-  Use module Lwt_main.Leave_iter_hooks.
- File "src/glib/lwt_glib.ml", line 124, characters 4-23:
- 124 |     Lwt_sequence.remove node_enter;
-           ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 125, characters 4-23:
- 125 |     Lwt_sequence.remove node_leave;
-           ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
-     ocamlopt src/glib/config/.discover.eobjs/discover.{cmx,o}
- File "src/glib/config/discover.ml", line 15, characters 8-29:
- 15 |     try Pervasives.input_line input_channel
-              ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
-     ocamlopt src/glib/.lwt_glib.objs/lwt_glib.{cmx,o}
- File "src/glib/lwt_glib.ml", line 27, characters 42-59:
- 27 |   | State_glib_into_lwt of (unit -> unit) Lwt_sequence.node * (unit -> unit) Lwt_sequence.node
-                                                ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 27, characters 77-94:
- 27 |   | State_glib_into_lwt of (unit -> unit) Lwt_sequence.node * (unit -> unit) Lwt_sequence.node
-                                                                                   ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 86, characters 14-28:
- 86 |       ignore (Lwt_main.yield ())
-                    ^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.yield
- Use Lwt.pause instead
- File "src/glib/lwt_glib.ml", line 111, characters 35-53:
- 111 |       state := State_glib_into_lwt(Lwt_sequence.add_l enter Lwt_main.enter_iter_hooks,
-                                          ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 111, characters 60-85:
- 111 |       state := State_glib_into_lwt(Lwt_sequence.add_l enter Lwt_main.enter_iter_hooks,
-                                                                   ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.enter_iter_hooks
-  Use module Lwt_main.Enter_iter_hooks.
- File "src/glib/lwt_glib.ml", line 112, characters 35-53:
- 112 |                                    Lwt_sequence.add_l leave Lwt_main.leave_iter_hooks)
-                                          ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 112, characters 60-85:
- 112 |                                    Lwt_sequence.add_l leave Lwt_main.leave_iter_hooks)
-                                                                   ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.leave_iter_hooks
-  Use module Lwt_main.Leave_iter_hooks.
- File "src/glib/lwt_glib.ml", line 124, characters 4-23:
- 124 |     Lwt_sequence.remove node_enter;
-           ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 125, characters 4-23:
- 125 |     Lwt_sequence.remove node_leave;
-           ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
-  Use package lwt-dllist. See
-    https://github.com/mirage/lwt-dllist
Processing  2/4: [lwt_glib: jbuilder runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "jbuilder" "runtest" "-p" "lwt_glib" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0)
-        ocaml (internal)
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 3, characters 14-37:
- 3 |   Hashtbl.add Toploop.directive_table "require" (Toploop.Directive_string ignore);
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 4, characters 14-37:
- 4 |   Hashtbl.add Toploop.directive_table "use" (Toploop.Directive_string (fun _ ->
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 6, characters 14-37:
- 6 |   Hashtbl.add Toploop.directive_table "use_mod" (Toploop.Directive_string (fun _ ->
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
-        ocaml (internal)
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 3, characters 14-37:
- 3 |   Hashtbl.add Toploop.directive_table "require" (Toploop.Directive_string ignore);
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 4, characters 14-37:
- 4 |   Hashtbl.add Toploop.directive_table "use" (Toploop.Directive_string (fun _ ->
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 6, characters 14-37:
- 6 |   Hashtbl.add Toploop.directive_table "use_mod" (Toploop.Directive_string (fun _ ->
-                   ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
λ compiled  lwt_glib.1.1.0
⊘ removed   lwt_glib.1.1.0
∗ installed lwt_glib.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 12:02.03 ---> saved as "dfeb4e380b275904acfb3a934031b4153acce872340725223b9fd66028393d88"
Job succeeded
2026-03-17 12:02.13: Job succeeded