- github
- ocaml
- opam-repository
- 27b93b
- distributions,fedora-42-ocaml-4.14,libbpf.0.1.0,tests
(not at the head of any monitored branch or PR)
2025-11-10 11:03.00: New job: test libbpf.0.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28262/head (27b93b8d254212c1249540d74f600850023faef7)
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/28262/head" && git reset --hard 27b93b8d
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-4.14@sha256:d6344a03c7dd73cf1f8acd87060e455ef56dd7e025c8a03e1073f1795f459313
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 libbpf.0.1.0 0.1.0
RUN opam reinstall libbpf.0.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" != 'libbpf.0.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 libbpf.0.1.0) || true
RUN opam reinstall --with-test --verbose libbpf.0.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" != 'libbpf.0.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 .
2025-11-10 11:03.00: Using cache hint "ocaml/opam:fedora-42-ocaml-4.14@sha256:d6344a03c7dd73cf1f8acd87060e455ef56dd7e025c8a03e1073f1795f459313-libbpf.0.1.0-27b93b8d254212c1249540d74f600850023faef7"
2025-11-10 11:03.00: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-4.14@sha256:d6344a03c7dd73cf1f8acd87060e455ef56dd7e025c8a03e1073f1795f459313)
(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 libbpf.0.1.0 0.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall libbpf.0.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\" != 'libbpf.0.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 libbpf.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose libbpf.0.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\" != 'libbpf.0.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"))
)
2025-11-10 11:03.00: Waiting for resource in pool OCluster
2025-11-10 14:12.15: Waiting for worker…
2025-11-10 14:14.13: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Merge made by the 'ort' strategy.
packages/conf-bpftool/conf-bpftool.0.1.0/opam | 4 +++-
packages/libbpf/libbpf.0.1.0/opam | 11 ++++++-----
2 files changed, 9 insertions(+), 6 deletions(-)
(from ocaml/opam:fedora-42-ocaml-4.14@sha256:d6344a03c7dd73cf1f8acd87060e455ef56dd7e025c8a03e1073f1795f459313)
Unable to find image 'ocaml/opam:fedora-42-ocaml-4.14@sha256:d6344a03c7dd73cf1f8acd87060e455ef56dd7e025c8a03e1073f1795f459313' locally
docker.io/ocaml/opam@sha256:d6344a03c7dd73cf1f8acd87060e455ef56dd7e025c8a03e1073f1795f459313: Pulling from ocaml/opam
a534787e6fcf: Pulling fs layer
a534787e6fcf: Verifying Checksum
a534787e6fcf: Download complete
a534787e6fcf: Pull complete
Digest: sha256:d6344a03c7dd73cf1f8acd87060e455ef56dd7e025c8a03e1073f1795f459313
Status: Downloaded newer image for ocaml/opam@sha256:d6344a03c7dd73cf1f8acd87060e455ef56dd7e025c8a03e1073f1795f459313
2025-11-10 14:20.24 ---> using "b0b7f9f0e97c317448cfec36dd0c4fa6e5a90602f94003ee98ef677446a93a41" 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-11-10 14:20.24 ---> using "9e3d4d6e84a133d60c37d9656abc1e9965285e436dd8f6845e767b076261f977" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 14:20.24 ---> using "3c0939f81de8cc60382675c57086f2de7b337c035651824439944b3632f5c3cb" 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~alpha1
# 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-11-10 14:20.24 ---> using "a5f6bcc12f6d9aa36d5d0bd41ea6cee8cf2ad858bdb749fa277098a1854428b6" 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-11-10 14:20.24 ---> using "befc24de06d3f9eb27955e2cbfba6dfdde9059cb4c4386f98e2a974f3e2fa03a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 14:20.25 ---> using "448520c29672bbcae44b3732aac9e1be2eb1c277e940a696dd2b8db38d686570" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 14:20.25 ---> saved as "8064febd3eee51d331426678ad2b9afb0f86983a10ceb5dad5436493b39de0db"
/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% | 103.4 KiB/s | 19.3 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2025-11-10 14:20.29 ---> saved as "a2c9f5394e589803148763c92ce83be75b4652c0f7ff02463b0abd4382642fa3"
/home/opam: (run (shell "opam pin add -k version -yn libbpf.0.1.0 0.1.0"))
libbpf is now pinned to version 0.1.0
2025-11-10 14:20.30 ---> saved as "e2f3a1a355fef051060428ec470e9b4ae6511dfc1598df262ceb9836c6b17654"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall libbpf.0.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\" != 'libbpf.0.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"))
libbpf.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 36 packages
- install base v0.16.4 [required by ppx_expect]
- install bigarray-compat 1.1.0 [required by ctypes]
- install conf-bpftool 0.1.0 [required by libbpf]
- install conf-clang 2 [required by libbpf]
- install conf-libbpf 0.1.0 [required by libbpf]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.23.0 [required by libbpf]
- install dune 3.20.2 [required by libbpf]
- install dune-configurator 3.20.2 [required by ctypes]
- install integers 0.7.0 [required by ctypes]
- install jane-street-headers v0.16.0 [required by time_now]
- install jst-config v0.16.0 [required by time_now]
- install libbpf 0.1.0 (pinned)
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install ppx_assert v0.16.0 [required by jst-config]
- install ppx_base v0.16.0 [required by time_now]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_base]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by libbpf]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_expect v0.16.2 [required by libbpf]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_hash v0.16.0 [required by ppx_base]
- install ppx_here v0.16.0 [required by ppx_expect]
- install ppx_inline_test v0.16.1 [required by ppx_expect]
- install ppx_optcomp v0.16.0 [required by time_now]
- install ppx_sexp_conv v0.16.0 [required by ppx_base]
- install ppxlib 0.35.0 [required by ppx_deriving, ppx_expect]
- install re 1.14.0 [required by ppx_expect]
- install sexplib0 v0.16.0 [required by ppxlib, base]
- install stdio v0.16.0 [required by ppx_expect]
- install stdlib-shims 0.3.0 [required by integers, ppxlib]
- install time_now v0.16.0 [required by ppx_inline_test]
The following system packages will first need to be installed:
bpftool clang libbpf-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" "bpftool" "clang" "libbpf-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- bpftool x86_64 7.5.0-3.fc42 updates 725.9 KiB
- clang x86_64 20.1.8-4.fc42 updates 372.9 KiB
- libbpf-devel x86_64 2:1.5.0-2.fc42 fedora 395.0 KiB
- Installing dependencies:
- clang-libs x86_64 20.1.8-4.fc42 updates 120.2 MiB
- clang-resource-filesystem x86_64 20.1.8-4.fc42 updates 15.3 KiB
- cmake-filesystem x86_64 3.31.6-2.fc42 fedora 0.0 B
- elfutils-libelf-devel x86_64 0.194-1.fc42 updates 75.0 KiB
- libzstd-devel x86_64 1.5.7-1.fc42 fedora 208.0 KiB
- zlib-ng-compat-devel x86_64 2.2.5-2.fc42 updates 107.0 KiB
- Installing weak dependencies:
- compiler-rt x86_64 20.1.8-4.fc42 updates 40.4 MiB
- libatomic x86_64 15.2.1-3.fc42 updates 36.7 KiB
- libomp x86_64 20.1.8-4.fc42 updates 2.2 MiB
- libomp-devel x86_64 20.1.8-4.fc42 updates 1.5 MiB
-
- Transaction Summary:
- Installing: 13 packages
-
- Total size of inbound packages is 32 MiB. Need to download 32 MiB.
- After this operation, 166 MiB extra will be used (install 166 MiB, remove 0 B).
- [ 1/13] clang-0:20.1.8-4.fc42.x86_64 100% | 1.2 MiB/s | 157.8 KiB | 00m00s
- [ 2/13] bpftool-0:7.5.0-3.fc42.x86_64 100% | 2.4 MiB/s | 321.7 KiB | 00m00s
- [ 3/13] clang-resource-filesystem-0:20. 100% | 1.3 MiB/s | 20.5 KiB | 00m00s
- [ 4/13] elfutils-libelf-devel-0:0.194-1 100% | 2.1 MiB/s | 82.7 KiB | 00m00s
- [ 5/13] zlib-ng-compat-devel-0:2.2.5-2. 100% | 1.3 MiB/s | 38.3 KiB | 00m00s
- [ 6/13] cmake-filesystem-0:3.31.6-2.fc4 100% | 325.8 KiB/s | 17.6 KiB | 00m00s
- [ 7/13] libbpf-devel-2:1.5.0-2.fc42.x86 100% | 629.4 KiB/s | 90.0 KiB | 00m00s
- [ 8/13] libatomic-0:15.2.1-3.fc42.x86_6 100% | 1.8 MiB/s | 44.8 KiB | 00m00s
- [ 9/13] libzstd-devel-0:1.5.7-1.fc42.x8 100% | 792.5 KiB/s | 53.1 KiB | 00m00s
- [10/13] libomp-0:20.1.8-4.fc42.x86_64 100% | 10.3 MiB/s | 738.4 KiB | 00m00s
- [11/13] compiler-rt-0:20.1.8-4.fc42.x86 100% | 17.9 MiB/s | 2.9 MiB | 00m00s
- [12/13] libomp-devel-0:20.1.8-4.fc42.x8 100% | 2.2 MiB/s | 282.8 KiB | 00m00s
- [13/13] clang-libs-0:20.1.8-4.fc42.x86_ 100% | 35.1 MiB/s | 27.5 MiB | 00m01s
- --------------------------------------------------------------------------------
- [13/13] Total 100% | 30.1 MiB/s | 32.2 MiB | 00m01s
- Running transaction
- [ 1/15] Verify package files 100% | 46.0 B/s | 13.0 B | 00m00s
- [ 2/15] Prepare transaction 100% | 173.0 B/s | 13.0 B | 00m00s
- [ 3/15] Installing clang-resource-files 100% | 5.4 MiB/s | 16.7 KiB | 00m00s
- [ 4/15] Installing clang-libs-0:20.1.8- 100% | 164.5 MiB/s | 120.3 MiB | 00m01s
- [ 5/15] Installing libomp-0:20.1.8-4.fc 100% | 139.1 MiB/s | 2.2 MiB | 00m00s
- [ 6/15] Installing libzstd-devel-0:1.5. 100% | 102.0 MiB/s | 208.8 KiB | 00m00s
- [ 7/15] Installing cmake-filesystem-0:3 100% | 1.9 MiB/s | 7.6 KiB | 00m00s
- [ 8/15] Installing zlib-ng-compat-devel 100% | 53.0 MiB/s | 108.5 KiB | 00m00s
- [ 9/15] Installing elfutils-libelf-deve 100% | 41.8 MiB/s | 85.7 KiB | 00m00s
- [10/15] Installing libbpf-devel-2:1.5.0 100% | 97.0 MiB/s | 397.4 KiB | 00m00s
- [11/15] Installing libomp-devel-0:20.1. 100% | 119.0 MiB/s | 1.5 MiB | 00m00s
- [12/15] Installing clang-0:20.1.8-4.fc4 100% | 9.0 MiB/s | 377.2 KiB | 00m00s
- [13/15] Installing compiler-rt-0:20.1.8 100% | 201.3 MiB/s | 40.5 MiB | 00m00s
- [14/15] Installing libatomic-0:15.2.1-3 100% | 36.7 MiB/s | 37.5 KiB | 00m00s
- [15/15] Installing bpftool-0:7.5.0-3.fc 100% | 7.3 MiB/s | 728.5 KiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "bpftool" "clang" "libbpf-devel"
- bpftool-7.5.0-3.fc42.x86_64
- clang-20.1.8-4.fc42.x86_64
- libbpf-devel-1.5.0-2.fc42.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> installed conf-bpftool.0.1.0
-> installed conf-libbpf.0.1.0
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.23.0 (cached)
-> installed conf-clang.2
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved jane-street-headers.v0.16.0 (cached)
-> retrieved jst-config.v0.16.0 (cached)
-> retrieved libbpf.0.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_assert.v0.16.0 (cached)
-> retrieved ppx_base.v0.16.0 (cached)
-> retrieved ppx_cold.v0.16.0 (cached)
-> retrieved ppx_compare.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_enumerate.v0.16.0 (cached)
-> retrieved ppx_expect.v0.16.2 (cached)
-> retrieved ppx_globalize.v0.16.0 (cached)
-> retrieved ppx_hash.v0.16.0 (cached)
-> retrieved ppx_here.v0.16.0 (cached)
-> retrieved ppx_inline_test.v0.16.1 (cached)
-> retrieved ppx_optcomp.v0.16.0 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdio.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved time_now.v0.16.0 (cached)
-> installed ocamlfind.1.9.8
-> installed dune.3.20.2
-> installed jane-street-headers.v0.16.0
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed dune-configurator.3.20.2
-> installed base.v0.16.4
-> installed ctypes.0.23.0
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.2
-> installed libbpf.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 14:21.39 ---> saved as "ec955af388a85dd9a4e1cacc2c5cf33433af38b0762ae33ae920951e716ddada"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test libbpf.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile libbpf 0.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed libbpf.0.1.0
-> installed libbpf.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 14:21.44 ---> saved as "963885e742fb32e641d8735b667c8d00207489c1981fdddeb611892a20215707"
/home/opam: (run (shell "opam reinstall --with-test --verbose libbpf.0.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\" != 'libbpf.0.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 libbpf 0.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [libbpf: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "libbpf" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/libbpf.0.1.0)
- (cd _build/default/test && ./test_version.exe)
- Major:1, Minor:5, Libbpf.v1.5
-> compiled libbpf.0.1.0
-> removed libbpf.0.1.0
-> installed libbpf.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 14:21.49 ---> saved as "f70a1b79cfec5737f3e07f9c2b34e36555bc49505d847657d12e500373d06366"
Job succeeded
2025-11-10 14:21.59: Job succeeded