(not at the head of any monitored branch or PR)
2025-09-04 13:54.58: New job: test dune-action-plugin.3.20.2, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28437/head (c56e58d25e43ce7dd35f9942ad32b42e22d608c9)
                              on debian-12-ocaml-4.14/arm32v7

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28437/head" && git reset --hard c56e58d2
git fetch origin master
git merge --no-edit 119d5aa5727e8401fbd044e77eca7ecb183f073a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:813853a7b1caa00db507bcd2afc5f6cb0ca36d4145d1706d3abf1e2a8826ad13
SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ]
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 dune-action-plugin.3.20.2 3.20.2
RUN opam reinstall dune-action-plugin.3.20.2; \
    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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune-action-plugin.3.20.2' && 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 dune-action-plugin.3.20.2) || true
RUN opam reinstall --with-test --verbose dune-action-plugin.3.20.2; \
    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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune-action-plugin.3.20.2' && 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-09-04 13:54.58: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:813853a7b1caa00db507bcd2afc5f6cb0ca36d4145d1706d3abf1e2a8826ad13-dune-action-plugin.3.20.2-c56e58d25e43ce7dd35f9942ad32b42e22d608c9"
2025-09-04 13:54.58: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:813853a7b1caa00db507bcd2afc5f6cb0ca36d4145d1706d3abf1e2a8826ad13)
 (shell /usr/bin/linux32 /bin/sh -c)
 (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 dune-action-plugin.3.20.2 3.20.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune-action-plugin.3.20.2;\
             \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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune-action-plugin.3.20.2' && 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 dune-action-plugin.3.20.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose dune-action-plugin.3.20.2;\
             \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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune-action-plugin.3.20.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-09-04 13:54.58: Connecting to build cluster…
2025-09-04 13:54.58: Waiting for resource in pool OCluster
2025-09-04 13:55.10: Waiting for worker…
2025-09-04 13:55.12: Got resource from pool OCluster
Building on kydoime.caelum.ci.dev
HEAD is now at 51c6da8e05 Merge commit 'c56e58d25e43ce7dd35f9942ad32b42e22d608c9'
HEAD is now at 119d5aa572 Merge pull request #28429 from toots/opam-publish-liquidsoap.2.4.0
Merge made by the 'ort' strategy.
 packages/chrome-trace/chrome-trace.3.20.2/opam     | 41 ++++++++++++
 .../dune-action-plugin.3.20.2/opam                 | 54 ++++++++++++++++
 .../dune-build-info/dune-build-info.3.20.2/opam    | 47 ++++++++++++++
 .../dune-configurator.3.20.2/opam                  | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.20.2/opam           | 44 +++++++++++++
 .../dune-private-libs.3.20.2/opam                  | 52 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.2/opam     | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.20.2/opam             | 46 ++++++++++++++
 packages/dune-site/dune-site.3.20.2/opam           | 39 ++++++++++++
 packages/dune/dune.3.20.2/opam                     | 74 ++++++++++++++++++++++
 packages/dyn/dyn.3.20.2/opam                       | 42 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.20.2/opam         | 45 +++++++++++++
 packages/ordering/ordering.3.20.2/opam             | 40 ++++++++++++
 packages/stdune/stdune.3.20.2/opam                 | 46 ++++++++++++++
 packages/xdg/xdg.3.20.2/opam                       | 41 ++++++++++++
 15 files changed, 705 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.20.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.20.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.20.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.20.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.20.2/opam
 create mode 100644 packages/dune-site/dune-site.3.20.2/opam
 create mode 100644 packages/dune/dune.3.20.2/opam
 create mode 100644 packages/dyn/dyn.3.20.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.2/opam
 create mode 100644 packages/ordering/ordering.3.20.2/opam
 create mode 100644 packages/stdune/stdune.3.20.2/opam
 create mode 100644 packages/xdg/xdg.3.20.2/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:813853a7b1caa00db507bcd2afc5f6cb0ca36d4145d1706d3abf1e2a8826ad13)
2025-09-04 13:55.16 ---> using "317fb764247a478bb617b5450c7480394305042eccd5f2300587b8cee46db591" from cache

/: (shell /usr/bin/linux32 /bin/sh -c)

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-09-04 13:55.16 ---> using "ad4da3ab9079d8c0f13c9020ccc5d5e7c5948b4a24592039d0c4dc7dece391d7" 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.

