- github
- ocaml
- opam-repository
- d83f51
- distributions,centos-10-ocaml-5.4,lwt.6.0.0,tests
(not at the head of any monitored branch or PR)
2025-12-30 10:55.33: New job: test lwt.6.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29147/head (d83f510fcc6a430d62200d6223dcfcc5c92c0245)
on centos-10-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/29147/head" && git reset --hard d83f510f
git fetch origin master
git merge --no-edit c239a62d58deaede2e5dce17c2715a55397b73f2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-5.4@sha256:f852b38b1f871dc9eeeff859209900fc2966ef42bde35b52f51fdd2e2b540219
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.6.0.0 6.0.0
RUN opam reinstall lwt.6.0.0; \
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 "\"centos-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt.6.0.0' && 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.6.0.0) || true
RUN opam reinstall --with-test --verbose lwt.6.0.0; \
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 "\"centos-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lwt.6.0.0' && 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-30 10:55.33: Using cache hint "ocaml/opam:centos-10-ocaml-5.4@sha256:f852b38b1f871dc9eeeff859209900fc2966ef42bde35b52f51fdd2e2b540219-lwt.6.0.0-d83f510fcc6a430d62200d6223dcfcc5c92c0245"
2025-12-30 10:55.33: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-5.4@sha256:f852b38b1f871dc9eeeff859209900fc2966ef42bde35b52f51fdd2e2b540219)
(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.6.0.0 6.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0;\
\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 \"\\\"centos-10\\\"\"; 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.6.0.0' && 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.6.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose lwt.6.0.0;\
\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 \"\\\"centos-10\\\"\"; 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.6.0.0' && 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-30 10:55.33: Waiting for resource in pool OCluster
2025-12-30 10:55.34: Waiting for worker…
2025-12-30 10:58.02: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at c239a62d58 Merge pull request #29143 from filipeom/opam-publish-smtml.0.18.0
Updating c239a62d58..d83f510fcc
Fast-forward
packages/lwt/lwt.6.0.0/opam | 64 ++++++++++++++++++++++
packages/lwt_direct/lwt_direct.6.0.0/opam | 41 ++++++++++++++
packages/lwt_ppx/lwt_ppx.6.0.0/opam | 42 ++++++++++++++
.../lwt_runtime_events.6.0.0/opam | 39 +++++++++++++
4 files changed, 186 insertions(+)
create mode 100644 packages/lwt/lwt.6.0.0/opam
create mode 100644 packages/lwt_direct/lwt_direct.6.0.0/opam
create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0/opam
create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0/opam
(from ocaml/opam:centos-10-ocaml-5.4@sha256:f852b38b1f871dc9eeeff859209900fc2966ef42bde35b52f51fdd2e2b540219)
Unable to find image 'ocaml/opam:centos-10-ocaml-5.4@sha256:f852b38b1f871dc9eeeff859209900fc2966ef42bde35b52f51fdd2e2b540219' locally
docker.io/ocaml/opam@sha256:f852b38b1f871dc9eeeff859209900fc2966ef42bde35b52f51fdd2e2b540219: Pulling from ocaml/opam
17a26197ad8f: Pulling fs layer
9ea7ece1b831: Pulling fs layer
1b03b7b947fe: Pulling fs layer
01f5afc88486: Pulling fs layer
fef439373213: Pulling fs layer
6b906f25c34c: Pulling fs layer
37aa24f6a682: Pulling fs layer
31a0f8b2a8cb: Pulling fs layer
61650c3d8fc4: Pulling fs layer
a6c88236e2b4: Pulling fs layer
d14cdd335f42: Pulling fs layer
547b69b90212: Pulling fs layer
0bf03bca8ae2: Pulling fs layer
4f57a3c6fb77: Pulling fs layer
a8c9241caf6f: Pulling fs layer
9d47a05dc58d: Pulling fs layer
01f5afc88486: Waiting
37aa24f6a682: Waiting
2838aa6cdd3d: Pulling fs layer
a6c88236e2b4: Waiting
61650c3d8fc4: Waiting
51f3af8cf0d9: Pulling fs layer
31a0f8b2a8cb: Waiting
d14cdd335f42: Waiting
fef439373213: Waiting
11bfde1f6884: Pulling fs layer
547b69b90212: Waiting
4f57a3c6fb77: Waiting
a8c9241caf6f: Waiting
9d47a05dc58d: Waiting
a6ba5fe028f8: Pulling fs layer
2838aa6cdd3d: Waiting
85d4e5e7e8ee: Pulling fs layer
75eb48a06272: Pulling fs layer
4f4fb700ef54: Pulling fs layer
0bf03bca8ae2: Waiting
11bfde1f6884: Waiting
a6ba5fe028f8: Waiting
85d4e5e7e8ee: Waiting
75eb48a06272: Waiting
6b906f25c34c: Waiting
dab8546d1117: Pulling fs layer
4f4fb700ef54: Waiting
5251748ed820: Pulling fs layer
dab8546d1117: Waiting
e318efffe4ed: Pulling fs layer
5251748ed820: Waiting
6a482ed61395: Pulling fs layer
51f3af8cf0d9: Waiting
8b69311596b4: Pulling fs layer
6a56dedadc2c: Pulling fs layer
6a482ed61395: Waiting
69313fd62570: Pulling fs layer
1ec09ce4592c: Pulling fs layer
6a56dedadc2c: Waiting
69313fd62570: Waiting
e318efffe4ed: Waiting
f77222158d4d: Pulling fs layer
9146448debba: Pulling fs layer
1ec09ce4592c: Waiting
581ac7038b1c: Pulling fs layer
4a4184a5c4c3: Pulling fs layer
f77222158d4d: Waiting
581ac7038b1c: Waiting
9146448debba: Waiting
93b2436b1e22: Pulling fs layer
65ae19af25cc: Pulling fs layer
6a86ef837951: Pulling fs layer
4a4184a5c4c3: Waiting
569f5cd18613: Pulling fs layer
93b2436b1e22: Waiting
65ae19af25cc: Waiting
293d8fd45429: Pulling fs layer
88bbc009202e: Pulling fs layer
d4cdfaaca78d: Pulling fs layer
569f5cd18613: Waiting
88aa50fea8fc: Pulling fs layer
88bbc009202e: Waiting
14f623655d22: Pulling fs layer
88aa50fea8fc: Waiting
bdca634e84db: Pulling fs layer
14f623655d22: Waiting
c995f9f113f0: Pulling fs layer
bdca634e84db: Waiting
9ea7ece1b831: Verifying Checksum
9ea7ece1b831: Download complete
1b03b7b947fe: Verifying Checksum
1b03b7b947fe: Download complete
fef439373213: Verifying Checksum
fef439373213: Download complete
6b906f25c34c: Verifying Checksum
6b906f25c34c: Download complete
17a26197ad8f: Verifying Checksum
17a26197ad8f: Download complete
31a0f8b2a8cb: Verifying Checksum
31a0f8b2a8cb: Download complete
61650c3d8fc4: Verifying Checksum
61650c3d8fc4: Download complete
37aa24f6a682: Verifying Checksum
37aa24f6a682: Download complete
a6c88236e2b4: Verifying Checksum
a6c88236e2b4: Download complete
547b69b90212: Verifying Checksum
547b69b90212: Download complete
d14cdd335f42: Download complete
4f57a3c6fb77: Verifying Checksum
4f57a3c6fb77: Download complete
0bf03bca8ae2: Verifying Checksum
0bf03bca8ae2: Download complete
9d47a05dc58d: Verifying Checksum
9d47a05dc58d: Download complete
a8c9241caf6f: Verifying Checksum
a8c9241caf6f: Download complete
2838aa6cdd3d: Download complete
51f3af8cf0d9: Verifying Checksum
51f3af8cf0d9: Download complete
a6ba5fe028f8: Verifying Checksum
a6ba5fe028f8: Download complete
85d4e5e7e8ee: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
75eb48a06272: Verifying Checksum
75eb48a06272: Download complete
dab8546d1117: Download complete
5251748ed820: Verifying Checksum
5251748ed820: Download complete
01f5afc88486: Verifying Checksum
01f5afc88486: Download complete
e318efffe4ed: Verifying Checksum
e318efffe4ed: Download complete
6a482ed61395: Verifying Checksum
6a482ed61395: Download complete
8b69311596b4: Verifying Checksum
8b69311596b4: Download complete
6a56dedadc2c: Download complete
69313fd62570: Verifying Checksum
69313fd62570: Download complete
1ec09ce4592c: Verifying Checksum
1ec09ce4592c: Download complete
f77222158d4d: Verifying Checksum
f77222158d4d: Download complete
9146448debba: Download complete
581ac7038b1c: Verifying Checksum
581ac7038b1c: Download complete
4a4184a5c4c3: Verifying Checksum
4a4184a5c4c3: Download complete
65ae19af25cc: Verifying Checksum
569f5cd18613: Download complete
293d8fd45429: Download complete
17a26197ad8f: Pull complete
9ea7ece1b831: Pull complete
88bbc009202e: Download complete
1b03b7b947fe: Pull complete
6a86ef837951: Verifying Checksum
6a86ef837951: Download complete
d4cdfaaca78d: Verifying Checksum
d4cdfaaca78d: Download complete
14f623655d22: Download complete
bdca634e84db: Verifying Checksum
bdca634e84db: Download complete
c995f9f113f0: Verifying Checksum
c995f9f113f0: Download complete
88aa50fea8fc: Verifying Checksum
88aa50fea8fc: Download complete
93b2436b1e22: Verifying Checksum
93b2436b1e22: Download complete
01f5afc88486: Pull complete
fef439373213: Pull complete
6b906f25c34c: Pull complete
37aa24f6a682: Pull complete
31a0f8b2a8cb: Pull complete
61650c3d8fc4: Pull complete
a6c88236e2b4: Pull complete
d14cdd335f42: Pull complete
547b69b90212: Pull complete
0bf03bca8ae2: Pull complete
4f57a3c6fb77: Pull complete
a8c9241caf6f: Pull complete
9d47a05dc58d: Pull complete
2838aa6cdd3d: Pull complete
51f3af8cf0d9: Pull complete
11bfde1f6884: Pull complete
a6ba5fe028f8: Pull complete
85d4e5e7e8ee: Pull complete
75eb48a06272: Pull complete
4f4fb700ef54: Pull complete
dab8546d1117: Pull complete
5251748ed820: Pull complete
e318efffe4ed: Pull complete
6a482ed61395: Pull complete
8b69311596b4: Pull complete
6a56dedadc2c: Pull complete
69313fd62570: Pull complete
1ec09ce4592c: Pull complete
f77222158d4d: Pull complete
9146448debba: Pull complete
581ac7038b1c: Pull complete
4a4184a5c4c3: Pull complete
93b2436b1e22: Pull complete
65ae19af25cc: Pull complete
6a86ef837951: Pull complete
569f5cd18613: Pull complete
293d8fd45429: Pull complete
88bbc009202e: Pull complete
d4cdfaaca78d: Pull complete
88aa50fea8fc: Pull complete
14f623655d22: Pull complete
bdca634e84db: Pull complete
c995f9f113f0: Pull complete
Digest: sha256:f852b38b1f871dc9eeeff859209900fc2966ef42bde35b52f51fdd2e2b540219
Status: Downloaded newer image for ocaml/opam@sha256:f852b38b1f871dc9eeeff859209900fc2966ef42bde35b52f51fdd2e2b540219
2025-12-30 11:00.12 ---> saved as "1780023c53da132ea25384adcc571fc2aa406a4d0df9ba1867389ae521e513e9"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-30 11:00.12 ---> saved as "62749dd4c78f6a95c8d89fae0647e285faeaa30031e1a75124e8483370d71947"
/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.
[NOTE] The 'jobs' option was reset, its value was 255 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=255 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 11:00.38 ---> saved as "0448e5e86e404fa4bdbfc23ba43428d63aeefbe94ca48b6bf324a2c268913b81"
/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=centos os-version=10
# 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.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-30 11:00.39 ---> saved as "7c4e6345c5cb6811bd2ac806637f5df761ee3022ba993c13e01aa3068ba71445"
/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-30 11:00.44 ---> saved as "5e5a5c96879b7c6ded0b7394477552e15b21831a39c8a8db2b5e6a7039dc9573"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 11:00.51 ---> saved as "039d171baae14e98907fc3a053d887997b68e631d4e8f51b08456418210ff6e6"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 11:01.10 ---> saved as "4a8dd1629a36c24695b28088f928f2b0c779e3670ffdaa488f9716f5a83b1ba4"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS 74 kB/s | 15 kB 00:00
- CentOS Stream 10 - AppStream 60 kB/s | 15 kB 00:00
- CentOS Stream 10 - CRB 52 kB/s | 15 kB 00:00
- CentOS Stream 10 - Extras packages 61 kB/s | 16 kB 00:00
- Metadata cache created.
2025-12-30 11:01.12 ---> saved as "ff68590e09ca5ede988a327fdeded97b1fde57a8d713a3abf5f3283359b3239c"
/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0 6.0.0"))
lwt is now pinned to version 6.0.0
2025-12-30 11:01.12 ---> saved as "062bae6ea600f6cb369663301d740f613d87989d5cdbd73ab72b727f1efb6081"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt.6.0.0;\
\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 \"\\\"centos-10\\\"\"; 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.6.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lwt.6.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 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]
- install dune-configurator 3.20.2 [required by lwt]
- install lwt 6.0.0 (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 (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
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:01.56 ---> saved as "af31ee589148c2289a8fc8d4178e59dfd50b2d1658986ca5d2ad4d789aa9fac6"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lwt.6.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lwt 6.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed lwt.6.0.0
-> installed lwt.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:02.10 ---> saved as "d1d3972b7b24728d06c93177f6b464083e8e12f1ca8d96081c3c661cf2ff96b3"
/home/opam: (run (shell "opam reinstall --with-test --verbose lwt.6.0.0;\
\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 \"\\\"centos-10\\\"\"; 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.6.0.0' && 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 6.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [lwt: dune exec]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "exec" "-p" "lwt" "src/unix/config/discover.exe" "--" "--save" "--use-libev" "false" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lwt.6.0.0)
Processing 2/4: [lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lwt" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lwt.6.0.0)
- (cd _build/default/test/core && ./main.exe)
- Testing library 'core'...
- ...............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................SSSSSSSSSSSSSSSSSSSSSSS..................................................................................................................................................
- Ok. 705 tests ran, 23 tests skipped in 0.25 seconds
- (cd _build/default/test/unix && ./main.exe)
- Testing library 'unix'...
- .................................SSSSS..............................................................................................................SSSS...................................................................................
- Ok. 226 tests ran, 9 tests skipped in 6.29 seconds
-> compiled lwt.6.0.0
-> removed lwt.6.0.0
-> installed lwt.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:02.24 ---> saved as "e87e701d7212e9a17d09385ec188bf4a18df19b12d1db51d1be65745e2c8f51e"
Job succeeded
2025-12-30 11:02.29: Job succeeded