- github
- ocaml
- opam-repository
- c715a9
- compilers,4.14,qcheck-ounit.0.26,revdeps,qtest.2.11.1
(not at the head of any monitored branch or PR)
2025-07-08 20:22.24: New job: test qtest.2.11.1 with qcheck-ounit.0.26, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28148/head (c715a95fe87d4397d1f0658b2ae5acd528de705e)
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/28148/head" && git reset --hard c715a95f
git fetch origin master
git merge --no-edit 11a53009bd75423d805636ff9384bf7cce8b0a9a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:143576507f5c7de2dab1a2bc4748de0e63d8dc0c9524de1e8ea0b273ddd270ab
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 qcheck-ounit.0.26 0.26
RUN opam reinstall qcheck-ounit.0.26; \
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" != 'qcheck-ounit.0.26' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall qtest.2.11.1; \
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" != 'qtest.2.11.1' && 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 qtest.2.11.1) || true
RUN opam reinstall --with-test --verbose qtest.2.11.1; \
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" != 'qtest.2.11.1' && 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-07-08 20:22.24: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:143576507f5c7de2dab1a2bc4748de0e63d8dc0c9524de1e8ea0b273ddd270ab-qcheck-ounit.0.26-qtest.2.11.1-c715a95fe87d4397d1f0658b2ae5acd528de705e"
2025-07-08 20:22.24: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:143576507f5c7de2dab1a2bc4748de0e63d8dc0c9524de1e8ea0b273ddd270ab)
(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 qcheck-ounit.0.26 0.26"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcheck-ounit.0.26;\
\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\" != 'qcheck-ounit.0.26' && 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 qtest.2.11.1;\
\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\" != 'qtest.2.11.1' && 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 qtest.2.11.1) || true"))
(run (shell "opam reinstall --with-test --verbose qtest.2.11.1;\
\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\" != 'qtest.2.11.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-07-08 20:22.24: Waiting for resource in pool OCluster
2025-07-08 20:22.53: Waiting for worker…
2025-07-08 20:24.22: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 11a53009bd Merge pull request #27805 from fccm2/conf-gegl
Updating 11a53009bd..c715a95fe8
Fast-forward
packages/qcheck-alcotest/qcheck-alcotest.0.26/opam | 37 +++++++++++++++++++
packages/qcheck-core/qcheck-core.0.26/opam | 38 ++++++++++++++++++++
packages/qcheck-ounit/qcheck-ounit.0.26/opam | 37 +++++++++++++++++++
packages/qcheck/qcheck.0.26/opam | 42 ++++++++++++++++++++++
4 files changed, 154 insertions(+)
create mode 100644 packages/qcheck-alcotest/qcheck-alcotest.0.26/opam
create mode 100644 packages/qcheck-core/qcheck-core.0.26/opam
create mode 100644 packages/qcheck-ounit/qcheck-ounit.0.26/opam
create mode 100644 packages/qcheck/qcheck.0.26/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:143576507f5c7de2dab1a2bc4748de0e63d8dc0c9524de1e8ea0b273ddd270ab)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:143576507f5c7de2dab1a2bc4748de0e63d8dc0c9524de1e8ea0b273ddd270ab' locally
docker.io/ocaml/opam@sha256:143576507f5c7de2dab1a2bc4748de0e63d8dc0c9524de1e8ea0b273ddd270ab: Pulling from ocaml/opam
Digest: sha256:143576507f5c7de2dab1a2bc4748de0e63d8dc0c9524de1e8ea0b273ddd270ab
Status: Downloaded newer image for ocaml/opam@sha256:143576507f5c7de2dab1a2bc4748de0e63d8dc0c9524de1e8ea0b273ddd270ab
2025-07-08 20:25.00 ---> using "cbce109115830ce8e290fcb66720c8f15adbd56f7256c117251ab82bc5715165" 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-07-08 20:25.00 ---> using "859f467b8f1e0997453778978cb05314781fcf229a7a46a3e2828bd1d8ec2d14" 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-07-08 20:25.00 ---> using "65b30b61870eb9a225634d1fd8d6da8812c6a382d9e1c357506f34e87afd200b" 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-07-08 20:25.00 ---> using "7b77f5c2c4be7cc4a239111e315b4dceecb1805f8f7c4dfe948fd7a5daead8a6" 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-07-08 20:25.00 ---> using "38b75597606ef9e6851c1727ab267ec48baaf3349adaf4a26ef88742d1f9a941" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-07-08 20:25.01 ---> using "e5e0ad7e6732f1c94a1d4149243a5b40298927f8a5e74f8fd4614b112917b51f" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-07-08 20:25.01 ---> using "f66140815209defa9a14523460172baf42b9ba4b4cf6a360c62bb479344a5585" 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 [272 kB]
- Fetched 375 kB in 0s (1292 kB/s)
- Reading package lists...
2025-07-08 20:25.01 ---> using "80fa3a76c0c8ac55be27390fc6c3ca2a95f9d1d9bb66d1a0dac432480b33e126" from cache
/home/opam: (run (shell "opam pin add -k version -yn qcheck-ounit.0.26 0.26"))
qcheck-ounit is now pinned to version 0.26
2025-07-08 20:25.01 ---> saved as "4035fea9c9b32c5664760068c97a61a67c4a07f157e9b43d70ade187343e6eeb"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qcheck-ounit.0.26;\
\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\" != 'qcheck-ounit.0.26' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
qcheck-ounit.0.26 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 6 packages
- install dune 3.19.1 [required by qcheck-ounit]
- install ounit2 2.2.7 [required by qcheck-ounit]
- install qcheck-core 0.26 [required by qcheck-ounit]
- install qcheck-ounit 0.26 (pinned)
- install seq base [required by ounit2]
- install stdlib-shims 0.3.0 [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.19.1 (cached)
-> retrieved ounit2.2.2.7 (cached)
-> retrieved qcheck-core.0.26, qcheck-ounit.0.26 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.19.1
-> installed stdlib-shims.0.3.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.26
-> installed qcheck-ounit.0.26
Done.
# To update the current shell environment, run: eval $(opam env)
2025-07-08 20:25.24 ---> saved as "bbfbef5f7c86c4287b075a6172fcaabadf3ca511408ad98f1d6b390e0c80ef71"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall qtest.2.11.1;\
\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\" != 'qtest.2.11.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
qtest.2.11.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 4 packages
- install base-bytes base [required by qtest]
- install ocamlfind 1.9.8 [required by base-bytes]
- install qcheck 0.26 [required by qtest]
- install qtest 2.11.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved qcheck.0.26 (cached)
-> retrieved qtest.2.11.1 (cached)
-> installed qcheck.0.26
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed qtest.2.11.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-07-08 20:25.31 ---> saved as "a5f81979e05b52cf0bdb12f2afdc49b053491a2f200b611f3705e929352706e7"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test qtest.2.11.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile qtest 2.11.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved qtest.2.11.1 (https://opam.ocaml.org/cache)
-> removed qtest.2.11.1
-> installed qtest.2.11.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-07-08 20:25.35 ---> saved as "ab95e4341021fcd0a0282c3ac0c9bb138e5d84461e721daa87cccaba41797bed"
/home/opam: (run (shell "opam reinstall --with-test --verbose qtest.2.11.1;\
\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\" != 'qtest.2.11.1' && 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 qtest 2.11.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [qtest.2.11.1: extract]
-> retrieved qtest.2.11.1 (cached)
Processing 2/4: [qtest: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "@install" "-j" "255" "-p" "qtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/qtest.2.11.1)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-29-44-50@8 -warn-error -a+8 -safe-string -g -bin-annot -I src/.qtest_bin.eobjs/byte -I /home/opam/.opam/4.14/lib/bytes -no-alias-deps -o src/.qtest_bin.eobjs/byte/misclex.cmo -c -impl src/misclex.ml)
- File "src/misclex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-29-44-50@8 -warn-error -a+8 -safe-string -g -bin-annot -I src/.qtest_bin.eobjs/byte -I /home/opam/.opam/4.14/lib/bytes -no-alias-deps -o src/.qtest_bin.eobjs/byte/core.cmo -c -impl src/core.ml)
- File "src/core.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-4-29-44-50@8 -warn-error -a+8 -safe-string -g -bin-annot -I src/.qtest_bin.eobjs/byte -I /home/opam/.opam/4.14/lib/bytes -no-alias-deps -o src/.qtest_bin.eobjs/byte/qtest_bin.cmo -c -impl src/qtest_bin.ml)
- File "src/qtest_bin.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
-> compiled qtest.2.11.1
-> removed qtest.2.11.1
-> installed qtest.2.11.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-07-08 20:25.38 ---> saved as "b443607d62330494b05b3f9cfb3ab382611589f8c5aa6f9e29623ff36398d64f"
Job succeeded
2025-07-08 20:25.45: Job succeeded