- github
- ocaml
- opam-repository
- 395113
- distributions,fedora-42-ocaml-4.14,lwt_glib.1.1.0,tests
(not at the head of any monitored branch or PR)
2026-03-17 10:25.58: New job: test lwt_glib.1.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-4.14@sha256:c2c3b2ab220f54c8fc0080ac96d9ebcbd7f26a31aa0ebbdadc1cfdfe9c4e9ace
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_glib.1.1.0 1.1.0
RUN opam reinstall lwt_glib.1.1.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_glib.1.1.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_glib.1.1.0) || true
RUN opam reinstall --with-test --verbose lwt_glib.1.1.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_glib.1.1.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 .
2026-03-17 10:25.58: Using cache hint "ocaml/opam:fedora-42-ocaml-4.14@sha256:c2c3b2ab220f54c8fc0080ac96d9ebcbd7f26a31aa0ebbdadc1cfdfe9c4e9ace-lwt_glib.1.1.0-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:25.58: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-4.14@sha256:c2c3b2ab220f54c8fc0080ac96d9ebcbd7f26a31aa0ebbdadc1cfdfe9c4e9ace)
(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_glib.1.1.0 1.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_glib.1.1.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_glib.1.1.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_glib.1.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose lwt_glib.1.1.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_glib.1.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-17 10:25.58: Waiting for resource in pool OCluster
2026-03-17 11:36.24: Waiting for worker…
2026-03-17 11:38.34: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
packages/bimage-lwt/bimage-lwt.0.3.0/opam | 6 +++++-
packages/bimage-lwt/bimage-lwt.0.3.1/opam | 6 +++++-
packages/bimage-lwt/bimage-lwt.0.4.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.0.11.0/opam | 4 +++-
packages/caqti-lwt/caqti-lwt.1.0.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.2.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.3.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.6.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.7.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.8.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.9.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.0.1/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.1.1/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.2.4/opam | 6 +++++-
packages/fuseau-lwt/fuseau-lwt.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.1.13/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.2/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.3/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.0.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.3.1.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.2.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.1/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.2/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.1.0/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.2.0/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.3.0/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.1/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.2/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.3/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.4/opam | 7 ++++++-
packages/lwt_eio/lwt_eio.0.5.1/opam | 7 ++++++-
packages/lwt_eio/lwt_eio.0.5/opam | 7 ++++++-
packages/lwt_glib/lwt_glib.1.0.1/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.1.0/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.1.1/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.0/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.1/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.0.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.0.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.1.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.3/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.4/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.3/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.1.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.8.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.8.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.3/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.6/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.7/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.8/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.9/opam | 6 +++++-
packages/mwt/mwt.0.1.0/opam | 6 +++++-
packages/nocrypto/nocrypto.0.5.4-1/opam | 6 +++++-
packages/nocrypto/nocrypto.0.5.4-2/opam | 6 +++++-
packages/ocluster/ocluster.0.1/opam | 4 +++-
packages/ocluster/ocluster.0.2.1/opam | 6 +++++-
packages/ocluster/ocluster.0.2/opam | 4 +++-
packages/ocluster/ocluster.0.3.0/opam | 6 +++++-
packages/picos/picos.0.3.0/opam | 6 +++++-
packages/picos/picos.0.4.0/opam | 6 +++++-
packages/picos_lwt/picos_lwt.0.5.0/opam | 6 +++++-
packages/picos_lwt/picos_lwt.0.6.0/opam | 6 +++++-
packages/tezt/tezt.2.0.0/opam | 6 +++++-
packages/tezt/tezt.3.0.0/opam | 4 +++-
packages/tezt/tezt.3.1.0/opam | 4 +++-
packages/tezt/tezt.3.1.1/opam | 4 +++-
packages/tezt/tezt.4.0.0/opam | 4 +++-
packages/tezt/tezt.4.1.0/opam | 4 +++-
packages/tezt/tezt.4.2.0/opam | 4 +++-
packages/tezt/tezt.4.3.0/opam | 4 +++-
84 files changed, 403 insertions(+), 84 deletions(-)
(from ocaml/opam:fedora-42-ocaml-4.14@sha256:c2c3b2ab220f54c8fc0080ac96d9ebcbd7f26a31aa0ebbdadc1cfdfe9c4e9ace)
2026-03-17 11:38.44 ---> using "9c5395fbc27b2db213a343ea87dbcb1813c95d62f9c3025571a0161729479421" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 11:38.44 ---> using "f608ebc662b7eecc6ada72ed4d89da9cde4182db75dfb83124f47352779bf260" 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
2026-03-17 11:38.44 ---> using "4a7ccfa6777a2308e145fe026a3f705ea352e94cb58bc1a556ca58c23f563800" 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=fedora os-version=42
# 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
2026-03-17 11:38.44 ---> using "0366d5bfcceb08b9de5b1a7462fd9e7a601406d4964f647393ce7819cc389e27" 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/"))
2026-03-17 11:38.44 ---> using "a10aca92108769bffe855973fa06fad1d6f0a167ba77e45e83d5452f527a2b3e" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 11:38.45 ---> using "93fa1d4e8b8cbe54f9833d0e7b9cf0c00a50f8afe8af8c3cdb8a6911bd137465" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 11:38.45 ---> using "04333189b740eb73396fa211ce23e4ed3691c2fa9b8e2ddb08ddf131c6bb040d" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 42 - x86_64 - Updates 100% | 141.2 KiB/s | 19.1 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-03-17 11:38.45 ---> using "8937bc199a2fa33e44d88d5bd66aa34f6a0064279eb3a5b7c3207e9e9c2c347d" from cache
/home/opam: (run (shell "opam pin add -k version -yn lwt_glib.1.1.0 1.1.0"))
lwt_glib is now pinned to version 1.1.0
2026-03-17 11:38.45 ---> using "f582899d0ace79c7e75277e420b809bb8deb16133e6a198c70aa7eda1b47cb4b" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lwt_glib.1.1.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_glib.1.1.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_glib.1.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
- install base-bytes base [required by ocplib-endian]
- install conf-glib-2 1 [required by lwt_glib]
- install conf-pkg-config 4 [required by lwt_glib]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.1 [required by lwt]
- install dune-configurator 3.21.1 [required by lwt]
- install jbuilder 1.0+beta20.2 (deprecated) [required by lwt_glib]
- install lwt 5.9.2 [required by lwt_glib]
- install lwt_glib 1.1.0 (pinned)
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
The following system packages will first need to be installed:
glib2-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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/sbin/sudo "yum" "install" "-y" "glib2-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- glib2-devel x86_64 2.84.4-1.fc42 updates 15.8 MiB
- Installing dependencies:
- cmake-filesystem x86_64 3.31.6-2.fc42 fedora 0.0 B
- libblkid-devel x86_64 2.40.4-10.fc42 updates 44.9 KiB
- libffi-devel x86_64 3.4.6-5.fc42 fedora 33.1 KiB
- libmount-devel x86_64 2.40.4-10.fc42 updates 63.5 KiB
- libselinux-devel x86_64 3.8-3.fc42 updates 126.8 KiB
- libsepol-devel x86_64 3.8-1.fc42 fedora 120.8 KiB
- pcre2-devel x86_64 10.46-1.fc42 updates 2.1 MiB
- pcre2-utf16 x86_64 10.46-1.fc42 updates 626.3 KiB
- pcre2-utf32 x86_64 10.46-1.fc42 updates 602.2 KiB
- python3-packaging noarch 24.2-3.fc42 fedora 555.7 KiB
- sysprof-capture-devel x86_64 48.1-1.fc42 updates 274.0 KiB
- zlib-ng-compat-devel x86_64 2.2.5-2.fc42 updates 107.0 KiB
-
- Transaction Summary:
- Installing: 13 packages
-
- Total size of inbound packages is 3 MiB. Need to download 3 MiB.
- After this operation, 20 MiB extra will be used (install 20 MiB, remove 0 B).
- [ 1/13] libffi-devel-0:3.4.6-5.fc42.x86 100% | 394.2 KiB/s | 28.8 KiB | 00m00s
- [ 2/13] libmount-devel-0:2.40.4-10.fc42 100% | 1.2 MiB/s | 24.3 KiB | 00m00s
- [ 3/13] glib2-devel-0:2.84.4-1.fc42.x86 100% | 10.8 MiB/s | 1.5 MiB | 00m00s
- [ 4/13] libselinux-devel-0:3.8-3.fc42.x 100% | 3.1 MiB/s | 151.4 KiB | 00m00s
- [ 5/13] python3-packaging-0:24.2-3.fc42 100% | 1.0 MiB/s | 154.0 KiB | 00m00s
- [ 6/13] pcre2-devel-0:10.46-1.fc42.x86_ 100% | 10.8 MiB/s | 543.1 KiB | 00m00s
- [ 7/13] libsepol-devel-0:3.8-1.fc42.x86 100% | 711.9 KiB/s | 48.4 KiB | 00m00s
- [ 8/13] pcre2-utf32-0:10.46-1.fc42.x86_ 100% | 7.0 MiB/s | 228.8 KiB | 00m00s
- [ 9/13] pcre2-utf16-0:10.46-1.fc42.x86_ 100% | 2.9 MiB/s | 241.6 KiB | 00m00s
- [10/13] cmake-filesystem-0:3.31.6-2.fc4 100% | 4.3 MiB/s | 17.6 KiB | 00m00s
- [11/13] sysprof-capture-devel-0:48.1-1. 100% | 1.6 MiB/s | 56.0 KiB | 00m00s
- [12/13] zlib-ng-compat-devel-0:2.2.5-2. 100% | 1.6 MiB/s | 38.3 KiB | 00m00s
- [13/13] libblkid-devel-0:2.40.4-10.fc42 100% | 1.1 MiB/s | 23.4 KiB | 00m00s
- --------------------------------------------------------------------------------
- [13/13] Total 100% | 5.3 MiB/s | 3.0 MiB | 00m01s
- Running transaction
- [ 1/15] Verify package files 100% | 1.2 KiB/s | 13.0 B | 00m00s
- [ 2/15] Prepare transaction 100% | 224.0 B/s | 13.0 B | 00m00s
- [ 3/15] Installing libblkid-devel-0:2.4 100% | 22.5 MiB/s | 46.0 KiB | 00m00s
- [ 4/15] Installing cmake-filesystem-0:3 100% | 1.5 MiB/s | 7.6 KiB | 00m00s
- [ 5/15] Installing zlib-ng-compat-devel 100% | 106.0 MiB/s | 108.5 KiB | 00m00s
- [ 6/15] Installing sysprof-capture-deve 100% | 135.2 MiB/s | 276.9 KiB | 00m00s
- [ 7/15] Installing pcre2-utf32-0:10.46- 100% | 196.3 MiB/s | 603.1 KiB | 00m00s
- [ 8/15] Installing pcre2-utf16-0:10.46- 100% | 204.2 MiB/s | 627.2 KiB | 00m00s
- [ 9/15] Installing pcre2-devel-0:10.46- 100% | 99.7 MiB/s | 2.1 MiB | 00m00s
- [10/15] Installing libsepol-devel-0:3.8 100% | 25.1 MiB/s | 128.3 KiB | 00m00s
- [11/15] Installing libselinux-devel-0:3 100% | 52.6 MiB/s | 161.6 KiB | 00m00s
- [12/15] Installing libmount-devel-0:2.4 100% | 63.0 MiB/s | 64.5 KiB | 00m00s
- [13/15] Installing libffi-devel-0:3.4.6 100% | 34.0 MiB/s | 34.8 KiB | 00m00s
- [14/15] Installing python3-packaging-0: 100% | 69.3 MiB/s | 568.0 KiB | 00m00s
- [15/15] Installing glib2-devel-0:2.84.4 100% | 95.8 MiB/s | 15.9 MiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "glib2-devel"
- glib2-devel-2.84.4-1.fc42.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2 (cached)
-> installed conf-glib-2.1
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved jbuilder.1.0+beta20.2 (cached)
-> retrieved lwt.5.9.2 (cached)
-> retrieved lwt_glib.1.1.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed jbuilder.1.0+beta20.2
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed lwt.5.9.2
-> installed lwt_glib.1.1.0
Done.
<><> jbuilder.1.0+beta20.2 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:39.20 ---> saved as "b08ab65a607f9fc128be5d685c45d451585a5a6f5738eabe5aa18aee1029bab4"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lwt_glib.1.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lwt_glib 1.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed lwt_glib.1.1.0
-> installed lwt_glib.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:39.23 ---> saved as "a610c410692f621da08268d4c8783747cbaa23afbb20ad633a7874a023cc53a1"
/home/opam: (run (shell "opam reinstall --with-test --verbose lwt_glib.1.1.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_glib.1.1.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_glib 1.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [lwt_glib: jbuilder build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "jbuilder" "build" "-p" "lwt_glib" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0)
- ocaml (internal)
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 3, characters 14-37:
- 3 | Hashtbl.add Toploop.directive_table "require" (Toploop.Directive_string ignore);
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 4, characters 14-37:
- 4 | Hashtbl.add Toploop.directive_table "use" (Toploop.Directive_string (fun _ ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 6, characters 14-37:
- 6 | Hashtbl.add Toploop.directive_table "use_mod" (Toploop.Directive_string (fun _ ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- ocaml (internal)
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 3, characters 14-37:
- 3 | Hashtbl.add Toploop.directive_table "require" (Toploop.Directive_string ignore);
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 4, characters 14-37:
- 4 | Hashtbl.add Toploop.directive_table "use" (Toploop.Directive_string (fun _ ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 6, characters 14-37:
- 6 | Hashtbl.add Toploop.directive_table "use_mod" (Toploop.Directive_string (fun _ ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- ocamlc src/glib/config/.discover.eobjs/discover.{cmi,cmo,cmt}
- File "src/glib/config/discover.ml", line 15, characters 8-29:
- 15 | try Pervasives.input_line input_channel
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc src/glib/.lwt_glib.objs/lwt_glib.{cmo,cmt}
- File "src/glib/lwt_glib.ml", line 27, characters 42-59:
- 27 | | State_glib_into_lwt of (unit -> unit) Lwt_sequence.node * (unit -> unit) Lwt_sequence.node
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 27, characters 77-94:
- 27 | | State_glib_into_lwt of (unit -> unit) Lwt_sequence.node * (unit -> unit) Lwt_sequence.node
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 86, characters 14-28:
- 86 | ignore (Lwt_main.yield ())
- ^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.yield
- Use Lwt.pause instead
- File "src/glib/lwt_glib.ml", line 111, characters 35-53:
- 111 | state := State_glib_into_lwt(Lwt_sequence.add_l enter Lwt_main.enter_iter_hooks,
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 111, characters 60-85:
- 111 | state := State_glib_into_lwt(Lwt_sequence.add_l enter Lwt_main.enter_iter_hooks,
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.enter_iter_hooks
- Use module Lwt_main.Enter_iter_hooks.
- File "src/glib/lwt_glib.ml", line 112, characters 35-53:
- 112 | Lwt_sequence.add_l leave Lwt_main.leave_iter_hooks)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 112, characters 60-85:
- 112 | Lwt_sequence.add_l leave Lwt_main.leave_iter_hooks)
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.leave_iter_hooks
- Use module Lwt_main.Leave_iter_hooks.
- File "src/glib/lwt_glib.ml", line 124, characters 4-23:
- 124 | Lwt_sequence.remove node_enter;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 125, characters 4-23:
- 125 | Lwt_sequence.remove node_leave;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- ocamlopt src/glib/config/.discover.eobjs/discover.{cmx,o}
- File "src/glib/config/discover.ml", line 15, characters 8-29:
- 15 | try Pervasives.input_line input_channel
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlopt src/glib/.lwt_glib.objs/lwt_glib.{cmx,o}
- File "src/glib/lwt_glib.ml", line 27, characters 42-59:
- 27 | | State_glib_into_lwt of (unit -> unit) Lwt_sequence.node * (unit -> unit) Lwt_sequence.node
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 27, characters 77-94:
- 27 | | State_glib_into_lwt of (unit -> unit) Lwt_sequence.node * (unit -> unit) Lwt_sequence.node
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 86, characters 14-28:
- 86 | ignore (Lwt_main.yield ())
- ^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.yield
- Use Lwt.pause instead
- File "src/glib/lwt_glib.ml", line 111, characters 35-53:
- 111 | state := State_glib_into_lwt(Lwt_sequence.add_l enter Lwt_main.enter_iter_hooks,
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 111, characters 60-85:
- 111 | state := State_glib_into_lwt(Lwt_sequence.add_l enter Lwt_main.enter_iter_hooks,
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.enter_iter_hooks
- Use module Lwt_main.Enter_iter_hooks.
- File "src/glib/lwt_glib.ml", line 112, characters 35-53:
- 112 | Lwt_sequence.add_l leave Lwt_main.leave_iter_hooks)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 112, characters 60-85:
- 112 | Lwt_sequence.add_l leave Lwt_main.leave_iter_hooks)
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Lwt_main.leave_iter_hooks
- Use module Lwt_main.Leave_iter_hooks.
- File "src/glib/lwt_glib.ml", line 124, characters 4-23:
- 124 | Lwt_sequence.remove node_enter;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
- File "src/glib/lwt_glib.ml", line 125, characters 4-23:
- 125 | Lwt_sequence.remove node_leave;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Lwt_sequence
- Use package lwt-dllist. See
- https://github.com/mirage/lwt-dllist
Processing 2/4: [lwt_glib: jbuilder runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "jbuilder" "runtest" "-p" "lwt_glib" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0)
- ocaml (internal)
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 3, characters 14-37:
- 3 | Hashtbl.add Toploop.directive_table "require" (Toploop.Directive_string ignore);
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 4, characters 14-37:
- 4 | Hashtbl.add Toploop.directive_table "use" (Toploop.Directive_string (fun _ ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/test/core/jbuild.ml", line 6, characters 14-37:
- 6 | Hashtbl.add Toploop.directive_table "use_mod" (Toploop.Directive_string (fun _ ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- ocaml (internal)
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 3, characters 14-37:
- 3 | Hashtbl.add Toploop.directive_table "require" (Toploop.Directive_string ignore);
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 4, characters 14-37:
- 4 | Hashtbl.add Toploop.directive_table "use" (Toploop.Directive_string (fun _ ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
- File "/home/opam/.opam/4.14/.opam-switch/build/lwt_glib.1.1.0/_build/.jbuilds/default/src/core/jbuild.ml", line 6, characters 14-37:
- 6 | Hashtbl.add Toploop.directive_table "use_mod" (Toploop.Directive_string (fun _ ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Toploop.directive_table
-> compiled lwt_glib.1.1.0
-> removed lwt_glib.1.1.0
-> installed lwt_glib.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:39.27 ---> saved as "70033283d35fbbb4cdd1c7d6564ea3365dce96303829f5d308891aa01516825d"
Job succeeded
2026-03-17 11:39.35: Job succeeded