Continue? [y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-09-04 13:55.16 ---> using "2ac5729de60d602ab8f28d0b6bc7e6f579a37d0605f63e4120ff8ce0972d1173" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=arm32 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 79
# 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-09-04 13:55.16 ---> using "bc4f8d3b94d19ebf782f12e271b644708674f39c17460dfdbc41891121e35c14" 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/"))
2025-09-04 13:55.16 ---> using "d76e7957ed84a0d1b44ae56d7a9379732dbfc4a606d1f824b98cd186cc2a046e" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-09-04 13:55.27 ---> saved as "9dab4f94e4fa63380baaabcbc395252f6e13a50ccb21efa23c0b25f0a86fdcf0"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-09-04 13:56.09 ---> saved as "631efdd1b6a3b844e2b56572719221f920d499d5da0f5f9e5fb3a042c02cf74d"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main armhf Packages [258 kB]
- Fetched 361 kB in 0s (784 kB/s)
- Reading package lists...
- 
2025-09-04 13:56.11 ---> saved as "7c6810dd741ebd61a0ab3695e61d4e8001b1e8454dfbf88bcd1670355c3b4cf4"

/home/opam: (run (shell "opam pin add -k version -yn dune-action-plugin.3.20.2 3.20.2"))
dune-action-plugin is now pinned to version 3.20.2
2025-09-04 13:56.12 ---> saved as "c1a603463f2ff88f79665e78e307902520bd78529c92d4c179ac7c8ffa299e32"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune-action-plugin.3.20.2;\
                        \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 \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune-action-plugin.3.20.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune-action-plugin.3.20.2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 12 packages
  - install csexp              1.5.2           [required by dune-action-plugin]
  - install dune               3.20.2          [required by dune-action-plugin]
  - install dune-action-plugin 3.20.2 (pinned)
  - install dune-glob          3.20.2          [required by dune-action-plugin]
  - install dune-private-libs  3.20.2          [required by dune-action-plugin]
  - install dune-rpc           3.20.2          [required by dune-action-plugin]
  - install dyn                3.20.2          [required by dune-glob, dune-rpc]
  - install ocamlc-loc         3.20.2          [required by dune-rpc]
  - install ordering           3.20.2          [required by dune-glob, dune-rpc]
  - install pp                 2.0.0           [required by dune-rpc]
  - install stdune             3.20.2          [required by dune-action-plugin]
  - install xdg                3.20.2          [required by dune-rpc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.20.2, dune-action-plugin.3.20.2, dune-glob.3.20.2, dune-private-libs.3.20.2, dune-rpc.3.20.2, dyn.3.20.2, ocamlc-loc.3.20.2, ordering.3.20.2, stdune.3.20.2, xdg.3.20.2  (cached)
-> retrieved pp.2.0.0  (cached)
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed pp.2.0.0
-> installed xdg.3.20.2
-> installed ordering.3.20.2
-> installed dyn.3.20.2
-> installed ocamlc-loc.3.20.2
-> installed stdune.3.20.2
-> installed dune-private-libs.3.20.2
-> installed dune-rpc.3.20.2
-> installed dune-glob.3.20.2
-> installed dune-action-plugin.3.20.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 13:59.31 ---> saved as "01a8ac92d444cbe4a3fbe044f5cdc1dbcf5f698d0f5f13948de8645099a5dc55"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dune-action-plugin.3.20.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dune-action-plugin  3.20.2 (pinned)
=== install 25 packages
  - install   base                v0.16.4         [required by ppx_expect]
  - install   dune-configurator   3.20.2          [required by base]
  - install   jane-street-headers v0.16.0         [required by time_now]
  - install   jst-config          v0.16.0         [required by time_now]
  - install   ocaml-compiler-libs v0.12.4         [required by ppxlib]
  - install   ppx_assert          v0.16.0         [required by jst-config]
  - install   ppx_base            v0.16.0         [required by time_now]
  - install   ppx_cold            v0.16.0         [required by ppx_base]
  - install   ppx_compare         v0.16.0         [required by ppx_base]
  - install   ppx_derivers        1.2.1           [required by ppxlib]
  - install   ppx_enumerate       v0.16.0         [required by ppx_base]
  - install   ppx_expect          v0.16.1         [required by dune-action-plugin]
  - install   ppx_globalize       v0.16.0         [required by ppx_base]
  - install   ppx_hash            v0.16.0         [required by ppx_base]
  - install   ppx_here            v0.16.0         [required by ppx_expect]
  - install   ppx_inline_test     v0.16.1         [required by ppx_expect]
  - install   ppx_optcomp         v0.16.0         [required by time_now]
  - install   ppx_sexp_conv       v0.16.0         [required by ppx_base]
  - install   ppxlib              0.35.0          [required by ppx_expect]
  - install   re                  1.13.2          [required by ppx_expect]
  - install   seq                 base            [required by re]
  - install   sexplib0            v0.16.0         [required by base]
  - install   stdio               v0.16.0         [required by ppx_expect]
  - install   stdlib-shims        0.3.0           [required by ppxlib]
  - install   time_now            v0.16.0         [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4  (https://opam.ocaml.org/cache)
-> retrieved dune-action-plugin.3.20.2, dune-configurator.3.20.2  (https://github.com/ocaml/dune/releases/download/3.20.2/dune-3.20.2.tbz)
-> retrieved jane-street-headers.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved ppx_assert.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_expect.v0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.16.0  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_hash.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.16.0  (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved ppx_inline_test.v0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.16.0  (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.20.2
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.13.2  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.16.0  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> removed   dune-action-plugin.3.20.2
-> installed sexplib0.v0.16.0
-> installed re.1.13.2
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.1
-> installed dune-action-plugin.3.20.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 14:00.33 ---> saved as "c3c03f4a6251c4b3e1f0195e88711d595f970f05171b6c01e9f607a4eb378377"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dune-action-plugin.3.20.2;\
                        \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 \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune-action-plugin.3.20.2' && 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
  - recompile dune-action-plugin 3.20.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [dune-action-plugin: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "-rf" "vendor/csexp" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dune-action-plugin.3.20.2)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "-rf" "vendor/pp" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dune-action-plugin.3.20.2)
Processing  2/4: [dune-action-plugin: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dune-action-plugin" "-j" "79" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dune-action-plugin.3.20.2)
-> compiled  dune-action-plugin.3.20.2
-> removed   dune-action-plugin.3.20.2
-> installed dune-action-plugin.3.20.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 14:00.41 ---> saved as "21ed6e2d46a15a352708240e79e4336127bb2f20cd80e57c5037e88befa4fc17"
Job succeeded
2025-09-04 14:00.46: Job succeeded