- github
- ocaml
- opam-repository
- c56e58
- compilers,4.14,dune.3.20.2,revdeps,mirage-monitoring.0.0.6
(not at the head of any monitored branch or PR)
2025-09-03 22:18.56: New job: test mirage-monitoring.0.0.6 with dune.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/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/28437/head" && git reset --hard c56e58d2
git fetch origin master
git merge --no-edit 48e6fa91c818759730429373230507f2458bffc3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:4603dfe290f76ff9a2d24e81f3f31209452440f74fe71806d899fe199d10f678
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.3.20.2 3.20.2
RUN opam reinstall dune.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.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 mirage-monitoring.0.0.6; \
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" != 'mirage-monitoring.0.0.6' && 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 mirage-monitoring.0.0.6) || true
RUN opam reinstall --with-test --verbose mirage-monitoring.0.0.6; \
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" != 'mirage-monitoring.0.0.6' && 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-03 22:18.56: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:4603dfe290f76ff9a2d24e81f3f31209452440f74fe71806d899fe199d10f678-dune.3.20.2-mirage-monitoring.0.0.6-c56e58d25e43ce7dd35f9942ad32b42e22d608c9"
2025-09-03 22:18.56: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:4603dfe290f76ff9a2d24e81f3f31209452440f74fe71806d899fe199d10f678)
(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.3.20.2 3.20.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.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.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-monitoring.0.0.6;\
\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\" != 'mirage-monitoring.0.0.6' && 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 mirage-monitoring.0.0.6) || true"))
(run (shell "opam reinstall --with-test --verbose mirage-monitoring.0.0.6;\
\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\" != 'mirage-monitoring.0.0.6' && 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-03 22:18.56: Waiting for resource in pool OCluster
2025-09-04 10:40.00: Waiting for worker…
2025-09-04 10:42.03: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 48e6fa91c8 Merge pull request #28440 from hannesm/align-git-kv-git-net-dev-repo
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:4603dfe290f76ff9a2d24e81f3f31209452440f74fe71806d899fe199d10f678)
2025-09-04 10:43.17 ---> using "77a40307c411f5d1823247ca3b8b3ea2aa56acde8c01fd84fb59cd0eebf33d78" from cache
/: (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 10:43.17 ---> using "c026694a7f8bbf828d61abaf1ba9ea717728e71cdd844e07de0a7a47bf374891" 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.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-09-04 10:43.17 ---> using "1fcdc6aa00cef1b6c13f5ac5ea17ef3b8e8ee84bdcf4cec01b64e5dcf9a8851e" 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=x86_64 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 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
2025-09-04 10:43.17 ---> using "2d46141becfbbbbbbe98c1384933b2bdb43bfeae47155579163d54a9d154d5d9" 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 10:43.17 ---> using "967ac08931cb898a3361431f42e1141490c4262301076d051ed73170eaf25424" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-09-04 10:43.18 ---> using "c94c80755ee2b6b21028e6f1b0238bb710783ad1365abe725a5560b4002bc908" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-09-04 10:43.18 ---> using "4475aed4fb3f63fb51711edc14a1550417bec1fbeeda35e50af9a14a7c56f9c2" from cache
/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 amd64 Packages [277 kB]
- Fetched 380 kB in 0s (984 kB/s)
- Reading package lists...
2025-09-04 10:43.18 ---> using "01b36b6b852c01cb468dc16f633ffec5a116bebc09b76dda91b15f4c7b50cb68" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.2 3.20.2"))
dune is now pinned to version 3.20.2
2025-09-04 10:43.18 ---> using "19c9422e2eb21e20e2287953d689ef1f5c42ccd6055b4cf8487665957d77577d" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.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.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.3.20.2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.20.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2 (cached)
-> installed dune.3.20.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 10:43.18 ---> using "b7cbbf5da597b225d6f3f7f2b6670f325ba39c8f0c1ba72b9afab4e6cc719b2c" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-monitoring.0.0.6;\
\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\" != 'mirage-monitoring.0.0.6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mirage-monitoring.0.0.6 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 45 packages
- install arp 4.0.0 [required by tcpip]
- install base-bytes base [required by ocplib-endian]
- install cmdliner 1.3.0 [required by mirage-runtime, logs, tcpip]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by tcpip]
- install cstruct-lwt 6.2.0 [required by tcpip]
- install digestif 1.3.0 [required by mirage-crypto-rng]
- install domain-name 0.4.1 [required by ipaddr]
- install dune-configurator 3.20.2 [required by lwt, mirage-crypto-rng]
- install duration 0.2.1 [required by mirage-sleep, metrics-influx, tcpip]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install ethernet 3.2.0 [required by tcpip]
- install fmt 0.11.0 [required by metrics-influx, logs, metrics, tcpip]
- install ipaddr 5.6.1 [required by mirage-runtime, tcpip]
- install ipaddr-cstruct 5.6.1 [required by tcpip]
- install logs 0.9.0 [required by mirage-monitoring]
- install lru 0.3.1 [required by tcpip]
- install lwt 5.9.2 [required by mirage-sleep, metrics-lwt, memtrace-mirage, etc.]
- install lwt-dllist 1.1.0 [required by tcpip]
- install macaddr 5.6.1 [required by tcpip]
- install macaddr-cstruct 5.6.1 [required by tcpip]
- install memtrace-mirage 0.2.1.2.3 [required by mirage-monitoring]
- install metrics 0.4.1 [required by mirage-monitoring]
- install metrics-influx 0.4.1 [required by mirage-monitoring]
- install metrics-lwt 0.4.1 [required by mirage-monitoring]
- install mirage-crypto 2.0.2 [required by mirage-crypto-rng]
- install mirage-crypto-rng 2.0.2 [required by tcpip]
- install mirage-flow 5.0.0 [required by memtrace-mirage, tcpip]
- install mirage-monitoring 0.0.6
- install mirage-mtime 5.2.0 [required by tcpip]
- install mirage-net 4.0.0 [required by tcpip]
- install mirage-ptime 5.1.0 [required by memtrace-mirage]
- install mirage-runtime 4.9.0 [required by mirage-monitoring]
- install mirage-sleep 4.1.0 [required by mirage-monitoring]
- install mtime 2.1.0 [required by mirage-mtime]
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install ocplib-endian 1.2 [required by lwt]
- install psq 0.2.1 [required by lru]
- install ptime 1.2.0 [required by memtrace-mirage]
- install randomconv 0.2.0 [required by tcpip]
- install seq base [required by psq]
- install tcpip 9.0.1 [required by mirage-monitoring]
- install topkg 1.1.0 [required by logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved arp.4.0.0 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0, cstruct-lwt.6.2.0 (cached)
-> installed csexp.1.5.2
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> installed domain-name.0.4.1
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.20.2 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved ethernet.3.2.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved ipaddr.5.6.1, ipaddr-cstruct.5.6.1, macaddr.5.6.1, macaddr-cstruct.5.6.1 (cached)
-> retrieved logs.0.9.0 (cached)
-> retrieved lru.0.3.1 (cached)
-> retrieved lwt.5.9.2 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved memtrace-mirage.0.2.1.2.3 (cached)
-> installed cmdliner.1.3.0
-> installed duration.0.2.1
-> retrieved metrics.0.4.1, metrics-influx.0.4.1, metrics-lwt.0.4.1 (cached)
-> installed macaddr.5.6.1
-> installed lwt-dllist.1.1.0
-> installed eqaf.0.10
-> retrieved mirage-crypto.2.0.2, mirage-crypto-rng.2.0.2 (cached)
-> retrieved mirage-flow.5.0.0 (cached)
-> retrieved mirage-monitoring.0.0.6 (cached)
-> retrieved mirage-mtime.5.2.0 (cached)
-> installed ipaddr.5.6.1
-> retrieved mirage-net.4.0.0 (cached)
-> retrieved mirage-ptime.5.1.0 (cached)
-> retrieved mirage-runtime.4.9.0 (cached)
-> retrieved mirage-sleep.4.1.0 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved randomconv.0.2.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved tcpip.9.0.1 (cached)
-> retrieved topkg.1.1.0 (cached)
-> installed digestif.1.3.0
-> installed dune-configurator.3.20.2
-> installed randomconv.0.2.0
-> installed psq.0.2.1
-> installed lru.0.3.1
-> installed mirage-crypto.2.0.2
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed lwt.5.9.2
-> installed mirage-sleep.4.1.0
-> installed topkg.1.1.0
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed mirage-mtime.5.2.0
-> installed mirage-ptime.5.1.0
-> installed metrics.0.4.1
-> installed cstruct.6.2.0
-> installed metrics-influx.0.4.1
-> installed macaddr-cstruct.5.6.1
-> installed cstruct-lwt.6.2.0
-> installed ipaddr-cstruct.5.6.1
-> installed mirage-flow.5.0.0
-> installed mirage-net.4.0.0
-> installed memtrace-mirage.0.2.1.2.3
-> installed logs.0.9.0
-> installed metrics-lwt.0.4.1
-> installed ethernet.3.2.0
-> installed mirage-runtime.4.9.0
-> installed mirage-crypto-rng.2.0.2
-> installed arp.4.0.0
-> installed tcpip.9.0.1
-> installed mirage-monitoring.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 10:43.42 ---> saved as "7ad29d150550fca2a402981b2eb81ec9f53763ae7c4593c93a0080fdc7a53093"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test mirage-monitoring.0.0.6) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile mirage-monitoring 0.0.6
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved mirage-monitoring.0.0.6 (https://opam.ocaml.org/cache)
-> removed mirage-monitoring.0.0.6
-> installed mirage-monitoring.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 10:43.46 ---> saved as "16f49c05073976c2d042343ff13554a25d2ac1e15ad4f3c262bb0ed0b5f2e551"
/home/opam: (run (shell "opam reinstall --with-test --verbose mirage-monitoring.0.0.6;\
\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\" != 'mirage-monitoring.0.0.6' && 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 mirage-monitoring 0.0.6
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [mirage-monitoring.0.0.6: extract]
-> retrieved mirage-monitoring.0.0.6 (cached)
Processing 2/4: [mirage-monitoring: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-monitoring" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mirage-monitoring.0.0.6)
Processing 2/4: [mirage-monitoring: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mirage-monitoring" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mirage-monitoring.0.0.6)
-> compiled mirage-monitoring.0.0.6
-> removed mirage-monitoring.0.0.6
-> installed mirage-monitoring.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-04 10:43.49 ---> saved as "83ece8a2e9e1a9ca3c7b8e4258c3e1bbcbfb27b8ab8c370e13adc7628fb4c39d"
Job succeeded
2025-09-04 10:44.11: Job succeeded