- github
- ocaml
- opam-repository
- a95df9
- extras,opam-2.1-ocaml-4.14,dune-action-plugin.3.21.0~alpha3,tests
(not at the head of any monitored branch or PR)
2025-12-11 02:04.00: New job: test dune-action-plugin.3.21.0~alpha3, using opam 2.1
from https://github.com/ocaml/opam-repository.git#refs/pull/29070/head (a95df9014bc79103fde668cf2adbe6680fd2f9cf)
on debian-13-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/29070/head" && git reset --hard a95df901
git fetch origin master
git merge --no-edit 810e1f14b7fa6411c66a3549f4c2aff47c52fc36
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /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.21.0~alpha3 3.21.0~alpha3
RUN opam reinstall dune-action-plugin.3.21.0~alpha3; \
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-13\""; 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.21.0~alpha3' && 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.21.0~alpha3) || true
RUN opam reinstall --with-test --verbose dune-action-plugin.3.21.0~alpha3; \
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-13\""; 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.21.0~alpha3' && 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-12-11 02:04.00: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune-action-plugin.3.21.0~alpha3-a95df9014bc79103fde668cf2adbe6680fd2f9cf"
2025-12-11 02:04.00: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.1 /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.21.0~alpha3 3.21.0~alpha3"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-action-plugin.3.21.0~alpha3;\
\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-13\\\"\"; 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.21.0~alpha3' && 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.21.0~alpha3) || true"))
(run (shell "opam reinstall --with-test --verbose dune-action-plugin.3.21.0~alpha3;\
\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-13\\\"\"; 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.21.0~alpha3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-11 02:04.00: Waiting for resource in pool OCluster
2025-12-11 02:32.13: Waiting for worker…
2025-12-11 02:35.42: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 810e1f14b7 Merge pull request #29066 from gares/release-elpi-v3.4.4
Updating 810e1f14b7..a95df9014b
Fast-forward
.../chrome-trace/chrome-trace.3.21.0~alpha3/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0~alpha3/opam | 54 ++++++++++++++++
.../dune-build-info.3.21.0~alpha3/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0~alpha3/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0~alpha3/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0~alpha3/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0~alpha3/opam | 39 +++++++++++
packages/dune/dune.3.21.0~alpha3/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0~alpha3/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0~alpha3/opam | 40 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0~alpha3/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0~alpha3/opam | 48 ++++++++++++++
.../top-closure/top-closure.3.21.0~alpha3/opam | 39 +++++++++++
packages/xdg/xdg.3.21.0~alpha3/opam | 41 ++++++++++++
17 files changed, 787 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha3/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha3/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha3/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha3/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha3/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha3/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam
create mode 100644 packages/dune-site/dune-site.3.21.0~alpha3/opam
create mode 100644 packages/dune/dune.3.21.0~alpha3/opam
create mode 100644 packages/dyn/dyn.3.21.0~alpha3/opam
create mode 100644 packages/fs-io/fs-io.3.21.0~alpha3/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam
create mode 100644 packages/ordering/ordering.3.21.0~alpha3/opam
create mode 100644 packages/stdune/stdune.3.21.0~alpha3/opam
create mode 100644 packages/top-closure/top-closure.3.21.0~alpha3/opam
create mode 100644 packages/xdg/xdg.3.21.0~alpha3/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
2025-12-11 02:35.49 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2025-12-11 02:35.49 ---> using "717ba260e977663e0493c8947953063e8753523ec7def1362c8e3dc627886134" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.1, 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-12-11 02:36.16 ---> saved as "11460d8ba8a033eb9f22d45a1f2a6124c4902cfc431be5b6e8df92e649f06bf4"
/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.1.6 (263921263e1f745613e2882745114b7b08f3608b)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria
# upgrade-criteria
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# 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-12-11 02:36.19 ---> saved as "32c54006a51ae1ae78ab4f4a1dd0b2472e4f0f6df2c3fba81a0bd9bb3ae32677"
/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-12-11 02:36.33 ---> saved as "98cef190b22072f5fc2a1b7c0cb9c5f6dc1ed52c27d19bf3a52eafaa5430634c"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-11 02:36.38 ---> saved as "9cce906734ed15fb15d791cf9af2f6816b88358b709f2fa3cbe97728d6a94dde"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-11 02:36.47 ---> saved as "8f60bb6409af8f5521d476b5a4807af84f9529426eb82e8bc409810799234bf7"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [82.1 kB]
- Fetched 173 kB in 0s (2454 kB/s)
- Reading package lists...
2025-12-11 02:36.49 ---> saved as "df3dc58630849c002c53aa18dcc80696fbb04546dde62f8a0e6b3289d64b0f61"
/home/opam: (run (shell "opam pin add -k version -yn dune-action-plugin.3.21.0~alpha3 3.21.0~alpha3"))
dune-action-plugin is now pinned to version 3.21.0~alpha3
2025-12-11 02:36.49 ---> saved as "c36ffd01a696f4d10a2aa3a68ee18ad039b27d2b75d27d05fb7abb7acc96a8fe"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-action-plugin.3.21.0~alpha3;\
\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-13\\\"\"; 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.21.0~alpha3' && 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.21.0~alpha3 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install dune 3.21.0~alpha3 [required by dune-action-plugin]
- install xdg 3.21.0~alpha3 [required by dune-rpc]
- install top-closure 3.21.0~alpha3 [required by stdune]
- install re 1.14.0 [required by dune-glob]
- install pp 2.0.0 [required by dune-private-libs, dune-rpc]
- install ordering 3.21.0~alpha3 [required by dune-glob, dune-rpc]
- install fs-io 3.21.0~alpha3 [required by stdune]
- install csexp 1.5.2 [required by dune-action-plugin]
- install dyn 3.21.0~alpha3 [required by dune-private-libs, dune-glob, dune-rpc]
- install stdune 3.21.0~alpha3 [required by dune-action-plugin]
- install ocamlc-loc 3.21.0~alpha3 [required by dune-rpc]
- install dune-private-libs 3.21.0~alpha3 [required by dune-action-plugin]
- install dune-glob 3.21.0~alpha3 [required by dune-action-plugin]
- install dune-rpc 3.21.0~alpha3 [required by dune-action-plugin]
- install dune-action-plugin 3.21.0~alpha3*
===== 15 to install =====
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.0~alpha3 (cached)
-> retrieved dune-action-plugin.3.21.0~alpha3 (cached)
-> retrieved dune-glob.3.21.0~alpha3 (cached)
-> retrieved dune-private-libs.3.21.0~alpha3 (cached)
-> retrieved dune-rpc.3.21.0~alpha3 (cached)
-> retrieved dyn.3.21.0~alpha3 (cached)
-> retrieved fs-io.3.21.0~alpha3 (cached)
-> retrieved ocamlc-loc.3.21.0~alpha3 (cached)
-> retrieved ordering.3.21.0~alpha3 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved stdune.3.21.0~alpha3 (cached)
-> retrieved top-closure.3.21.0~alpha3 (cached)
-> retrieved xdg.3.21.0~alpha3 (cached)
-> installed dune.3.21.0~alpha3
-> installed csexp.1.5.2
-> installed fs-io.3.21.0~alpha3
-> installed pp.2.0.0
-> installed re.1.14.0
-> installed top-closure.3.21.0~alpha3
-> installed ordering.3.21.0~alpha3
-> installed xdg.3.21.0~alpha3
-> installed dyn.3.21.0~alpha3
-> installed ocamlc-loc.3.21.0~alpha3
-> installed stdune.3.21.0~alpha3
-> installed dune-private-libs.3.21.0~alpha3
-> installed dune-glob.3.21.0~alpha3
-> installed dune-rpc.3.21.0~alpha3
-> installed dune-action-plugin.3.21.0~alpha3
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-11 02:37.29 ---> saved as "cd07e1e7f1be4811c0cb9d64a3a8a3e4e70d394a82bd254baa0846c1da88bc2b"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dune-action-plugin.3.21.0~alpha3) || true"))
The following actions will be performed:
- install ppx_derivers 1.2.1 [required by ppxlib]
- install dune-configurator 3.21.0~alpha3 [required by base]
- install jane-street-headers v0.16.0 [required by time_now]
- install sexplib0 v0.16.0 [required by base]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install base v0.16.4 [required by ppx_expect]
- install ppxlib 0.35.0 [required by ppx_expect]
- install stdio v0.16.0 [required by ppx_expect]
- install ppx_sexp_conv v0.16.0 [required by ppx_base]
- install ppx_here v0.16.0 [required by ppx_expect]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_base]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_optcomp v0.16.0 [required by time_now]
- install ppx_hash v0.16.0 [required by ppx_base]
- install ppx_assert v0.16.0 [required by jst-config]
- install ppx_base v0.16.0 [required by time_now]
- install jst-config v0.16.0 [required by time_now]
- install time_now v0.16.0 [required by ppx_inline_test]
- install ppx_inline_test v0.16.1 [required by ppx_expect]
- install ppx_expect v0.16.2 [required by dune-action-plugin]
- recompile dune-action-plugin 3.21.0~alpha3*
===== 23 to install | 1 to recompile =====
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4 (https://opam.ocaml.org/cache)
-> retrieved dune-configurator.3.21.0~alpha3 (https://github.com/ocaml/dune/releases/download/3.21.0_alpha3/dune-3.21.0.alpha3.tbz)
-> retrieved jane-street-headers.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.16.0 (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved ocaml-compiler-libs.v0.12.4 (https://opam.ocaml.org/cache)
-> 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)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_expect.v0.16.2 (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.16.0 (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved ppx_hash.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.16.0 (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.21.0~alpha3
-> 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)
-> retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
-> 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 sexplib0.v0.16.0
-> removed dune-action-plugin.3.21.0~alpha3
-> installed stdlib-shims.0.3.0
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.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.2
-> installed dune-action-plugin.3.21.0~alpha3
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-11 02:38.04 ---> saved as "ff0b318491cb87ff52e229cf1696bcade5f5bd8c78960eaaa7b05b152472f396"
/home/opam: (run (shell "opam reinstall --with-test --verbose dune-action-plugin.3.21.0~alpha3;\
\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-13\\\"\"; 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.21.0~alpha3' && 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 dune-action-plugin 3.21.0~alpha3*
<><> 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.21.0~alpha3)
+ /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.21.0~alpha3)
Processing 2/4: [dune-action-plugin: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dune-action-plugin" "-j" "71" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dune-action-plugin.3.21.0~alpha3)
-> compiled dune-action-plugin.3.21.0~alpha3
-> removed dune-action-plugin.3.21.0~alpha3
-> installed dune-action-plugin.3.21.0~alpha3
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-11 02:38.16 ---> saved as "a6c6b9977774d817c317f25edbb33103875e95407eabe928a1faa21f9b8e6601"
Job succeeded
2025-12-11 02:38.21: Job succeeded