(not at the head of any monitored branch or PR)
2025-05-30 12:58.36: New job: test ppx_marshal_ext.0.2.0, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27964/head (5c9a2728e7d2b266922147072939cfcd1b8ac827)
                              on archlinux-ocaml-5.3/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27964/head" && git reset --hard 5c9a2728
git fetch origin master
git merge --no-edit edaf2946e3454afde810eb17e5013eb7b2d138e3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.3@sha256:6ae91edf9905fd621b17745564a5613a16f232132bad4faf4d3aa31062679a4e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 ppx_marshal_ext.0.2.0 0.2.0
RUN opam reinstall ppx_marshal_ext.0.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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_marshal_ext.0.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 ppx_marshal_ext.0.2.0) || true
RUN opam reinstall --with-test --verbose ppx_marshal_ext.0.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 "\"archlinux\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_marshal_ext.0.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-05-30 12:58.36: Using cache hint "ocaml/opam:archlinux-ocaml-5.3@sha256:6ae91edf9905fd621b17745564a5613a16f232132bad4faf4d3aa31062679a4e-ppx_marshal_ext.0.2.0-5c9a2728e7d2b266922147072939cfcd1b8ac827"
2025-05-30 12:58.36: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.3@sha256:6ae91edf9905fd621b17745564a5613a16f232132bad4faf4d3aa31062679a4e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 ppx_marshal_ext.0.2.0 0.2.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppx_marshal_ext.0.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 \"\\\"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\" != 'ppx_marshal_ext.0.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 ppx_marshal_ext.0.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_marshal_ext.0.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 \"\\\"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\" != 'ppx_marshal_ext.0.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-05-30 12:58.36: Waiting for resource in pool OCluster
2025-05-30 13:56.00: Waiting for worker…
2025-05-30 13:57.27: Got resource from pool OCluster
Building on x86-bm-c8.sw.ocaml.org
All commits already cached
HEAD is now at edaf2946e3 Merge pull request #27961 from hannesm/fix-dns-cli
Updating edaf2946e3..5c9a2728e7
Fast-forward
 packages/gendarme-json/gendarme-json.0.2.0/opam    | 37 +++++++++++++++++++
 packages/gendarme-yaml/gendarme-yaml.0.2.0/opam    | 37 +++++++++++++++++++
 packages/gendarme/gendarme.0.2.0/opam              | 36 +++++++++++++++++++
 packages/ppx_marshal/ppx_marshal.0.2.0/opam        | 42 ++++++++++++++++++++++
 .../ppx_marshal_ext/ppx_marshal_ext.0.2.0/opam     | 39 ++++++++++++++++++++
 5 files changed, 191 insertions(+)
 create mode 100644 packages/gendarme-json/gendarme-json.0.2.0/opam
 create mode 100644 packages/gendarme-yaml/gendarme-yaml.0.2.0/opam
 create mode 100644 packages/gendarme/gendarme.0.2.0/opam
 create mode 100644 packages/ppx_marshal/ppx_marshal.0.2.0/opam
 create mode 100644 packages/ppx_marshal_ext/ppx_marshal_ext.0.2.0/opam

(from ocaml/opam:archlinux-ocaml-5.3@sha256:6ae91edf9905fd621b17745564a5613a16f232132bad4faf4d3aa31062679a4e)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.3@sha256:6ae91edf9905fd621b17745564a5613a16f232132bad4faf4d3aa31062679a4e' locally
docker.io/ocaml/opam@sha256:6ae91edf9905fd621b17745564a5613a16f232132bad4faf4d3aa31062679a4e: Pulling from ocaml/opam
6e75e95168f4: Pulling fs layer
6e75e95168f4: Verifying Checksum
6e75e95168f4: Download complete
6e75e95168f4: Pull complete
Digest: sha256:6ae91edf9905fd621b17745564a5613a16f232132bad4faf4d3aa31062679a4e
Status: Downloaded newer image for ocaml/opam@sha256:6ae91edf9905fd621b17745564a5613a16f232132bad4faf4d3aa31062679a4e
2025-05-30 13:59.48 ---> saved as "fd4bd5ccfa8fd2dd6ac10a1f3fad714df9bc9ce1dcfbc4051ffd012b4216128e"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-05-30 13:59.48 ---> saved as "cf434139acd636ef587111825b3fdb62c1f8edcd0e4efb9deb650d8a1d7a6a46"

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-05-30 14:00.22 ---> saved as "2d66601b87e1a2af9ea7403e16a6b07e23d38b0c88b695a28374d99d4c69b935"

