- github
- ocaml
- opam-repository
- 3e0c39
- compilers,5.4,dune.3.22.2,revdeps,moonpool.0.7
(not at the head of any monitored branch or PR)
2026-04-13 14:42.25: New job: test moonpool.0.7 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
on debian-13-ocaml-5.4/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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit ba4685aeec7b28fde6af30c7b83004704c68c86a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall moonpool.0.7; \
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" != 'moonpool.0.7' && 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 moonpool.0.7) || true
RUN opam reinstall --with-test --verbose moonpool.0.7; \
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" != 'moonpool.0.7' && 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-04-13 14:42.25: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4-dune.3.22.2-moonpool.0.7-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-13 14:42.25: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4)
(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 dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.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-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.3.22.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 moonpool.0.7;\
\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\" != 'moonpool.0.7' && 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 moonpool.0.7) || true"))
(run (shell "opam reinstall --with-test --verbose moonpool.0.7;\
\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\" != 'moonpool.0.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-13 14:42.25: Waiting for resource in pool OCluster
2026-04-13 15:24.11: Waiting for worker…
2026-04-13 15:30.28: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 94% (17654/18721)
Updating files: 95% (17785/18721)
Updating files: 96% (17973/18721)
Updating files: 97% (18160/18721)
Updating files: 98% (18347/18721)
Updating files: 99% (18534/18721)
Updating files: 100% (18721/18721)
Updating files: 100% (18721/18721), done.
HEAD is now at ba4685aeec Merge pull request #29653 from yakobowski/camlidl
Merge made by the 'ort' strategy.
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4)
2026-04-13 15:30.31 ---> using "650db199dd47c38a0926a758262f0be95fb78e2d9a79cbdc2809fa2b15683d52" 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-04-13 15:30.31 ---> using "1d82b13dae11ba0e4ae4c53498d44d66e368b802cfcb77b29900c3af7e2a1562" 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 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
2026-04-13 15:30.31 ---> using "8fc56361284f52a58bad5297203dc12518b6d67d540112c1ecc4d982140daeca" 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=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-13 15:30.31 ---> using "fe9db6e6aedfe8a888a2521b45017dcd4b4a70e85e324e4a3527adef84a23afd" 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-04-13 15:30.31 ---> using "3a79be73bc2436b5aae3b84f3727fd2fe0209a9b7334e20aac2d10fcd0f26769" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-13 15:30.32 ---> using "306e2765f803e9ac22f1023f023e8bba6e1f5296fc47a318acebb969ba1b1204" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-13 15:30.32 ---> using "9e9b4bad2baa72b9fad539bf23d04eb0f2a72097c5685706fe162459f8a36f61" 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 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 [122 kB]
- Fetched 213 kB in 0s (2049 kB/s)
- Reading package lists...
2026-04-13 15:30.32 ---> using "2fb1ac5ca6037947ba1884eb3a92b9454761e371e0b3c1955630d8faadedabed" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-13 15:30.32 ---> using "44c7d7d7595c4a41e6aab53eb1a771058e5fb0ec8e90350b08cc9f23cb3d5ed9" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.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-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.3.22.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.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:30.32 ---> using "7aefc73d6425e27bc34bfbdb99d4d7e80ada815df45ed1df4e5c28f9ea60f0d6" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall moonpool.0.7;\
\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\" != 'moonpool.0.7' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
moonpool.0.7 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install backoff 0.1.1 [required by picos, picos_std]
- install either 1.0.0 [required by moonpool]
- install moonpool 0.7
- install multicore-magic 2.3.2 [required by picos_std]
- install picos 0.5.0 [required by moonpool]
- install picos_std 0.5.0 [required by moonpool]
- install thread-local-storage 0.2 [required by moonpool]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved backoff.0.1.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved moonpool.0.7 (https://opam.ocaml.org/cache)
-> retrieved multicore-magic.2.3.2 (cached)
-> installed either.1.0.0
-> retrieved picos.0.5.0, picos_std.0.5.0 (cached)
-> installed backoff.0.1.1
-> retrieved thread-local-storage.0.2 (cached)
-> installed multicore-magic.2.3.2
-> installed thread-local-storage.0.2
-> installed picos.0.5.0
-> installed picos_std.0.5.0
-> installed moonpool.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:30.42 ---> saved as "f51d21f6d1784911b9a7b27a183a47ff58c11d232418c0d82a715d2d917d6f7c"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test moonpool.0.7) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile moonpool 0.7
=== install 19 packages
- install astring 0.8.5 [required by mdx]
- install camlp-streams 5.0.1 [required by mdx]
- install cmdliner 2.1.0 [required by mdx]
- install cppo 1.8.0 [required by mdx]
- install csexp 1.5.2 [required by mdx]
- install fmt 0.11.0 [required by mdx]
- install hmap 0.8.1 [required by moonpool]
- install logs 0.10.0 [required by mdx]
- install mdx 2.5.2 [required by moonpool]
- install mtime 2.1.0 [required by trace, trace-tef]
- install ocaml-version 4.0.4 [required by mdx]
- install ocamlbuild 0.16.1 [required by hmap]
- install ocamlfind 1.9.8 [required by hmap, mdx]
- install qcheck-core 0.91 [required by moonpool]
- install re 1.14.0 [required by mdx]
- install result 1.5 [required by mdx]
- install topkg 1.1.1 [required by hmap]
- install trace 0.9.1 [required by moonpool]
- install trace-tef 0.9.1 [required by moonpool]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved hmap.0.8.1 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.2 (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved moonpool.0.7 (https://opam.ocaml.org/cache)
-> retrieved mtime.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.4 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.4
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved result.1.5 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved trace.0.9.1, trace-tef.0.9.1 (https://opam.ocaml.org/cache)
-> installed result.1.5
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> removed moonpool.0.7
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed trace.0.9.1
-> installed logs.0.10.0
-> installed trace-tef.0.9.1
-> installed mdx.2.5.2
-> installed moonpool.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:31.55 ---> saved as "b8c006fc54d03d7edfeed1d8e1c4ba1f0c6aae2213b79b1e6860350c8ecf90ce"
/home/opam: (run (shell "opam reinstall --with-test --verbose moonpool.0.7;\
\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\" != 'moonpool.0.7' && 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 moonpool 0.7
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [moonpool.0.7: extract]
-> retrieved moonpool.0.7 (cached)
Processing 2/4: [moonpool: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "moonpool" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/moonpool.0.7)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -strict-sequence -warn-error -a+8 -w +a-4-40-42-70 -open Moonpool_private -g -bin-annot -bin-annot-occurrences -I src/core/.moonpool.objs/byte -I src/core/.moonpool.objs/public_cmi -I /home/opam/.opam/5.4/lib/backoff -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/hmap -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/picos -H /home/opam/.opam/5.4/lib/picos/__private__/picos_bootstrap -H /home/opam/.opam/5.4/lib/picos/__private__/picos_bootstrap/.public_cmi -H /home/opam/.opam/5.4/lib/picos/__private__/picos_ocaml5 -H /home/opam/.opam/5.4/lib/picos/__private__/picos_ocaml5/.public_cmi -I /home/opam/.opam/5.4/lib/thread-local-storage -I /home/opam/.opam/5.4/lib/trace/core -I src/dpool/.moonpool_dpool.objs/byte -I src/private/.moonpool_private.objs/byte -no-alias-deps -open Moonpool__ -o src/core/.moonpool.objs/byte/moonpool__Worker_loop_.cmo -c -impl src/core/worker_loop_.pp.ml)
- File "src/core/worker_loop_.ml", line 41, characters 26-29:
- Warning 34 [unused-type-declaration]: unused type arg.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -strict-sequence -warn-error -a+8 -w +a-4-40-42-70 -open Moonpool_private -g -I src/core/.moonpool.objs/byte -I src/core/.moonpool.objs/native -I src/core/.moonpool.objs/public_cmi -I /home/opam/.opam/5.4/lib/backoff -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/hmap -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/picos -I /home/opam/.opam/5.4/lib/picos/__private__/picos_bootstrap -H /home/opam/.opam/5.4/lib/picos/__private__/picos_bootstrap/.public_cmi -I /home/opam/.opam/5.4/lib/picos/__private__/picos_ocaml5 -H /home/opam/.opam/5.4/lib/picos/__private__/picos_ocaml5/.public_cmi -I /home/opam/.opam/5.4/lib/thread-local-storage -I /home/opam/.opam/5.4/lib/trace/core -I src/dpool/.moonpool_dpool.objs/byte -I src/dpool/.moonpool_dpool.objs/native -I src/private/.moonpool_private.objs/byte -I src/private/.moonpool_private.objs/native -cmi-file src/core/.moonpool.objs/byte/moonpool__Worker_loop_.cmi -no-alias-deps -open Moonpool__ -o src/core/.moonpool.objs/native/moonpool__Worker_loop_.cmx -c -impl src/core/worker_loop_.pp.ml)
- File "src/core/worker_loop_.ml", line 41, characters 26-29:
- Warning 34 [unused-type-declaration]: unused type arg.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -strict-sequence -warn-error -a+8 -w +a-4-40-42-70 -g -I test/.t_fib.eobjs/byte -I test/.t_fib.eobjs/native -I /home/opam/.opam/5.4/lib/backoff -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/hmap -I /home/opam/.opam/5.4/lib/mtime -I /home/opam/.opam/5.4/lib/mtime/clock -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/picos -I /home/opam/.opam/5.4/lib/picos/__private__/picos_bootstrap -H /home/opam/.opam/5.4/lib/picos/__private__/picos_bootstrap/.public_cmi -I /home/opam/.opam/5.4/lib/picos/__private__/picos_ocaml5 -H /home/opam/.opam/5.4/lib/picos/__private__/picos_ocaml5/.public_cmi -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/thread-local-storage -I /home/opam/.opam/5.4/lib/trace -I /home/opam/.opam/5.4/lib/trace-tef -I /home/opam/.opam/5.4/lib/trace/core -I /home/opam/.opam/5.4/lib/trace/private/util -I /home/opam/.opam/5.4/lib/trace/subscriber -H src/core/.moonpool.objs/byte -I src/core/.moonpool.objs/native -I src/core/.moonpool.objs/public_cmi -I src/dpool/.moonpool_dpool.objs/byte -I src/dpool/.moonpool_dpool.objs/native -I src/private/.moonpool_private.objs/byte -I src/private/.moonpool_private.objs/native -cmi-file test/.t_fib.eobjs/byte/dune__exe__T_props.cmi -no-alias-deps -open Dune__exe -o test/.t_fib.eobjs/native/dune__exe__T_props.cmx -c -impl test/t_props.ml)
- File "test/t_props.ml", line 16, characters 7-17:
- 16 | Q.(small_list small_int)
- ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
-
- File "test/t_props.ml", line 16, characters 18-27:
- 16 | Q.(small_list small_int)
- ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
-
- File "test/t_props.ml", line 27, characters 7-17:
- 27 | Q.(small_list small_int)
- ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
-
- File "test/t_props.ml", line 27, characters 18-27:
- 27 | Q.(small_list small_int)
- ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -strict-sequence -warn-error -a+8 -w +a-4-40-42-70 -g -I test/effect-based/.t_fib1.eobjs/byte -I test/effect-based/.t_fib1.eobjs/native -I /home/opam/.opam/5.4/lib/backoff -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/hmap -I /home/opam/.opam/5.4/lib/mtime -I /home/opam/.opam/5.4/lib/mtime/clock -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/picos -I /home/opam/.opam/5.4/lib/picos/__private__/picos_bootstrap -H /home/opam/.opam/5.4/lib/picos/__private__/picos_bootstrap/.public_cmi -I /home/opam/.opam/5.4/lib/picos/__private__/picos_ocaml5 -H /home/opam/.opam/5.4/lib/picos/__private__/picos_ocaml5/.public_cmi -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/thread-local-storage -I /home/opam/.opam/5.4/lib/trace -I /home/opam/.opam/5.4/lib/trace-tef -I /home/opam/.opam/5.4/lib/trace/core -I /home/opam/.opam/5.4/lib/trace/private/util -I /home/opam/.opam/5.4/lib/trace/subscriber -H src/core/.moonpool.objs/byte -I src/core/.moonpool.objs/native -I src/core/.moonpool.objs/public_cmi -I src/dpool/.moonpool_dpool.objs/byte -I src/dpool/.moonpool_dpool.objs/native -I src/forkjoin/.moonpool_forkjoin.objs/byte -I src/forkjoin/.moonpool_forkjoin.objs/native -I src/private/.moonpool_private.objs/byte -I src/private/.moonpool_private.objs/native -cmi-file test/effect-based/.t_fib1.eobjs/byte/dune__exe__T_fork_join.cmi -no-alias-deps -open Dune__exe -o test/effect-based/.t_fib1.eobjs/native/dune__exe__T_fork_join.cmx -c -impl test/effect-based/t_fork_join.pp.ml)
- File "test/effect-based/t_fork_join.ml", line 175, characters 6-15:
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
-
- File "test/effect-based/t_fork_join.ml", line 194, characters 4-13:
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
-
- File "test/effect-based/t_fork_join.ml", line 212, characters 19-25:
- Alert deprecated: Q.Gen.oneofl
- Use [oneof_list] instead
-
- File "test/effect-based/t_fork_join.ml", line 218, characters 19-25:
- Alert deprecated: Q.Gen.oneofl
- Use [oneof_list] instead
-
- File "test/effect-based/t_fork_join.ml", line 284, characters 7-17:
- Alert deprecated: Q.small_list
- Use [list_small] instead
-
- File "test/effect-based/t_fork_join.ml", line 284, characters 19-29:
- Alert deprecated: Q.small_list
- Use [list_small] instead
-
- File "test/effect-based/t_fork_join.ml", line 284, characters 30-39:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
-
- File "test/effect-based/t_fork_join.ml", line 306, characters 7-17:
- Alert deprecated: Q.small_list
- Use [list_small] instead
-
- File "test/effect-based/t_fork_join.ml", line 306, characters 18-27:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default/test && ./t_ws_pool_confusion.exe)
- ok
- (cd _build/default/test && ./t_bench1.exe)
- pool size=4, n=5, j=5
- pool size=4, n=5, j=5
- done
- (cd _build/default/test && ./t_ws_wait.exe)
- sum=2000000, expected=2000000
- (cd _build/default/test && ./t_unfair.exe)
- pool size: 302
- pool size after shutdown: 0
- elapsed: 0.4434s
- pool size: 300
- pool size after shutdown: 0
- elapsed: 0.4550s
- (cd _build/default/test && ./t_chan_train.exe)
- got 1000 events in 4 trains (len=80) in 1.20s
- (cd _build/default/test && ./t_ws_deque.exe)
- basic tests passed
- ref sum = 1010000000, sum = 1010000000
- (cd _build/default/test/effect-based && ./t_fib_fork_join_all.exe)
- fib 40 = 165580141
- (cd _build/default/test/effect-based && ./t_fib_fork_join.exe)
- fib 40 = 165580141
- (cd _build/default/test && ./t_tree_futs.exe)
- n=16, j=4
- n: 32768, n': 32768 (in 1.42s)
- n=16, j=4
- n: 32768, n': 32768 (in 1.24s)
- (cd _build/default/test/effect-based && ./t_fib1.exe)
- fib 40 = 165580141
- (cd _build/default/test && ./t_props.exe)
-
random seed: 458659057
- ================================================================================
- success (ran 4 tests)
- (cd _build/default/test/effect-based && ./t_many.exe)
- with fifo
- awaited 200000 items (3 times)
- in 1.2234s
- with WS(1)
- awaited 200000 items (3 times)
- in 0.8952s
- with WS(2)
- awaited 200000 items (3 times)
- in 1.0667s
- with WS(4)
- awaited 200000 items (3 times)
- in 0.9824s
- (cd _build/default/test/effect-based && ./t_fork_join.exe)
-
random seed: 325309916
-
- +++ Stats for same eval ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
- stats size:
- num: 100, avg: 72.33, stddev: 113.71, median 7, min 1, max 541
- 1.. 27: ####################################################### 62
- 28.. 54: ## 3
- 55.. 81: ##### 6
- 82..108: ## 3
- 109..135: ###### 7
- 136..162: # 2
- 163..189: # 2
- 190..216: 1
- 217..243: # 2
- 244..270: ### 4
- 271..297: ### 4
- 298..324: 0
- 325..351: 0
- 352..378: 0
- 379..405: # 2
- 406..432: 0
- 433..459: 1
- 460..486: 0
- 487..513: 0
- 514..540: 0
- 541..567: 1
-
- +++ Stats for map1 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
- stats len:
- num: 100, avg: 16.34, stddev: 26.07, median 5, min 0, max 97
- 0.. 4: ######################################## 35
- 5.. 9: ####################################################### 47
- 10.. 14: 0
- 15.. 19: 0
- 20.. 24: 0
- 25.. 29: # 1
- 30.. 34: 0
- 35.. 39: # 1
- 40.. 44: # 1
- 45.. 49: 0
- 50.. 54: 0
- 55.. 59: ### 3
- 60.. 64: ## 2
- 65.. 69: 0
- 70.. 74: ## 2
- 75.. 79: ## 2
- 80.. 84: ### 3
- 85.. 89: 0
- 90.. 94: 0
- 95.. 99: ### 3
-
- +++ Stats for map1 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
- stats len:
- num: 100, avg: 16.34, stddev: 26.07, median 5, min 0, max 97
- 0.. 4: ######################################## 35
- 5.. 9: ####################################################### 47
- 10.. 14: 0
- 15.. 19: 0
- 20.. 24: 0
- 25.. 29: # 1
- 30.. 34: 0
- 35.. 39: # 1
- 40.. 44: # 1
- 45.. 49: 0
- 50.. 54: 0
- 55.. 59: ### 3
- 60.. 64: ## 2
- 65.. 69: 0
- 70.. 74: ## 2
- 75.. 79: ## 2
- 80.. 84: ### 3
- 85.. 89: 0
- 90.. 94: 0
- 95.. 99: ### 3
- ================================================================================
- success (ran 9 tests)
- (cd _build/default/test && ./t_fib_rec.exe)
- fib 40 = 165580141
- test fifo(4)
- test pool(1)
- test pool(2)
- test pool(4)
- test pool(8)
- test pool(4)
- test pool(4)
- test pool(4)
- (cd _build/default/test/effect-based && ./t_fork_join_heavy.exe)
- run with min=4
- run with min=1
- done
-> compiled moonpool.0.7
-> removed moonpool.0.7
-> installed moonpool.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:32.30 ---> saved as "513a1cbde050fe7de086e0f37307cbd8cbb3a6dce9e03f149df094338b47ab2e"
Job succeeded
2026-04-13 15:32.37: Job succeeded