- github
- ocaml
- opam-repository
- 547bbc
- distributions,debian-testing-ocaml-5.4,lwt_direct.6.0.0-beta01,tests
(not at the head of any monitored branch or PR)
2025-12-04 13:34.02: New job: test lwt_direct.6.0.0-beta01, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28894/head (547bbce588bc6d9231ad2bd9c8b2b3930b2d061a)
on debian-testing-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/28894/head" && git reset --hard 547bbce5
git fetch origin master
git merge --no-edit 3e41859015888fe8240e84dfc5f31bfa12a557e8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-testing-ocaml-5.4@sha256:c96e49ce9d8a19275fccc120fa5e4ccb0d322ad05a01874a7aaabd3ad694d982
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 lwt_direct.6.0.0-beta01 6.0.0-beta01
RUN opam reinstall lwt_direct.6.0.0-beta01; \
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-testing\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt_direct.6.0.0-beta01' && 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 lwt_direct.6.0.0-beta01) || true
RUN opam reinstall --with-test --verbose lwt_direct.6.0.0-beta01; \
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-testing\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt_direct.6.0.0-beta01' && 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-04 13:34.02: Using cache hint "ocaml/opam:debian-testing-ocaml-5.4@sha256:c96e49ce9d8a19275fccc120fa5e4ccb0d322ad05a01874a7aaabd3ad694d982-lwt_direct.6.0.0-beta01-547bbce588bc6d9231ad2bd9c8b2b3930b2d061a"
2025-12-04 13:34.02: Using OBuilder spec:
((from ocaml/opam:debian-testing-ocaml-5.4@sha256:c96e49ce9d8a19275fccc120fa5e4ccb0d322ad05a01874a7aaabd3ad694d982)
(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 lwt_direct.6.0.0-beta01 6.0.0-beta01"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_direct.6.0.0-beta01;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_direct.6.0.0-beta01' && 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 lwt_direct.6.0.0-beta01) || true"))
(run (shell "opam reinstall --with-test --verbose lwt_direct.6.0.0-beta01;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_direct.6.0.0-beta01' && 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-04 13:34.02: Waiting for resource in pool OCluster
2025-12-04 13:46.42: Waiting for worker…
2025-12-04 13:50.02: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 3e41859015 Merge pull request #28903 from jim-portegies/opam-publish-coq-waterproof.3.1.0-9.1
Merge made by the 'ort' strategy.
packages/lwt/lwt.6.0.0-beta01/opam | 66 ++++++++++++++++++++++
packages/lwt_direct/lwt_direct.6.0.0-beta01/opam | 42 ++++++++++++++
packages/lwt_ppx/lwt_ppx.1.0.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.0.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.1.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.3/opam | 2 +-
packages/lwt_ppx/lwt_ppx.1.2.4/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.0.3/opam | 2 +-
packages/lwt_ppx/lwt_ppx.2.1.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.8.0/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 2 +-
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 2 +-
packages/lwt_ppx/lwt_ppx.6.0.0-beta01/opam | 43 ++++++++++++++
.../lwt_runtime_events.6.0.0-beta01/opam | 40 +++++++++++++
packages/moonpool-lwt/moonpool-lwt.0.10/opam | 2 +-
packages/moonpool-lwt/moonpool-lwt.0.9/opam | 2 +-
packages/tezt/tezt.2.0.0/opam | 2 +-
packages/tezt/tezt.3.0.0/opam | 2 +-
packages/tezt/tezt.4.3.0/opam | 2 +-
25 files changed, 212 insertions(+), 21 deletions(-)
create mode 100644 packages/lwt/lwt.6.0.0-beta01/opam
create mode 100644 packages/lwt_direct/lwt_direct.6.0.0-beta01/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0-beta01/opam
create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0-beta01/opam
(from ocaml/opam:debian-testing-ocaml-5.4@sha256:c96e49ce9d8a19275fccc120fa5e4ccb0d322ad05a01874a7aaabd3ad694d982)
Unable to find image 'ocaml/opam:debian-testing-ocaml-5.4@sha256:c96e49ce9d8a19275fccc120fa5e4ccb0d322ad05a01874a7aaabd3ad694d982' locally
docker.io/ocaml/opam@sha256:c96e49ce9d8a19275fccc120fa5e4ccb0d322ad05a01874a7aaabd3ad694d982: Pulling from ocaml/opam
92c0a222f15d: Pulling fs layer
a831fd00e935: Pulling fs layer
d8c475a0a4e8: Pulling fs layer
472822cbed9f: Pulling fs layer
7a1f6ea387bf: Pulling fs layer
940d8f8f7b80: Pulling fs layer
436f0723584e: Pulling fs layer
40240b00114f: Pulling fs layer
d8c475a0a4e8: Waiting
472822cbed9f: Waiting
7a1f6ea387bf: Waiting
92c0a222f15d: Waiting
a831fd00e935: Waiting
940d8f8f7b80: Waiting
436f0723584e: Waiting
40240b00114f: Waiting
a831fd00e935: Verifying Checksum
a831fd00e935: Download complete
92c0a222f15d: Verifying Checksum
92c0a222f15d: Download complete
472822cbed9f: Verifying Checksum
472822cbed9f: Download complete
d8c475a0a4e8: Verifying Checksum
d8c475a0a4e8: Download complete
940d8f8f7b80: Verifying Checksum
940d8f8f7b80: Download complete
436f0723584e: Verifying Checksum
436f0723584e: Download complete
40240b00114f: Verifying Checksum
40240b00114f: Download complete
7a1f6ea387bf: Verifying Checksum
7a1f6ea387bf: Download complete
92c0a222f15d: Pull complete
a831fd00e935: Pull complete
d8c475a0a4e8: Pull complete
472822cbed9f: Pull complete
7a1f6ea387bf: Pull complete
940d8f8f7b80: Pull complete
436f0723584e: Pull complete
40240b00114f: Pull complete
Digest: sha256:c96e49ce9d8a19275fccc120fa5e4ccb0d322ad05a01874a7aaabd3ad694d982
Status: Downloaded newer image for ocaml/opam@sha256:c96e49ce9d8a19275fccc120fa5e4ccb0d322ad05a01874a7aaabd3ad694d982
2025-12-04 13:50.33 ---> using "2cfe332a29592a8ceee8880a973b20b942658920a4e37a534575887d9e42603f" 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-04 13:50.33 ---> using "d62844012c8843f52fc67a68d5b59ec4eee4a89c46cc709086fa4f2052b86246" 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-04 13:50.33 ---> using "29b90749a551e73ee26881dd31d04bf20aa17a06a4af2e3122ffe7f036fb1733" 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=unknown
# 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-04 13:50.33 ---> using "a85246f05aaa0af6109bf404c283eaad90537cf74d5bbc7e5a04e122fe513d7d" 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-04 13:50.33 ---> using "43580fe12115a652fd10eb9c40f91641b62b9896d2ea8a5322e6b964cdd12395" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-04 13:50.34 ---> using "51d86581ecfd309f19bc5bd8f7cf6958cf28a1b5bae0dfb3950744dcf22623b7" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-04 13:50.34 ---> using "f71350299fc7572befda4c98dd0bfcbbda2dc2d4d309fa8b66c930be0664a155" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian testing InRelease [137 kB]
- Get:2 http://deb.debian.org/debian testing-updates InRelease [40.6 kB]
- Get:3 http://deb.debian.org/debian-security testing-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages T-2025-12-04-0810.46-F-2025-11-29-1403.48.pdiff [535 kB]
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages T-2025-12-04-0810.46-F-2025-11-29-1403.48.pdiff [535 kB]
- Fetched 820 kB in 1s (607 kB/s)
- Reading package lists...
2025-12-04 13:50.34 ---> using "aab3e23ec8abf3c5e516f8784abaca11c856f787deffc03744c174efbd13dc82" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt_direct.6.0.0-beta01 6.0.0-beta01"))
lwt_direct is now pinned to version 6.0.0-beta01
2025-12-04 13:50.34 ---> using "ce001d4b59f6a6cea236b5bbcbb5f81cbe8eff88251e9a975c1e36ff27be8e98" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_direct.6.0.0-beta01;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_direct.6.0.0-beta01' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt_direct.6.0.0-beta01 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.2 [required by lwt_direct]
- install dune-configurator 3.20.2 [required by lwt]
- install lwt 6.0.0-beta01 [required by lwt_direct]
- install lwt_direct 6.0.0-beta01 (pinned)
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved lwt.6.0.0-beta01, lwt_direct.6.0.0-beta01 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.20.2
-> installed lwt.6.0.0-beta01
-> installed lwt_direct.6.0.0-beta01
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 13:51.06 ---> saved as "dfd572422e710d495c6fd76758facb04e5d15520380d359d2401ade5a472fa15"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lwt_direct.6.0.0-beta01) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lwt_direct 6.0.0-beta01 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed lwt_direct.6.0.0-beta01
-> installed lwt_direct.6.0.0-beta01
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 13:51.09 ---> saved as "0d9654cab44cddbc3dda6dd09d0930bbc4838fbf42dfbedcf6db6436d6405868"
/home/opam: (run (shell "opam reinstall --with-test --verbose lwt_direct.6.0.0-beta01;\
\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-testing\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lwt_direct.6.0.0-beta01' && 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 lwt_direct 6.0.0-beta01 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [lwt_direct: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lwt_direct" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lwt_direct.6.0.0-beta01)
- (cd _build/default/test/direct && ./main.exe)
- Testing library 'lwt_direct'...
- .............
- Ok. 13 tests ran, 0 tests skipped in 0.00 seconds
-> compiled lwt_direct.6.0.0-beta01
-> removed lwt_direct.6.0.0-beta01
-> installed lwt_direct.6.0.0-beta01
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-04 13:51.13 ---> saved as "b519cfc1749303c7b69add080da394b9fbb060890e48ff8371ca99ddf764830f"
Job succeeded
2025-12-04 13:51.55: Job succeeded