/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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=arch os-version=20250518.0.352066
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 31
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.3
# invariant            ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-05-30 14:00.23 ---> saved as "7ff48ab00eb2d5bbf5b850248cd321fdc2f74804c17293e1e9c814549abd27df"

/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-05-30 14:00.30 ---> saved as "4e999c14629efc3c233ad982ec3bdb9a27a6fb3ddef33ff572795269c5a85f85"

/home/opam: (copy (src .) (dst opam-repository/))
2025-05-30 14:00.36 ---> saved as "886a59c6b0c0a2d437e20bb4ac3b13ba3d31a03f00471171a414ee7ff4ad2cc7"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-05-30 14:01.01 ---> saved as "b33dbb4dc2cca813eeb36d12205debb035841cb42e3a3b1b21ad4fb88d3e0e5e"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2025-05-30 14:01.01 ---> saved as "128a8b3c03b18c56ce3e46561f17f1753deadfeda9dd0595b47f3c8dc65dc5c7"

/home/opam: (run (shell "opam pin add -k version -yn ppx_marshal_ext.0.2.0 0.2.0"))
ppx_marshal_ext is now pinned to version 0.2.0
2025-05-30 14:01.02 ---> saved as "b657c48c46fb51bd4890879ec3fe5f8ddbd826179ccdb06e4c7032a52cde947f"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppx_marshal_ext.0.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 \"\\\"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\" != 'ppx_marshal_ext.0.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"))
ppx_marshal_ext.0.2.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 8 packages
  ∗ dune                3.19.0         [required by ppx_marshal_ext]
  ∗ gendarme            0.2.0          [required by ppx_marshal_ext]
  ∗ ocaml-compiler-libs v0.17.0        [required by ppxlib]
  ∗ ppx_derivers        1.2.1          [required by ppxlib]
  ∗ ppx_marshal_ext     0.2.0 (pinned)
  ∗ ppxlib              0.35.0         [required by ppx_marshal_ext]
  ∗ sexplib0            v0.17.0        [required by ppxlib]
  ∗ stdlib-shims        0.3.0          [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved dune.3.19.0  (cached)
⬇ retrieved gendarme.0.2.0, ppx_marshal_ext.0.2.0  (cached)
⬇ retrieved ocaml-compiler-libs.v0.17.0  (cached)
⬇ retrieved ppx_derivers.1.2.1  (cached)
⬇ retrieved ppxlib.0.35.0  (cached)
⬇ retrieved sexplib0.v0.17.0  (cached)
⬇ retrieved stdlib-shims.0.3.0  (cached)
∗ installed dune.3.19.0
∗ installed ppx_derivers.1.2.1
∗ installed gendarme.0.2.0
∗ installed stdlib-shims.0.3.0
∗ installed sexplib0.v0.17.0
∗ installed ocaml-compiler-libs.v0.17.0
∗ installed ppxlib.0.35.0
∗ installed ppx_marshal_ext.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-30 14:02.03 ---> saved as "06c5b3d6df93ee9472475bf8c7697536ffffc8657f84f3bd261c5f1f0a42f828"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⊘ removed   ppx_marshal_ext.0.2.0
∗ installed ppx_marshal_ext.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-30 14:02.19 ---> saved as "1d38a9379daea0a69b46572d16d7ec77437702681960e6a9c749c3eb9c1ed96e"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ppx_marshal_ext: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_marshal_ext" "-j" "31" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/ppx_marshal_ext.0.2.0)
λ compiled  ppx_marshal_ext.0.2.0
⊘ removed   ppx_marshal_ext.0.2.0
∗ installed ppx_marshal_ext.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-30 14:02.32 ---> saved as "7c5b4b99ec0f4f33062ce957f04700f383b6663b2bc48ab40e64de83acb19e61"
Job succeeded
2025-05-30 14:02.37: Job succeeded