Build:
- 0
2025-12-21 22:55.31: New job: test prbnmcn-dagger-test.0.0.3 with qcheck-alcotest.0.91, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29123/head (3abc5e19a0570a67c50eff574c3afafed94ce314)
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/29123/head" && git reset --hard 3abc5e19
git fetch origin master
git merge --no-edit 946c37ec4bd5d51e99c14e0041cf4db8009530dc
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
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 qcheck-alcotest.0.91 0.91
RUN opam reinstall qcheck-alcotest.0.91; \
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" != 'qcheck-alcotest.0.91' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall prbnmcn-dagger-test.0.0.3; \
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" != 'prbnmcn-dagger-test.0.0.3' && 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 prbnmcn-dagger-test.0.0.3) || true
RUN opam reinstall --with-test --verbose prbnmcn-dagger-test.0.0.3; \
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" != 'prbnmcn-dagger-test.0.0.3' && 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-21 22:55.31: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-qcheck-alcotest.0.91-prbnmcn-dagger-test.0.0.3-3abc5e19a0570a67c50eff574c3afafed94ce314"
2025-12-21 22:55.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
(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 qcheck-alcotest.0.91 0.91"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcheck-alcotest.0.91;\
\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\" != 'qcheck-alcotest.0.91' && 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 prbnmcn-dagger-test.0.0.3;\
\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\" != 'prbnmcn-dagger-test.0.0.3' && 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 prbnmcn-dagger-test.0.0.3) || true"))
(run (shell "opam reinstall --with-test --verbose prbnmcn-dagger-test.0.0.3;\
\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\" != 'prbnmcn-dagger-test.0.0.3' && 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-21 22:55.31: Waiting for resource in pool OCluster
2025-12-22 02:46.21: Waiting for worker…
2025-12-22 02:56.53: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
Updating files: 74% (14260/19087)
Updating files: 75% (14316/19087)
Updating files: 76% (14507/19087)
Updating files: 77% (14697/19087)
Updating files: 78% (14888/19087)
Updating files: 79% (15079/19087)
Updating files: 80% (15270/19087)
Updating files: 81% (15461/19087)
Updating files: 82% (15652/19087)
Updating files: 83% (15843/19087)
Updating files: 84% (16034/19087)
Updating files: 85% (16224/19087)
Updating files: 86% (16415/19087)
Updating files: 87% (16606/19087)
Updating files: 88% (16797/19087)
Updating files: 89% (16988/19087)
Updating files: 90% (17179/19087)
Updating files: 91% (17370/19087)
Updating files: 92% (17561/19087)
Updating files: 93% (17751/19087)
Updating files: 94% (17942/19087)
Updating files: 95% (18133/19087)
Updating files: 96% (18324/19087)
Updating files: 97% (18515/19087)
Updating files: 98% (18706/19087)
Updating files: 99% (18897/19087)
Updating files: 100% (19087/19087)
Updating files: 100% (19087/19087), done.
HEAD is now at 946c37ec4b Merge pull request #29113 from redianthus/synchronizer
Updating 946c37ec4b..3abc5e19a0
Fast-forward
packages/qcheck-alcotest/qcheck-alcotest.0.91/opam | 37 +++++++++++++++++++
packages/qcheck-core/qcheck-core.0.91/opam | 38 ++++++++++++++++++++
packages/qcheck-ounit/qcheck-ounit.0.91/opam | 37 +++++++++++++++++++
packages/qcheck/qcheck.0.91/opam | 42 ++++++++++++++++++++++
4 files changed, 154 insertions(+)
create mode 100644 packages/qcheck-alcotest/qcheck-alcotest.0.91/opam
create mode 100644 packages/qcheck-core/qcheck-core.0.91/opam
create mode 100644 packages/qcheck-ounit/qcheck-ounit.0.91/opam
create mode 100644 packages/qcheck/qcheck.0.91/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
2025-12-22 02:57.35 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-22 02:57.35 ---> using "f1296791f2d76481058db697105a569091a6b6345f05c94bbc5a650f1a364f9a" 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 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-12-22 02:57.35 ---> using "0cac9a31b4750e6a46df8ed8d2f68352091a988199fdf62c52779549510cd6bf" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, 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.0
2025-12-22 02:57.35 ---> using "1deb91dc3badca969976ed6f3bc5fe7c443d73a2cfa957be662fd6f93e30aa7b" 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-12-22 02:57.35 ---> using "1a02438c8753bf7228a9eb625e65b7af26778a022b9ce0b16be5ef4f294c58cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-22 02:57.36 ---> using "d056a15953057465d2286f7292cf0270de87ff26d856aa652b6730fa8c6cd7be" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-22 02:57.36 ---> using "5821a994ed2b6888c3df54803c54601c99c5a74d52055b6bb8eb8cc545dc013d" 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 [93.7 kB]
- Fetched 184 kB in 0s (2109 kB/s)
- Reading package lists...
2025-12-22 02:57.36 ---> using "c97cfaaf686ed0021347041d059d36647677ec297a81e99e27e07358d2ec714f" from cache
/home/opam: (run (shell "opam pin add -k version -yn qcheck-alcotest.0.91 0.91"))
qcheck-alcotest is now pinned to version 0.91
2025-12-22 02:57.36 ---> using "35be0b4a500aaa1780aa33df5ecde8f920aec27b29ebfb010418e6d0e79eccfb" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcheck-alcotest.0.91;\
\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\" != 'qcheck-alcotest.0.91' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
qcheck-alcotest.0.91 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
- install alcotest 1.9.1 [required by qcheck-alcotest]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install dune 3.20.2 [required by qcheck-alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install qcheck-alcotest 0.91 (pinned)
- install qcheck-core 0.91 [required by qcheck-alcotest]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved dune.3.20.2 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved qcheck-alcotest.0.91, qcheck-core.0.91 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.91
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-22 02:57.36 ---> using "d53a991572c0a83c10adc7ad6654d2afe48af559863e3e65428d64b53b61fada" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall prbnmcn-dagger-test.0.0.3;\
\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\" != 'prbnmcn-dagger-test.0.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
prbnmcn-dagger-test.0.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 15 packages
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install ounit2 2.2.7 [required by qcheck-ounit]
- install prbnmcn-basic-structures 0.0.1 [required by prbnmcn-stats]
- install prbnmcn-cgrph 0.0.2 [required by prbnmcn-dagger]
- install prbnmcn-dagger 0.0.3 [required by prbnmcn-dagger-test]
- install prbnmcn-dagger-gsl 0.0.3 [required by prbnmcn-dagger-test]
- install prbnmcn-dagger-stats 0.0.3 [required by prbnmcn-dagger-test]
- install prbnmcn-dagger-test 0.0.3
- install prbnmcn-gnuplot 0.0.4 [required by prbnmcn-dagger-test]
- install prbnmcn-stats 0.0.7 [required by prbnmcn-dagger-test]
- install qcheck 0.91 [required by prbnmcn-dagger-test]
- install qcheck-ounit 0.91 [required by qcheck]
- install seq base [required by ounit2]
- install zarith 1.14 [required by prbnmcn-basic-structures]
The following system packages will first need to be installed:
libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20653 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5 (cached)
-> retrieved ounit2.2.2.7 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved prbnmcn-basic-structures.0.0.1 (cached)
-> retrieved prbnmcn-cgrph.0.0.2 (cached)
-> retrieved prbnmcn-dagger.0.0.3, prbnmcn-dagger-gsl.0.0.3, prbnmcn-dagger-stats.0.0.3, prbnmcn-dagger-test.0.0.3 (cached)
-> retrieved prbnmcn-gnuplot.0.0.4 (cached)
-> retrieved prbnmcn-stats.0.0.7 (cached)
-> retrieved qcheck.0.91, qcheck-ounit.0.91 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved zarith.1.14 (cached)
-> installed prbnmcn-cgrph.0.0.2
-> installed prbnmcn-gnuplot.0.0.4
-> installed prbnmcn-dagger.0.0.3
-> installed prbnmcn-dagger-gsl.0.0.3
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed zarith.1.14
-> installed prbnmcn-basic-structures.0.0.1
-> installed prbnmcn-stats.0.0.7
-> installed prbnmcn-dagger-stats.0.0.3
-> installed prbnmcn-dagger-test.0.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-22 02:57.54 ---> saved as "3d3bb03d7db3fc363f66b26b7b98f5f40ad8a111522d3b8406267f1aaacaa749"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test prbnmcn-dagger-test.0.0.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile prbnmcn-dagger-test 0.0.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved prbnmcn-dagger-test.0.0.3 (https://opam.ocaml.org/cache)
-> removed prbnmcn-dagger-test.0.0.3
-> installed prbnmcn-dagger-test.0.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-22 02:58.28 ---> saved as "fe7e7f47f740a5bf8a7d0b705cf8c5578f80f7cf9ad1da4a0ccb2ad89615a9f6"
/home/opam: (run (shell "opam reinstall --with-test --verbose prbnmcn-dagger-test.0.0.3;\
\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\" != 'prbnmcn-dagger-test.0.0.3' && 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 prbnmcn-dagger-test 0.0.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [prbnmcn-dagger-test.0.0.3: extract]
-> retrieved prbnmcn-dagger-test.0.0.3 (cached)
Processing 2/4: [prbnmcn-dagger-test: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "prbnmcn-dagger-test" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/prbnmcn-dagger-test.0.0.3)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -open Basic_structures -g -bin-annot -bin-annot-occurrences -I test/.dagger_tests.objs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/prbnmcn-basic-structures -I /home/opam/.opam/5.4/lib/prbnmcn-cgrph -I /home/opam/.opam/5.4/lib/prbnmcn-dagger -I /home/opam/.opam/5.4/lib/prbnmcn-dagger-stats -I /home/opam/.opam/5.4/lib/prbnmcn-gnuplot -I /home/opam/.opam/5.4/lib/prbnmcn-stats -I /home/opam/.opam/5.4/lib/qcheck -I /home/opam/.opam/5.4/lib/qcheck-alcotest -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/qcheck-ounit -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -no-alias-deps -open Dagger_tests__ -o test/.dagger_tests.objs/byte/dagger_tests__Resampling_test.cmo -c -impl test/resampling_test.ml)
- File "test/resampling_test.ml", line 76, characters 18-27:
- 76 | let nonzero = small_nat >|= ( + ) 2 in
- ^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
-
- File "test/resampling_test.ml", line 103, characters 28-37:
- 103 | QCheck.Gen.(Dist.gen small_nat >|= fun x -> List.map snd x.suspended))
- ^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
-
- File "test/resampling_test.ml", line 271, characters 38-47:
- 271 | (QCheck.make QCheck.Gen.(Dist.gen small_nat))
- ^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -open Basic_structures -g -I test/.dagger_tests.objs/byte -I test/.dagger_tests.objs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/prbnmcn-basic-structures -I /home/opam/.opam/5.4/lib/prbnmcn-cgrph -I /home/opam/.opam/5.4/lib/prbnmcn-dagger -I /home/opam/.opam/5.4/lib/prbnmcn-dagger-stats -I /home/opam/.opam/5.4/lib/prbnmcn-gnuplot -I /home/opam/.opam/5.4/lib/prbnmcn-stats -I /home/opam/.opam/5.4/lib/qcheck -I /home/opam/.opam/5.4/lib/qcheck-alcotest -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/qcheck-ounit -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I /home/opam/.opam/5.4/lib/zarith -cmi-file test/.dagger_tests.objs/byte/dagger_tests__Resampling_test.cmi -no-alias-deps -open Dagger_tests__ -o test/.dagger_tests.objs/native/dagger_tests__Resampling_test.cmx -c -impl test/resampling_test.ml)
- File "test/resampling_test.ml", line 76, characters 18-27:
- 76 | let nonzero = small_nat >|= ( + ) 2 in
- ^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
-
- File "test/resampling_test.ml", line 103, characters 28-37:
- 103 | QCheck.Gen.(Dist.gen small_nat >|= fun x -> List.map snd x.suspended))
- ^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
-
- File "test/resampling_test.ml", line 271, characters 38-47:
- 271 | (QCheck.make QCheck.Gen.(Dist.gen small_nat))
- ^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default/test && ./test.exe)
- qcheck random seed: 150328274
- Testing `lmh'.
- This run has ID `ATI6I84O'.
-
- [OK] lmh 0 lmh_inference: 1d gaussian.
- [OK] lmh 1 lmh_inference: 1d gamma.
- [OK] lmh 2 lmh_inference: gaussian sum.
- [OK] lmh 3 lmh_inference: iid gaussian sum.
- [OK] lmh 4 lmh_inference: gaussian chain.
- [OK] lmh 5 lmh_inference: mixture 1.
- [OK] lmh 6 lmh_inference: mixture 2.
- [OK] lmh 7 lmh_inference: mixture 3.
- [OK] lmh 8 lmh_inference: mixture 4.
- [OK] lmh 9 lmh_inference: importance_gaus...
- [OK] lmh 10 lmh_inference: bind; bind vs m...
- [OK] lmh-incremental 0 lmh_incremental_inference: 1d ...
- [OK] lmh-incremental 1 lmh_incremental_inference: 1d ...
- [OK] lmh-incremental 2 lmh_incremental_inference: gau...
- [OK] lmh-incremental 3 lmh_incremental_inference: iid...
- [OK] lmh-incremental 4 lmh_incremental_inference: gau...
- [OK] lmh-incremental 5 lmh_incremental_inference: mix...
- [OK] lmh-incremental 6 lmh_incremental_inference: mix...
- [OK] lmh-incremental 7 lmh_incremental_inference: mix...
- [OK] lmh-incremental 8 lmh_incremental_inference: mix...
- [OK] lmh-incremental 9 lmh_incremental_inference: imp...
- [OK] lmh-incremental 10 lmh_incremental_inference: bin...
- [OK] smc-systematic 0 smc-systematic: 1d gaussian.
- [OK] smc-systematic 1 smc-systematic: 1d gamma.
- [OK] smc-systematic 2 smc-systematic: gaussian sum.
- [OK] smc-systematic 3 smc-systematic: iid gaussian sum.
- [OK] smc-systematic 4 smc-systematic: gaussian chain.
- [OK] smc-systematic 5 smc-systematic: mixture 1.
- [OK] smc-systematic 6 smc-systematic: mixture 2.
- [OK] smc-systematic 7 smc-systematic: mixture 3.
- [OK] smc-systematic 8 smc-systematic: mixture 4.
- [OK] smc-systematic 9 smc-systematic: importance_gau...
- [OK] smc-systematic 10 smc-systematic: bind; bind vs ...
- [OK] smc-stratified 0 smc-stratified: 1d gaussian.
- [OK] smc-stratified 1 smc-stratified: 1d gamma.
- [OK] smc-stratified 2 smc-stratified: gaussian sum.
- [OK] smc-stratified 3 smc-stratified: iid gaussian sum.
- [OK] smc-stratified 4 smc-stratified: gaussian chain.
- [OK] smc-stratified 5 smc-stratified: mixture 1.
- [OK] smc-stratified 6 smc-stratified: mixture 2.
- [OK] smc-stratified 7 smc-stratified: mixture 3.
- [OK] smc-stratified 8 smc-stratified: mixture 4.
- [OK] smc-stratified 9 smc-stratified: importance_gau...
- [OK] smc-stratified 10 smc-stratified: bind; bind vs ...
- [OK] biased-coin 0 biased coin, traced.
- [OK] biased-coin 1 biased coin, traced, incremental.
- [OK] biased-coin 2 biased coin, smc.
- [OK] linear-regression 0 linear regression, traced.
- [OK] linear-regression 1 linear regression, traced, inc...
- [OK] linear-regression 2 linear regression, smc.
- [OK] diffusions 0 diffusion.
- [OK] sprinkler 0 biased coin, traced, incremental.
- [OK] sprinkler 1 biased coin, traced.
- [OK] smc-resampling 0 is_generator_normalized.
- [OK] smc-resampling 1 test_stratified_on_handcrafted.
- [OK] smc-resampling 2 test_iterative_stratified.
- [OK] random-walks 0 random walk.
- [OK] map-array 0 map-array-pure.
- [OK] map-array 1 map-array-lmh-incr.
- [OK] map-array 2 map-array-lmh.
- [OK] smc-poly 0 smc-poly-fit.
- [OK] non-uniform-yield 0 non-uniform-yield.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/prbnmcn-dagger-test.0.0.3/_build/default/test/_build/_tests/lmh'.
- Test Successful in 27.389s. 62 tests run.
-> compiled prbnmcn-dagger-test.0.0.3
-> removed prbnmcn-dagger-test.0.0.3
-> installed prbnmcn-dagger-test.0.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-22 02:58.59 ---> saved as "f9ec83a4ec0527ab88aad415a4711e02ea2110bb32d23a43cdd32707c9b21c1e"
Job succeeded
2025-12-22 02:59.05: Job succeeded