- github
- ocaml
- opam-repository
- 27b93b
- distributions,fedora-43-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-43-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-43-ocaml-4.14@sha256:860defeea187ce48264ac16fac7365e8d887ca66e1eb4922a5d996566a59f43d
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-43\""; 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-43\""; 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-43-ocaml-4.14@sha256:860defeea187ce48264ac16fac7365e8d887ca66e1eb4922a5d996566a59f43d-libbpf.0.1.0-27b93b8d254212c1249540d74f600850023faef7"
2025-11-10 11:03.00: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-4.14@sha256:860defeea187ce48264ac16fac7365e8d887ca66e1eb4922a5d996566a59f43d)
(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-43\\\"\"; 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-43\\\"\"; 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.12: Waiting for worker…
2025-11-10 14:14.11: Got resource from pool OCluster
Building on doris.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-43-ocaml-4.14@sha256:860defeea187ce48264ac16fac7365e8d887ca66e1eb4922a5d996566a59f43d)
Unable to find image 'ocaml/opam:fedora-43-ocaml-4.14@sha256:860defeea187ce48264ac16fac7365e8d887ca66e1eb4922a5d996566a59f43d' locally
docker.io/ocaml/opam@sha256:860defeea187ce48264ac16fac7365e8d887ca66e1eb4922a5d996566a59f43d: Pulling from ocaml/opam
3a6ccf50917d: Already exists
698b8d1610af: Already exists
7e5b745a56a4: Already exists
e8859609bfb8: Already exists
51242d36b3fd: Already exists
61958fadfb74: Already exists
04578677ff3f: Already exists
01b19b859bd1: Already exists
47b008c442e7: Already exists
434ff16e8a1b: Already exists
e2e8d2ec1110: Already exists
bb8f1dbb2acd: Already exists
c914fb01d9b0: Already exists
acbc7d112060: Already exists
7b0ca93f3f54: Already exists
5a223856338a: Already exists
ace6a731f305: Already exists
a6230b7fafa0: Already exists
917f9b8155b5: Already exists
8f7a3b7d908f: Already exists
4f4fb700ef54: Already exists
7af8a72dec52: Already exists
9565a36b4e3a: Already exists
a1ba7d9452a1: Already exists
24a9095bda75: Already exists
16c026bd2ca7: Already exists
6b821f07d597: Already exists
afd0175f27f4: Already exists
88ab18f654c7: Already exists
be69a91a3ef7: Already exists
ce8a4e53f5e3: Already exists
3e2bdc6df5e4: Already exists
ff986d64677f: Already exists
ce1f69fb599b: Pulling fs layer
59a77ea6a510: Pulling fs layer
4147e4bd49ec: Pulling fs layer
9f926286552b: Pulling fs layer
780a6a37e1ca: Pulling fs layer
59749b976bf7: Pulling fs layer
f41d7b64ff67: Pulling fs layer
52a602df2df7: Pulling fs layer
ab9bbd19d5b0: Pulling fs layer
4c336379fd6a: Pulling fs layer
59a77ea6a510: Waiting
f41d7b64ff67: Waiting
4147e4bd49ec: Waiting
780a6a37e1ca: Waiting
59749b976bf7: Waiting
52a602df2df7: Waiting
9f926286552b: Waiting
ab9bbd19d5b0: Waiting
59a77ea6a510: Verifying Checksum
59a77ea6a510: Download complete
9f926286552b: Verifying Checksum
9f926286552b: Download complete
780a6a37e1ca: Verifying Checksum
780a6a37e1ca: Download complete
59749b976bf7: Verifying Checksum
59749b976bf7: Download complete
4147e4bd49ec: Verifying Checksum
4147e4bd49ec: Download complete
52a602df2df7: Download complete
ab9bbd19d5b0: Verifying Checksum
ab9bbd19d5b0: Download complete
4c336379fd6a: Verifying Checksum
4c336379fd6a: Download complete
ce1f69fb599b: Verifying Checksum
ce1f69fb599b: Download complete
ce1f69fb599b: Pull complete
59a77ea6a510: Pull complete
4147e4bd49ec: Pull complete
9f926286552b: Pull complete
780a6a37e1ca: Pull complete
59749b976bf7: Pull complete
f41d7b64ff67: Verifying Checksum
f41d7b64ff67: Download complete
f41d7b64ff67: Pull complete
52a602df2df7: Pull complete
ab9bbd19d5b0: Pull complete
4c336379fd6a: Pull complete
Digest: sha256:860defeea187ce48264ac16fac7365e8d887ca66e1eb4922a5d996566a59f43d
Status: Downloaded newer image for ocaml/opam@sha256:860defeea187ce48264ac16fac7365e8d887ca66e1eb4922a5d996566a59f43d
2025-11-10 14:14.23 ---> using "9e77896d9fe078c34d344bdea926ec4977d8cc82cf3431e1db6d6f872f24af74" 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:14.23 ---> using "aaa991ad89b398eefaf43e6ce581f35930c9f32c57e9bde9fc032d1fd587f3e4" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-10 14:14.23 ---> using "3c596d85372d3d922e389134a1acb6eee4d41bb98299038914e94c84db852fe4" 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=43
# 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
2025-11-10 14:14.23 ---> using "d0819976c6e7b9f5b58c02cb370d433c7853fb648bb57d8a795d208769222044" 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:14.23 ---> using "19d0ea1cb48e322fac5261e96eb10f819a44981c815f6056d28065e30337c361" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 14:14.38 ---> saved as "b898a6cfdb6e89ff912f916519b3d822fd4449d03a3d133f403da2296acb3b1c"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 14:14.57 ---> saved as "ea173eecb5086e9ec622441f6809003c18057e8caced28921871fd3ab82f666b"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 43 - x86_64 100% | 43.6 KiB/s | 18.4 KiB | 00m00s
- Fedora 43 - x86_64 - Updates 100% | 30.4 KiB/s | 8.7 KiB | 00m00s
- Fedora 43 openh264 (From Cisco) - x86_ 100% | 5.8 KiB/s | 986.0 B | 00m00s
- Repositories loaded.
- Metadata cache created.
2025-11-10 14:15.04 ---> saved as "3fe629967f4258246cfc0cc344d26b2649d8c74eb64846c9a70fde8c24b55071"
/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:15.07 ---> saved as "775208d155bcb58011279dd21ec62c50e5448ad1726f084e1f5f71af23f3587e"
/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-43\\\"\"; 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
- Upgrading:
- elfutils x86_64 0.194-1.fc43 updates 2.9 MiB
- replacing elfutils x86_64 0.193-3.fc43 fedora 2.9 MiB
- elfutils-debuginfod-client x86_64 0.194-1.fc43 updates 84.0 KiB
- replacing elfutils-debuginfod-client x86_64 0.193-3.fc43 fedora 83.9 KiB
- elfutils-libelf x86_64 0.194-1.fc43 updates 1.1 MiB
- replacing elfutils-libelf x86_64 0.193-3.fc43 f48ac1df0e83469f8a505cddaf1bfc5e 1.2 MiB
- elfutils-libs x86_64 0.194-1.fc43 updates 687.5 KiB
- replacing elfutils-libs x86_64 0.193-3.fc43 f48ac1df0e83469f8a505cddaf1bfc5e 683.4 KiB
- llvm-filesystem x86_64 21.1.4-1.fc43 updates 0.0 B
- replacing llvm-filesystem x86_64 21.1.2-1.fc43 fedora 0.0 B
- llvm-libs x86_64 21.1.4-1.fc43 updates 138.6 MiB
- replacing llvm-libs x86_64 21.1.2-1.fc43 fedora 138.6 MiB
- Installing:
- bpftool x86_64 7.6.0-1.fc43 fedora 731.4 KiB
- clang x86_64 21.1.4-1.fc43 updates 65.5 MiB
- libbpf-devel x86_64 2:1.6.1-3.fc43 fedora 400.0 KiB
- Installing dependencies:
- clang-libs x86_64 21.1.4-1.fc43 updates 114.9 MiB
- clang-resource-filesystem x86_64 21.1.4-1.fc43 updates 15.3 KiB
- cmake-filesystem x86_64 3.31.6-4.fc43 fedora 0.0 B
- elfutils-libelf-devel x86_64 0.194-1.fc43 updates 75.0 KiB
- libbpf x86_64 2:1.6.1-3.fc43 fedora 422.8 KiB
- libzstd-devel x86_64 1.5.7-2.fc43 fedora 208.0 KiB
- llvm20-filesystem x86_64 20.1.8-2.fc43 fedora 0.0 B
- llvm20-libs x86_64 20.1.8-2.fc43 fedora 139.7 MiB
- zlib-ng-compat-devel x86_64 2.2.5-2.fc43 fedora 107.0 KiB
- Installing weak dependencies:
- compiler-rt x86_64 21.1.4-1.fc43 updates 41.1 MiB
- libatomic x86_64 15.2.1-3.fc43 updates 36.7 KiB
- libomp x86_64 21.1.4-1.fc43 updates 2.8 MiB
- libomp-devel x86_64 21.1.4-1.fc43 updates 1.5 MiB
-
- Transaction Summary:
- Installing: 16 packages
- Upgrading: 6 packages
- Replacing: 6 packages
-
- Total size of inbound packages is 113 MiB. Need to download 113 MiB.
- After this operation, 367 MiB extra will be used (install 511 MiB, remove 143 MiB).
- [ 1/22] bpftool-0:7.6.0-1.fc43.x86_64 100% | 4.7 MiB/s | 325.2 KiB | 00m00s
- [ 2/22] llvm20-filesystem-0:20.1.8-2.fc 100% | 43.0 KiB/s | 14.5 KiB | 00m00s
- [ 3/22] llvm20-libs-0:20.1.8-2.fc43.x86 100% | 28.2 MiB/s | 34.3 MiB | 00m01s
- [ 4/22] clang-resource-filesystem-0:21. 100% | 121.8 KiB/s | 20.6 KiB | 00m00s
- [ 5/22] libbpf-devel-2:1.6.1-3.fc43.x86 100% | 4.9 MiB/s | 90.7 KiB | 00m00s
- [ 6/22] libbpf-2:1.6.1-3.fc43.x86_64 100% | 299.9 KiB/s | 191.0 KiB | 00m01s
- [ 7/22] elfutils-libelf-devel-0:0.194-1 100% | 908.3 KiB/s | 82.7 KiB | 00m00s
- [ 8/22] zlib-ng-compat-devel-0:2.2.5-2. 100% | 6.2 MiB/s | 38.3 KiB | 00m00s
- [ 9/22] cmake-filesystem-0:3.31.6-4.fc4 100% | 2.5 MiB/s | 15.5 KiB | 00m00s
- [10/22] libzstd-devel-0:1.5.7-2.fc43.x8 100% | 8.6 MiB/s | 52.9 KiB | 00m00s
- [11/22] libatomic-0:15.2.1-3.fc43.x86_6 100% | 996.7 KiB/s | 44.9 KiB | 00m00s
- [12/22] libomp-0:21.1.4-1.fc43.x86_64 100% | 1.5 MiB/s | 831.1 KiB | 00m01s
- [13/22] compiler-rt-0:21.1.4-1.fc43.x86 100% | 2.1 MiB/s | 3.0 MiB | 00m01s
- [14/22] libomp-devel-0:21.1.4-1.fc43.x8 100% | 1.6 MiB/s | 265.8 KiB | 00m00s
- [15/22] clang-0:21.1.4-1.fc43.x86_64 100% | 1.6 MiB/s | 7.3 MiB | 00m04s
- [16/22] llvm-filesystem-0:21.1.4-1.fc43 100% | 669.8 KiB/s | 14.7 KiB | 00m00s
- [17/22] elfutils-libelf-0:0.194-1.fc43. 100% | 1.8 MiB/s | 205.2 KiB | 00m00s
- [18/22] elfutils-libs-0:0.194-1.fc43.x8 100% | 2.0 MiB/s | 271.5 KiB | 00m00s
- [19/22] elfutils-debuginfod-client-0:0. 100% | 2.1 MiB/s | 46.9 KiB | 00m00s
- [20/22] elfutils-0:0.194-1.fc43.x86_64 100% | 2.3 MiB/s | 575.6 KiB | 00m00s
- [21/22] clang-libs-0:21.1.4-1.fc43.x86_ 100% | 1.9 MiB/s | 30.2 MiB | 00m16s
- [22/22] llvm-libs-0:21.1.4-1.fc43.x86_6 100% | 1.7 MiB/s | 34.9 MiB | 00m20s
- --------------------------------------------------------------------------------
- [22/22] Total 100% | 4.5 MiB/s | 112.7 MiB | 00m25s
- Running transaction
- [ 1/30] Verify package files 100% | 51.0 B/s | 22.0 B | 00m00s
- [ 2/30] Prepare transaction 100% | 583.0 B/s | 28.0 B | 00m00s
- [ 3/30] Upgrading elfutils-libelf-0:0.1 100% | 280.3 MiB/s | 1.1 MiB | 00m00s
- [ 4/30] Installing clang-resource-files 100% | 16.3 MiB/s | 16.7 KiB | 00m00s
- [ 5/30] Upgrading elfutils-libs-0:0.194 100% | 168.3 MiB/s | 689.3 KiB | 00m00s
- [ 6/30] Upgrading elfutils-debuginfod-c 100% | 4.7 MiB/s | 86.3 KiB | 00m00s
- [ 7/30] Installing libbpf-2:1.6.1-3.fc4 100% | 137.9 MiB/s | 423.7 KiB | 00m00s
- [ 8/30] Upgrading llvm-filesystem-0:21. 100% | 1.0 MiB/s | 1.1 KiB | 00m00s
- [ 9/30] Upgrading llvm-libs-0:21.1.4-1. 100% | 344.0 MiB/s | 138.6 MiB | 00m00s
- [10/30] Installing clang-libs-0:21.1.4- 100% | 326.5 MiB/s | 114.9 MiB | 00m00s
- [11/30] Installing libomp-0:21.1.4-1.fc 100% | 257.5 MiB/s | 2.8 MiB | 00m00s
- [12/30] Installing libzstd-devel-0:1.5. 100% | 203.9 MiB/s | 208.8 KiB | 00m00s
- [13/30] Installing cmake-filesystem-0:3 100% | 1.9 MiB/s | 7.6 KiB | 00m00s
- [14/30] Installing zlib-ng-compat-devel 100% | 53.0 MiB/s | 108.5 KiB | 00m00s
- [15/30] Installing elfutils-libelf-deve 100% | 83.7 MiB/s | 85.7 KiB | 00m00s
- [16/30] Installing llvm20-filesystem-0: 100% | 1.0 MiB/s | 1.1 KiB | 00m00s
- [17/30] Installing llvm20-libs-0:20.1.8 100% | 339.1 MiB/s | 139.7 MiB | 00m00s
- [18/30] Installing bpftool-0:7.6.0-1.fc 100% | 39.8 MiB/s | 734.0 KiB | 00m00s
- [19/30] Installing libbpf-devel-2:1.6.1 100% | 131.0 MiB/s | 402.3 KiB | 00m00s
- [20/30] Installing libomp-devel-0:21.1. 100% | 167.4 MiB/s | 1.5 MiB | 00m00s
- [21/30] Installing clang-0:21.1.4-1.fc4 100% | 356.0 MiB/s | 65.5 MiB | 00m00s
- [22/30] Upgrading elfutils-0:0.194-1.fc 100% | 94.5 MiB/s | 2.9 MiB | 00m00s
- [23/30] Installing compiler-rt-0:21.1.4 100% | 446.7 MiB/s | 41.1 MiB | 00m00s
- [24/30] Installing libatomic-0:15.2.1-3 100% | 3.7 MiB/s | 37.5 KiB | 00m00s
- [25/30] Removing elfutils-0:0.193-3.fc4 100% | 3.5 KiB/s | 68.0 B | 00m00s
- [26/30] Removing elfutils-debuginfod-cl 100% | 1.6 KiB/s | 15.0 B | 00m00s
- [27/30] Removing elfutils-libs-0:0.193- 100% | 11.7 KiB/s | 12.0 B | 00m00s
- [28/30] Removing llvm-libs-0:21.1.2-1.f 100% | 12.7 KiB/s | 26.0 B | 00m00s
- [29/30] Removing llvm-filesystem-0:21.1 100% | 0.0 B/s | 7.0 B | 00m00s
- [30/30] Removing elfutils-libelf-0:0.19 100% | 172.0 B/s | 15.0 B | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "bpftool" "clang" "libbpf-devel"
- bpftool-7.6.0-1.fc43.x86_64
- clang-21.1.4-1.fc43.x86_64
- libbpf-devel-1.6.1-3.fc43.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 bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppx_derivers.1.2.1
-> 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_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> 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:16.32 ---> saved as "934739e201276e68908734dc8fda17934941d429fdec7598e7230c9afe07dfd8"
/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:16.36 ---> saved as "97f75a9f08b9e004aad2a8036727967732eff5ca5cf274698e3ef043f70cce41"
/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-43\\\"\"; 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" "255" "@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:6, Libbpf.v1.6
-> 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:16.41 ---> saved as "cdf8086873eadc6d4b5f78357c33c2f2f3559be2d391a558f2625c9e02cd3d19"
Job succeeded
2025-11-10 14:16.47: Job succeeded