- github
- ocaml
- opam-repository
- a9c2df
- distributions,fedora-42-ocaml-4.14,lwt.6.0.0,tests
(not at the head of any monitored branch or PR)
2025-12-30 15:41.48: New job: test lwt.6.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29147/head (a9c2dfa8be3eba34b7f4bd01fa139b8e6d829c91)
on fedora-42-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/29147/head" && git reset --hard a9c2dfa8
git fetch origin master
git merge --no-edit f2d102f951a5dc2af6db218c6aef53c80186295a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-4.14@sha256:96a33ae19abb9333fb915bd303301c11ace2a02efa3240eed9b33f575ac4119f
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 "\"fedora-42\""; 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 "\"fedora-42\""; 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 15:41.48: Using cache hint "ocaml/opam:fedora-42-ocaml-4.14@sha256:96a33ae19abb9333fb915bd303301c11ace2a02efa3240eed9b33f575ac4119f-lwt.6.0.0-a9c2dfa8be3eba34b7f4bd01fa139b8e6d829c91"
2025-12-30 15:41.48: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-4.14@sha256:96a33ae19abb9333fb915bd303301c11ace2a02efa3240eed9b33f575ac4119f)
(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 \"\\\"fedora-42\\\"\"; 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 \"\\\"fedora-42\\\"\"; 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 15:41.48: Waiting for resource in pool OCluster
2025-12-30 15:41.51: Waiting for worker…
2025-12-30 15:45.39: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 91% (17419/19118)
Updating files: 92% (17589/19118)
Updating files: 93% (17780/19118)
Updating files: 94% (17971/19118)
Updating files: 95% (18163/19118)
Updating files: 96% (18354/19118)
Updating files: 97% (18545/19118)
Updating files: 98% (18736/19118)
Updating files: 99% (18927/19118)
Updating files: 100% (19118/19118)
Updating files: 100% (19118/19118), done.
HEAD is now at f2d102f951 Merge pull request #29150 from raphael-proust/llvm-20-21-only-cosmetics
Merge made by the 'ort' strategy.
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 | 46 ++++++++++++++++
.../lwt_runtime_events.6.0.0/opam | 39 +++++++++++++
4 files changed, 190 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:fedora-42-ocaml-4.14@sha256:96a33ae19abb9333fb915bd303301c11ace2a02efa3240eed9b33f575ac4119f)
Unable to find image 'ocaml/opam:fedora-42-ocaml-4.14@sha256:96a33ae19abb9333fb915bd303301c11ace2a02efa3240eed9b33f575ac4119f' locally
docker.io/ocaml/opam@sha256:96a33ae19abb9333fb915bd303301c11ace2a02efa3240eed9b33f575ac4119f: Pulling from ocaml/opam
166acd75d0b1: Pulling fs layer
3f5403f6a2f2: Pulling fs layer
67aec952ce79: Pulling fs layer
0bb48c2941bc: Pulling fs layer
4c00ee60bee0: Pulling fs layer
0405ae6db764: Pulling fs layer
166acd75d0b1: Waiting
75f105568f25: Pulling fs layer
67aec952ce79: Waiting
3f5403f6a2f2: Waiting
0bb48c2941bc: Waiting
4c00ee60bee0: Waiting
0405ae6db764: Waiting
89a1a8bb55db: Pulling fs layer
75f105568f25: Waiting
4dbdc277b5cc: Pulling fs layer
89a1a8bb55db: Waiting
b9ac9b5d0d58: Pulling fs layer
4dbdc277b5cc: Waiting
ed3c58c8dfb3: Pulling fs layer
b9ac9b5d0d58: Waiting
a7f2118798c2: Pulling fs layer
ed3c58c8dfb3: Waiting
6cf8123db17c: Pulling fs layer
a7f2118798c2: Waiting
5ac472da51a5: Pulling fs layer
6cf8123db17c: Waiting
3922aa403f38: Pulling fs layer
5ac472da51a5: Waiting
98656b983bdb: Pulling fs layer
929c1c6503b7: Pulling fs layer
930e6f5c8d1d: Pulling fs layer
3922aa403f38: Waiting
98656b983bdb: Waiting
929c1c6503b7: Waiting
ea061ab209c7: Pulling fs layer
930e6f5c8d1d: Waiting
b6a2cb7f5c47: Pulling fs layer
c69cf0663843: Pulling fs layer
ea061ab209c7: Waiting
b6a2cb7f5c47: Waiting
4f4fb700ef54: Pulling fs layer
067fb1fc80b8: Pulling fs layer
c69cf0663843: Waiting
4f4fb700ef54: Waiting
7ea6a305f43c: Pulling fs layer
e0c82749fa91: Pulling fs layer
f5f2f52bbfe6: Pulling fs layer
7ea6a305f43c: Waiting
7f3917cda1bd: Pulling fs layer
e0c82749fa91: Waiting
f5f2f52bbfe6: Waiting
12e8a6ba30d9: Pulling fs layer
7f3917cda1bd: Waiting
52881c97bb6a: Pulling fs layer
12e8a6ba30d9: Waiting
52881c97bb6a: Waiting
e4dd3ced19f6: Pulling fs layer
e4dd3ced19f6: Waiting
85b85699624b: Pulling fs layer
5ec3770e6174: Pulling fs layer
0140052d9f0a: Pulling fs layer
97821c341b06: Pulling fs layer
85b85699624b: Waiting
5ec3770e6174: Waiting
0140052d9f0a: Waiting
6b0f44402a83: Pulling fs layer
97821c341b06: Waiting
637838f6bf32: Pulling fs layer
2c4c5f425aca: Pulling fs layer
6b0f44402a83: Waiting
10de3752fc9c: Pulling fs layer
637838f6bf32: Waiting
2c4c5f425aca: Waiting
cc67aefe0e92: Pulling fs layer
10de3752fc9c: Waiting
c0ce6ac204a8: Pulling fs layer
b9ec1cd9680e: Pulling fs layer
c0ce6ac204a8: Waiting
cc67aefe0e92: Waiting
9c82a29817da: Pulling fs layer
f63f3e885f02: Pulling fs layer
b9ec1cd9680e: Waiting
b3e15bf893a9: Pulling fs layer
9c82a29817da: Waiting
f63f3e885f02: Waiting
b3e15bf893a9: Waiting
166acd75d0b1: Verifying Checksum
166acd75d0b1: Download complete
3f5403f6a2f2: Verifying Checksum
3f5403f6a2f2: Download complete
166acd75d0b1: Pull complete
3f5403f6a2f2: Pull complete
67aec952ce79: Verifying Checksum
67aec952ce79: Download complete
4c00ee60bee0: Verifying Checksum
4c00ee60bee0: Download complete
0405ae6db764: Verifying Checksum
0405ae6db764: Download complete
75f105568f25: Verifying Checksum
75f105568f25: Download complete
89a1a8bb55db: Verifying Checksum
89a1a8bb55db: Download complete
4dbdc277b5cc: Verifying Checksum
4dbdc277b5cc: Download complete
ed3c58c8dfb3: Download complete
b9ac9b5d0d58: Verifying Checksum
b9ac9b5d0d58: Download complete
a7f2118798c2: Verifying Checksum
a7f2118798c2: Download complete
5ac472da51a5: Verifying Checksum
5ac472da51a5: Download complete
67aec952ce79: Pull complete
6cf8123db17c: Verifying Checksum
6cf8123db17c: Download complete
3922aa403f38: Verifying Checksum
3922aa403f38: Download complete
98656b983bdb: Verifying Checksum
98656b983bdb: Download complete
929c1c6503b7: Verifying Checksum
929c1c6503b7: Download complete
ea061ab209c7: Verifying Checksum
ea061ab209c7: Download complete
930e6f5c8d1d: Download complete
c69cf0663843: Download complete
b6a2cb7f5c47: Download complete
0bb48c2941bc: Verifying Checksum
0bb48c2941bc: Download complete
067fb1fc80b8: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
7ea6a305f43c: Download complete
e0c82749fa91: Verifying Checksum
e0c82749fa91: Download complete
7f3917cda1bd: Verifying Checksum
7f3917cda1bd: Download complete
12e8a6ba30d9: Verifying Checksum
12e8a6ba30d9: Download complete
52881c97bb6a: Verifying Checksum
52881c97bb6a: Download complete
e4dd3ced19f6: Verifying Checksum
e4dd3ced19f6: Download complete
85b85699624b: Verifying Checksum
85b85699624b: Download complete
5ec3770e6174: Verifying Checksum
5ec3770e6174: Download complete
0140052d9f0a: Download complete
97821c341b06: Verifying Checksum
97821c341b06: Download complete
637838f6bf32: Verifying Checksum
637838f6bf32: Download complete
10de3752fc9c: Verifying Checksum
10de3752fc9c: Download complete
cc67aefe0e92: Download complete
c0ce6ac204a8: Verifying Checksum
c0ce6ac204a8: Download complete
2c4c5f425aca: Verifying Checksum
2c4c5f425aca: Download complete
b9ec1cd9680e: Verifying Checksum
b9ec1cd9680e: Download complete
f63f3e885f02: Verifying Checksum
f63f3e885f02: Download complete
9c82a29817da: Verifying Checksum
9c82a29817da: Download complete
b3e15bf893a9: Verifying Checksum
b3e15bf893a9: Download complete
6b0f44402a83: Verifying Checksum
6b0f44402a83: Download complete
0bb48c2941bc: Pull complete
4c00ee60bee0: Pull complete
0405ae6db764: Pull complete
75f105568f25: Pull complete
89a1a8bb55db: Pull complete
4dbdc277b5cc: Pull complete
b9ac9b5d0d58: Pull complete
ed3c58c8dfb3: Pull complete
a7f2118798c2: Pull complete
6cf8123db17c: Pull complete
5ac472da51a5: Pull complete
3922aa403f38: Pull complete
98656b983bdb: Pull complete
929c1c6503b7: Pull complete
930e6f5c8d1d: Pull complete
ea061ab209c7: Pull complete
b6a2cb7f5c47: Pull complete
c69cf0663843: Pull complete
4f4fb700ef54: Pull complete
067fb1fc80b8: Pull complete
7ea6a305f43c: Pull complete
e0c82749fa91: Pull complete
f5f2f52bbfe6: Pull complete
7f3917cda1bd: Pull complete
12e8a6ba30d9: Pull complete
52881c97bb6a: Pull complete
e4dd3ced19f6: Pull complete
85b85699624b: Pull complete
5ec3770e6174: Pull complete
0140052d9f0a: Pull complete
97821c341b06: Pull complete
6b0f44402a83: Pull complete
637838f6bf32: Pull complete
2c4c5f425aca: Pull complete
10de3752fc9c: Pull complete
cc67aefe0e92: Pull complete
c0ce6ac204a8: Pull complete
b9ec1cd9680e: Pull complete
9c82a29817da: Pull complete
f63f3e885f02: Pull complete
b3e15bf893a9: Pull complete
Digest: sha256:96a33ae19abb9333fb915bd303301c11ace2a02efa3240eed9b33f575ac4119f
Status: Downloaded newer image for ocaml/opam@sha256:96a33ae19abb9333fb915bd303301c11ace2a02efa3240eed9b33f575ac4119f
2025-12-30 15:45.44 ---> using "1eb580d080c4cbeff2dbdaad43c94e06bc6be7074e19a8b1e973341633b4209d" 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-30 15:45.44 ---> using "7d08dfb31b88850bee4c2af333110b2c8cbd3d382e29748c38fca6b5357c86bf" 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 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 15:46.10 ---> saved as "738d5389f4784823cf2b08f9cae9b21a1d669b752a50a43d21d8a2dccd50391d"
/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=fedora os-version=42
# 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 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-12-30 15:46.11 ---> saved as "4f0254f279a3cfca944c9ccb82c0a6c38f24bba42ac6bfe08301b76400a41faf"
/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 15:46.21 ---> saved as "c9ed0ba48f865050aa05ebecb2b7ea7e5b0ff8e984fed308f858827fd5e0ceba"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 15:46.32 ---> saved as "6ff08113b6a2b4d5d5d802a3857dd8b5941292f757ceb0a112313529316279d1"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 15:46.55 ---> saved as "5518586dbc42137017c558dfa879cbae073b480c27cfd50b39b84d9c309fbaea"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 42 - x86_64 100% | 52.4 KiB/s | 22.8 KiB | 00m00s
- Fedora 42 openh264 (From Cisco) - x86_ 100% | 3.4 KiB/s | 986.0 B | 00m00s
- Fedora 42 - x86_64 - Updates 100% | 113.1 KiB/s | 20.1 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2025-12-30 15:47.01 ---> saved as "c0482a23ec2ab5cfcfaa6411692cd39cecf0032b6e902ce1b58d82b765a90cb5"
/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 15:47.01 ---> saved as "c6b979a0ef2fa388193f17d3cfd92b416ecbec480375c1144211a1901cacb498"
/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 \"\\\"fedora-42\\\"\"; 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 15:47.46 ---> saved as "c6966d92b14b80294d9bf8e66828bab1d007f4c609fe20302d6dfd6ae81d653c"
/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 15:48.01 ---> saved as "1abc4c25d900371cf43e04a5c6f6327189c6ee499e1bf9a4e207206bf14b6d57"
/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 \"\\\"fedora-42\\\"\"; 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/4.14/.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/4.14/.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.27 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 15:48.15 ---> saved as "61433e7f9193685fee782c1cb5fa296152ccd780867fd23aa7278ff371ebb974"
Job succeeded
2025-12-30 15:48.32: Job succeeded