- github
- ocaml
- opam-repository
- 27b93b
- extras,riscv64-ocaml-5.4,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 ubuntu-24.04-ocaml-5.4/riscv64
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:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc
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 "\"ubuntu-24.04\""; 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 "\"ubuntu-24.04\""; 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:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc-libbpf.0.1.0-27b93b8d254212c1249540d74f600850023faef7"
2025-11-10 11:03.00: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc)
(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 \"\\\"ubuntu-24.04\\\"\"; 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 \"\\\"ubuntu-24.04\\\"\"; 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 13:57.54: Waiting for worker…
2025-11-10 22:13.04: Got resource from pool OCluster
Building on riscv-bm-01.sw.ci.dev
All commits already cached
Updating files: 10% (2022/18702)
Updating files: 11% (2058/18702)
Updating files: 12% (2245/18702)
Updating files: 13% (2432/18702)
Updating files: 14% (2619/18702)
Updating files: 15% (2806/18702)
Updating files: 16% (2993/18702)
Updating files: 17% (3180/18702)
Updating files: 18% (3367/18702)
Updating files: 19% (3554/18702)
Updating files: 20% (3741/18702)
Updating files: 21% (3928/18702)
Updating files: 21% (3993/18702)
Updating files: 22% (4115/18702)
Updating files: 23% (4302/18702)
Updating files: 24% (4489/18702)
Updating files: 25% (4676/18702)
Updating files: 26% (4863/18702)
Updating files: 27% (5050/18702)
Updating files: 28% (5237/18702)
Updating files: 29% (5424/18702)
Updating files: 30% (5611/18702)
Updating files: 31% (5798/18702)
Updating files: 32% (5985/18702)
Updating files: 33% (6172/18702)
Updating files: 33% (6173/18702)
Updating files: 34% (6359/18702)
Updating files: 35% (6546/18702)
Updating files: 36% (6733/18702)
Updating files: 37% (6920/18702)
Updating files: 38% (7107/18702)
Updating files: 39% (7294/18702)
Updating files: 40% (7481/18702)
Updating files: 41% (7668/18702)
Updating files: 42% (7855/18702)
Updating files: 43% (8042/18702)
Updating files: 44% (8229/18702)
Updating files: 44% (8291/18702)
Updating files: 45% (8416/18702)
Updating files: 46% (8603/18702)
Updating files: 47% (8790/18702)
Updating files: 48% (8977/18702)
Updating files: 49% (9164/18702)
Updating files: 50% (9351/18702)
Updating files: 51% (9539/18702)
Updating files: 52% (9726/18702)
Updating files: 53% (9913/18702)
Updating files: 54% (10100/18702)
Updating files: 55% (10287/18702)
Updating files: 55% (10357/18702)
Updating files: 56% (10474/18702)
Updating files: 57% (10661/18702)
Updating files: 58% (10848/18702)
Updating files: 59% (11035/18702)
Updating files: 60% (11222/18702)
Updating files: 61% (11409/18702)
Updating files: 62% (11596/18702)
Updating files: 63% (11783/18702)
Updating files: 64% (11970/18702)
Updating files: 65% (12157/18702)
Updating files: 66% (12344/18702)
Updating files: 66% (12387/18702)
Updating files: 67% (12531/18702)
Updating files: 68% (12718/18702)
Updating files: 69% (12905/18702)
Updating files: 70% (13092/18702)
Updating files: 71% (13279/18702)
Updating files: 72% (13466/18702)
Updating files: 73% (13653/18702)
Updating files: 74% (13840/18702)
Updating files: 75% (14027/18702)
Updating files: 76% (14214/18702)
Updating files: 77% (14401/18702)
Updating files: 78% (14588/18702)
Updating files: 78% (14661/18702)
Updating files: 79% (14775/18702)
Updating files: 80% (14962/18702)
Updating files: 81% (15149/18702)
Updating files: 82% (15336/18702)
Updating files: 83% (15523/18702)
Updating files: 84% (15710/18702)
Updating files: 85% (15897/18702)
Updating files: 86% (16084/18702)
Updating files: 87% (16271/18702)
Updating files: 88% (16458/18702)
Updating files: 89% (16645/18702)
Updating files: 90% (16832/18702)
Updating files: 90% (16882/18702)
Updating files: 91% (17019/18702)
Updating files: 92% (17206/18702)
Updating files: 93% (17393/18702)
Updating files: 94% (17580/18702)
Updating files: 95% (17767/18702)
Updating files: 96% (17954/18702)
Updating files: 97% (18141/18702)
Updating files: 98% (18328/18702)
Updating files: 99% (18515/18702)
Updating files: 100% (18702/18702)
Updating files: 100% (18702/18702), done.
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:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc' locally
docker.io/ocaml/opam@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc: Pulling from ocaml/opam
ff47a256ba51: Already exists
07f865b4eced: Already exists
e5a6a81924d1: Already exists
d2993474f6c4: Already exists
be37240cea2e: Already exists
4c7a4c780d69: Already exists
949ffaae844f: Already exists
65007da87cd6: Already exists
376b4433eeaf: Already exists
e4c73e6a1fc1: Already exists
0f0889c64018: Already exists
436990646fd8: Already exists
cb9bd38ee801: Already exists
448d2014f999: Already exists
ea72d1803671: Already exists
3f795e13b111: Already exists
3f795e13b111: Already exists
2137184b4e70: Already exists
ab9789196f84: Already exists
dbbe96a6bdee: Already exists
fb6f4e997127: Already exists
4f4fb700ef54: Already exists
78488e87ab1d: Already exists
1a2baa16ab41: Already exists
52441bed4375: Already exists
58cb70dff4c6: Already exists
43e3d939c3f3: Already exists
5ce97af1f60e: Already exists
8ffc91fd116a: Already exists
ff8c038c8028: Already exists
d57176bef7d7: Already exists
89b975f1d5f3: Already exists
921cd587cd96: Already exists
ae8ab1c95bad: Already exists
1fe2a75aa09d: Already exists
831d70711341: Already exists
07812c06f386: Already exists
859e3a9917cd: Already exists
25a638362d2e: Already exists
e81b913ad5a4: Already exists
ea3380bc20f4: Pulling fs layer
def4aa273eac: Pulling fs layer
5c0eef42092a: Pulling fs layer
a50ec4935ba1: Pulling fs layer
1b09137f6468: Pulling fs layer
5d58e43788c9: Pulling fs layer
cc643729de8f: Pulling fs layer
a50ec4935ba1: Waiting
1b09137f6468: Waiting
5d58e43788c9: Waiting
cc643729de8f: Waiting
def4aa273eac: Verifying Checksum
def4aa273eac: Download complete
ea3380bc20f4: Download complete
ea3380bc20f4: Pull complete
5c0eef42092a: Verifying Checksum
5c0eef42092a: Download complete
def4aa273eac: Pull complete
1b09137f6468: Verifying Checksum
1b09137f6468: Download complete
5d58e43788c9: Verifying Checksum
5d58e43788c9: Download complete
cc643729de8f: Verifying Checksum
cc643729de8f: Download complete
5c0eef42092a: Pull complete
a50ec4935ba1: Verifying Checksum
a50ec4935ba1: Download complete
a50ec4935ba1: Pull complete
1b09137f6468: Pull complete
5d58e43788c9: Pull complete
cc643729de8f: Pull complete
Digest: sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc
Status: Downloaded newer image for ocaml/opam@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc
2025-11-10 22:13.17 ---> using "caa6674a25a88389569217fd94abf6dc3d8a42ad0c02221796f91bef8e6362c2" 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 22:13.17 ---> using "fd07174c808e586de402af712771f0f241b080e2367ef9f7681d75cf818919c2" 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 22:13.17 ---> using "514df06474b49af68e096e6a7c5db077ce91809c08e70c13f33e27f18784df6b" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2025-11-10 22:13.17 ---> using "2c30bc4cf24536cb906aa854b81fc82059550ba6613f56620345538a58c14aa3" 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 22:13.17 ---> using "76c050f90e9dc44fe68828988f11d21f4c996e2a34a4e626a28cb52e589e4c43" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 22:13.23 ---> using "b18757ee9685ea6073c42911be35b88dabd97080dd9450deed87a8dbfc582aa8" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 22:13.23 ---> using "46f78f72715fd7a11cab67d8443d40284d5585066bd8348f4f94d131fc337dfa" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Fetched 378 kB in 2s (246 kB/s)
- Reading package lists...
-
2025-11-10 22:13.23 ---> using "26a88fcaf00e514b9082cab0c5070dbdb7db74abc941bc53250de433d2889b53" from cache
/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 22:13.23 ---> using "f82db491ec746311a269b20dbc7f5c3170d57a0c16904bf6c30593c64f550d14" from cache
/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 \"\\\"ubuntu-24.04\\\"\"; 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 37 packages
- install base v0.17.3 [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.17.0 [required by time_now]
- install jst-config v0.17.0 [required by time_now]
- install libbpf 0.1.0 (pinned)
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install ppx_assert v0.17.0 [required by jst-config]
- install ppx_base v0.17.0 [required by time_now]
- install ppx_cold v0.17.0 [required by ppx_base]
- install ppx_compare v0.17.0 [required by ppx_base]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by libbpf]
- install ppx_enumerate v0.17.0 [required by ppx_base]
- install ppx_expect v0.17.3 [required by libbpf]
- install ppx_globalize v0.17.2 [required by ppx_base]
- install ppx_hash v0.17.0 [required by ppx_base]
- install ppx_here v0.17.0 [required by ppx_expect]
- install ppx_inline_test v0.17.1 [required by ppx_expect]
- install ppx_optcomp v0.17.1 [required by time_now]
- install ppx_sexp_conv v0.17.1 [required by ppx_base]
- install ppxlib 0.37.0 [required by ppx_deriving, ppx_expect]
- install ppxlib_jane v0.17.4 [required by ppx_globalize, ppx_enumerate, ppx_hash]
- install sexplib0 v0.17.0 [required by ppxlib, base]
- install stdio v0.17.0 [required by ppx_expect]
- install stdlib-shims 0.3.0 [required by integers, ppxlib]
- install time_now v0.17.0 [required by ppx_inline_test]
The following system packages will first need to be installed:
clang libbpf-dev linux-tools-common
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get 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/bin/sudo "apt-get" "install" "-qq" "-yy" "clang" "libbpf-dev" "linux-tools-common"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpython3.12-minimal:riscv64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16279 files and directories currently installed.)
- Preparing to unpack .../libpython3.12-minimal_3.12.3-1ubuntu0.8_riscv64.deb ...
- Unpacking libpython3.12-minimal:riscv64 (3.12.3-1ubuntu0.8) ...
- Selecting previously unselected package python3.12-minimal.
- Preparing to unpack .../python3.12-minimal_3.12.3-1ubuntu0.8_riscv64.deb ...
- Unpacking python3.12-minimal (3.12.3-1ubuntu0.8) ...
- Setting up libpython3.12-minimal:riscv64 (3.12.3-1ubuntu0.8) ...
- Setting up python3.12-minimal (3.12.3-1ubuntu0.8) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16590 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.12.3-0ubuntu2_riscv64.deb ...
- Unpacking python3-minimal (3.12.3-0ubuntu2) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_10.1.0_all.deb ...
- Unpacking media-types (10.1.0) ...
- Selecting previously unselected package tzdata.
- Preparing to unpack .../2-tzdata_2025b-0ubuntu0.24.04.1_all.deb ...
- Unpacking tzdata (2025b-0ubuntu0.24.04.1) ...
- Selecting previously unselected package libpython3.12-stdlib:riscv64.
- Preparing to unpack .../3-libpython3.12-stdlib_3.12.3-1ubuntu0.8_riscv64.deb ...
- Unpacking libpython3.12-stdlib:riscv64 (3.12.3-1ubuntu0.8) ...
- Selecting previously unselected package python3.12.
- Preparing to unpack .../4-python3.12_3.12.3-1ubuntu0.8_riscv64.deb ...
- Unpacking python3.12 (3.12.3-1ubuntu0.8) ...
- Selecting previously unselected package libpython3-stdlib:riscv64.
- Preparing to unpack .../5-libpython3-stdlib_3.12.3-0ubuntu2_riscv64.deb ...
- Unpacking libpython3-stdlib:riscv64 (3.12.3-0ubuntu2) ...
- Setting up python3-minimal (3.12.3-0ubuntu2) ...
- Selecting previously unselected package python3.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17553 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.12.3-0ubuntu2_riscv64.deb ...
- Unpacking python3 (3.12.3-0ubuntu2) ...
- Selecting previously unselected package libpipeline1:riscv64.
- Preparing to unpack .../01-libpipeline1_1.5.7-2_riscv64.deb ...
- Unpacking libpipeline1:riscv64 (1.5.7-2) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../02-binfmt-support_2.2.2-7_riscv64.deb ...
- Unpacking binfmt-support (2.2.2-7) ...
- Selecting previously unselected package libelf1t64:riscv64.
- Preparing to unpack .../03-libelf1t64_0.190-1.1ubuntu0.1_riscv64.deb ...
- Unpacking libelf1t64:riscv64 (0.190-1.1ubuntu0.1) ...
- Selecting previously unselected package libbpf1:riscv64.
- Preparing to unpack .../04-libbpf1_1%3a1.3.0-2build2_riscv64.deb ...
- Unpacking libbpf1:riscv64 (1:1.3.0-2build2) ...
- Selecting previously unselected package libicu74:riscv64.
- Preparing to unpack .../05-libicu74_74.2-1ubuntu3.1_riscv64.deb ...
- Unpacking libicu74:riscv64 (74.2-1ubuntu3.1) ...
- Selecting previously unselected package libxml2:riscv64.
- Preparing to unpack .../06-libxml2_2.9.14+dfsg-1.3ubuntu3.6_riscv64.deb ...
- Unpacking libxml2:riscv64 (2.9.14+dfsg-1.3ubuntu3.6) ...
- Selecting previously unselected package libyaml-0-2:riscv64.
- Preparing to unpack .../07-libyaml-0-2_0.2.5-1build1_riscv64.deb ...
- Unpacking libyaml-0-2:riscv64 (0.2.5-1build1) ...
- Selecting previously unselected package lsb-release.
- Preparing to unpack .../08-lsb-release_12.0-2_all.deb ...
- Unpacking lsb-release (12.0-2) ...
- Selecting previously unselected package python3-pkg-resources.
- Preparing to unpack .../09-python3-pkg-resources_68.1.2-2ubuntu1.2_all.deb ...
- Unpacking python3-pkg-resources (68.1.2-2ubuntu1.2) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../10-python3-pygments_2.17.2+dfsg-1_all.deb ...
- Unpacking python3-pygments (2.17.2+dfsg-1) ...
- Selecting previously unselected package python3-yaml.
- Preparing to unpack .../11-python3-yaml_6.0.1-2build2_riscv64.deb ...
- Unpacking python3-yaml (6.0.1-2build2) ...
- Selecting previously unselected package libgpm2:riscv64.
- Preparing to unpack .../12-libgpm2_1.20.7-11_riscv64.deb ...
- Unpacking libgpm2:riscv64 (1.20.7-11) ...
- Selecting previously unselected package libncurses6:riscv64.
- Preparing to unpack .../13-libncurses6_6.4+20240113-1ubuntu2_riscv64.deb ...
- Unpacking libncurses6:riscv64 (6.4+20240113-1ubuntu2) ...
- Selecting previously unselected package pci.ids.
- Preparing to unpack .../14-pci.ids_0.0~2024.03.31-1ubuntu0.1_all.deb ...
- Unpacking pci.ids (0.0~2024.03.31-1ubuntu0.1) ...
- Selecting previously unselected package usb.ids.
- Preparing to unpack .../15-usb.ids_2024.03.18-1_all.deb ...
- Unpacking usb.ids (2024.03.18-1) ...
- Selecting previously unselected package libllvm18:riscv64.
- Preparing to unpack .../16-libllvm18_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking libllvm18:riscv64 (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package libclang-cpp18.
- Preparing to unpack .../17-libclang-cpp18_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking libclang-cpp18 (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package libgc1:riscv64.
- Preparing to unpack .../18-libgc1_1%3a8.2.6-1build1_riscv64.deb ...
- Unpacking libgc1:riscv64 (1:8.2.6-1build1) ...
- Selecting previously unselected package libobjc4:riscv64.
- Preparing to unpack .../19-libobjc4_14.2.0-4ubuntu2~24.04_riscv64.deb ...
- Unpacking libobjc4:riscv64 (14.2.0-4ubuntu2~24.04) ...
- Selecting previously unselected package libobjc-13-dev:riscv64.
- Preparing to unpack .../20-libobjc-13-dev_13.3.0-6ubuntu2~24.04_riscv64.deb ...
- Unpacking libobjc-13-dev:riscv64 (13.3.0-6ubuntu2~24.04) ...
- Selecting previously unselected package libclang-common-18-dev:riscv64.
- Preparing to unpack .../21-libclang-common-18-dev_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking libclang-common-18-dev:riscv64 (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package llvm-18-linker-tools.
- Preparing to unpack .../22-llvm-18-linker-tools_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking llvm-18-linker-tools (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package libclang1-18.
- Preparing to unpack .../23-libclang1-18_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking libclang1-18 (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package clang-18.
- Preparing to unpack .../24-clang-18_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking clang-18 (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package clang.
- Preparing to unpack .../25-clang_1%3a18.0-59~exp2_riscv64.deb ...
- Unpacking clang (1:18.0-59~exp2) ...
- Selecting previously unselected package hwdata.
- Preparing to unpack .../26-hwdata_0.379-1_all.deb ...
- Unpacking hwdata (0.379-1) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../27-icu-devtools_74.2-1ubuntu3.1_riscv64.deb ...
- Unpacking icu-devtools (74.2-1ubuntu3.1) ...
- Selecting previously unselected package zlib1g-dev:riscv64.
- Preparing to unpack .../28-zlib1g-dev_1%3a1.3.dfsg-3.1ubuntu2.1_riscv64.deb ...
- Unpacking zlib1g-dev:riscv64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Selecting previously unselected package libelf-dev:riscv64.
- Preparing to unpack .../29-libelf-dev_0.190-1.1ubuntu0.1_riscv64.deb ...
- Unpacking libelf-dev:riscv64 (0.190-1.1ubuntu0.1) ...
- Selecting previously unselected package libbpf-dev:riscv64.
- Preparing to unpack .../30-libbpf-dev_1%3a1.3.0-2build2_riscv64.deb ...
- Unpacking libbpf-dev:riscv64 (1:1.3.0-2build2) ...
- Selecting previously unselected package libclang-rt-18-dev:riscv64.
- Preparing to unpack .../31-libclang-rt-18-dev_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking libclang-rt-18-dev:riscv64 (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package libicu-dev:riscv64.
- Preparing to unpack .../32-libicu-dev_74.2-1ubuntu3.1_riscv64.deb ...
- Unpacking libicu-dev:riscv64 (74.2-1ubuntu3.1) ...
- Selecting previously unselected package libncurses-dev:riscv64.
- Preparing to unpack .../33-libncurses-dev_6.4+20240113-1ubuntu2_riscv64.deb ...
- Unpacking libncurses-dev:riscv64 (6.4+20240113-1ubuntu2) ...
- Selecting previously unselected package libxml2-dev:riscv64.
- Preparing to unpack .../34-libxml2-dev_2.9.14+dfsg-1.3ubuntu3.6_riscv64.deb ...
- Unpacking libxml2-dev:riscv64 (2.9.14+dfsg-1.3ubuntu3.6) ...
- Selecting previously unselected package linux-tools-common.
- Preparing to unpack .../35-linux-tools-common_6.8.0-87.88_all.deb ...
- Unpacking linux-tools-common (6.8.0-87.88) ...
- Selecting previously unselected package llvm-18-runtime.
- Preparing to unpack .../36-llvm-18-runtime_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking llvm-18-runtime (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package libpfm4:riscv64.
- Preparing to unpack .../37-libpfm4_4.13.0+git32-g0d4ed0e-1_riscv64.deb ...
- Unpacking libpfm4:riscv64 (4.13.0+git32-g0d4ed0e-1) ...
- Selecting previously unselected package llvm-18.
- Preparing to unpack .../38-llvm-18_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking llvm-18 (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package libffi-dev:riscv64.
- Preparing to unpack .../39-libffi-dev_3.4.6-1build1_riscv64.deb ...
- Unpacking libffi-dev:riscv64 (3.4.6-1build1) ...
- Selecting previously unselected package llvm-18-tools.
- Preparing to unpack .../40-llvm-18-tools_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking llvm-18-tools (1:18.1.3-1ubuntu1) ...
- Selecting previously unselected package libz3-4:riscv64.
- Preparing to unpack .../41-libz3-4_4.8.12-3.1build1_riscv64.deb ...
- Unpacking libz3-4:riscv64 (4.8.12-3.1build1) ...
- Selecting previously unselected package libz3-dev:riscv64.
- Preparing to unpack .../42-libz3-dev_4.8.12-3.1build1_riscv64.deb ...
- Unpacking libz3-dev:riscv64 (4.8.12-3.1build1) ...
- Selecting previously unselected package llvm-18-dev.
- Preparing to unpack .../43-llvm-18-dev_1%3a18.1.3-1ubuntu1_riscv64.deb ...
- Unpacking llvm-18-dev (1:18.1.3-1ubuntu1) ...
- Setting up media-types (10.1.0) ...
- Setting up libpipeline1:riscv64 (1.5.7-2) ...
- Setting up pci.ids (0.0~2024.03.31-1ubuntu0.1) ...
- Setting up libgpm2:riscv64 (1.20.7-11) ...
- Setting up libyaml-0-2:riscv64 (0.2.5-1build1) ...
- Setting up libffi-dev:riscv64 (3.4.6-1build1) ...
- Setting up libelf1t64:riscv64 (0.190-1.1ubuntu0.1) ...
- Setting up tzdata (2025b-0ubuntu0.24.04.1) ...
-
- Current default time zone: 'Europe/London'
- Local time is now: Mon Nov 10 21:59:34 GMT 2025.
- Universal Time is now: Mon Nov 10 21:59:34 UTC 2025.
- Run 'dpkg-reconfigure tzdata' if you wish to change it.
-
- Setting up libz3-4:riscv64 (4.8.12-3.1build1) ...
- Setting up libpfm4:riscv64 (4.13.0+git32-g0d4ed0e-1) ...
- Setting up libncurses6:riscv64 (6.4+20240113-1ubuntu2) ...
- Setting up usb.ids (2024.03.18-1) ...
- Setting up binfmt-support (2.2.2-7) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libclang-common-18-dev:riscv64 (1:18.1.3-1ubuntu1) ...
- Setting up libgc1:riscv64 (1:8.2.6-1build1) ...
- Setting up libicu74:riscv64 (74.2-1ubuntu3.1) ...
- Setting up zlib1g-dev:riscv64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up lsb-release (12.0-2) ...
- Setting up libxml2:riscv64 (2.9.14+dfsg-1.3ubuntu3.6) ...
- Setting up libclang-rt-18-dev:riscv64 (1:18.1.3-1ubuntu1) ...
- Setting up libbpf1:riscv64 (1:1.3.0-2build2) ...
- Setting up libllvm18:riscv64 (1:18.1.3-1ubuntu1) ...
- Setting up libclang1-18 (1:18.1.3-1ubuntu1) ...
- Setting up libz3-dev:riscv64 (4.8.12-3.1build1) ...
- Setting up libncurses-dev:riscv64 (6.4+20240113-1ubuntu2) ...
- Setting up libpython3.12-stdlib:riscv64 (3.12.3-1ubuntu0.8) ...
- Setting up python3.12 (3.12.3-1ubuntu0.8) ...
- Setting up libobjc4:riscv64 (14.2.0-4ubuntu2~24.04) ...
- Setting up hwdata (0.379-1) ...
- Setting up libelf-dev:riscv64 (0.190-1.1ubuntu0.1) ...
- Setting up icu-devtools (74.2-1ubuntu3.1) ...
- Setting up llvm-18-linker-tools (1:18.1.3-1ubuntu1) ...
- Setting up llvm-18-runtime (1:18.1.3-1ubuntu1) ...
- Setting up libclang-cpp18 (1:18.1.3-1ubuntu1) ...
- Setting up linux-tools-common (6.8.0-87.88) ...
- Setting up libicu-dev:riscv64 (74.2-1ubuntu3.1) ...
- Setting up libobjc-13-dev:riscv64 (13.3.0-6ubuntu2~24.04) ...
- Setting up libpython3-stdlib:riscv64 (3.12.3-0ubuntu2) ...
- Setting up libbpf-dev:riscv64 (1:1.3.0-2build2) ...
- Setting up clang-18 (1:18.1.3-1ubuntu1) ...
- Setting up python3 (3.12.3-0ubuntu2) ...
- running python rtupdate hooks for python3.12...
- running python post-rtupdate hooks for python3.12...
- Setting up libxml2-dev:riscv64 (2.9.14+dfsg-1.3ubuntu3.6) ...
- Setting up clang (1:18.0-59~exp2) ...
- Setting up llvm-18 (1:18.1.3-1ubuntu1) ...
- Setting up python3-pkg-resources (68.1.2-2ubuntu1.2) ...
- Setting up python3-yaml (6.0.1-2build2) ...
- Setting up python3-pygments (2.17.2+dfsg-1) ...
- Setting up llvm-18-tools (1:18.1.3-1ubuntu1) ...
- Setting up llvm-18-dev (1:18.1.3-1ubuntu1) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.6) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3 (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.17.0 (cached)
-> retrieved jst-config.v0.17.0 (cached)
-> retrieved libbpf.0.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_assert.v0.17.0 (cached)
-> retrieved ppx_base.v0.17.0 (cached)
-> retrieved ppx_cold.v0.17.0 (cached)
-> retrieved ppx_compare.v0.17.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppx_enumerate.v0.17.0 (cached)
-> retrieved ppx_expect.v0.17.3 (cached)
-> retrieved ppx_globalize.v0.17.2 (cached)
-> retrieved ppx_hash.v0.17.0 (cached)
-> retrieved ppx_here.v0.17.0 (cached)
-> retrieved ppx_inline_test.v0.17.1 (cached)
-> retrieved ppx_optcomp.v0.17.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdio.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved time_now.v0.17.0 (cached)
-> installed ocamlfind.1.9.8
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed jane-street-headers.v0.17.0
-> installed cppo.1.8.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed dune-configurator.3.20.2
-> installed stdlib-shims.0.3.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed integers.0.7.0
-> installed ctypes.0.23.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppx_here.v0.17.0
-> installed ppx_cold.v0.17.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_deriving.6.1.1
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed libbpf.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:13.23 ---> using "c0660bf9a3a8120cd5575b3753b411ec47a86073d85c0dec6a620c790b09c0b2" from cache
/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 22:13.55 ---> saved as "df6ac8f5fdcadc3f9e833b85f72427957480d2fc040dcaf2803511a9cadeae7b"
/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 \"\\\"ubuntu-24.04\\\"\"; 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" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libbpf.0.1.0)
- (cd _build/default/test && ./test_version.exe)
- Major:1, Minor:3, Libbpf.v1.3
-> 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 22:14.26 ---> saved as "df85e06a351205a6b63f9509e40f558e01a862bd700510c89c95494c9d8c98b1"
Job succeeded
2025-11-10 22:15.00: Job succeeded