2025-03-11 12:30.11: New job: test koonwen/ocaml-libbpf https://github.com/koonwen/ocaml-libbpf.git#refs/heads/main (389b642ae4e776b007eea267b3525022d8bff16c) (linux-x86_64:fedora-40-5.3_opam-2.3)
Base: ocaml/opam:fedora-40-ocaml-5.3@sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/koonwen/ocaml-libbpf.git" -b "main" && cd "ocaml-libbpf" && git reset --hard 389b642a
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-40-ocaml-5.3@sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e
# fedora-40-5.3_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo dnf install -y findutils
RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e f90215803a7685163b9d99ec926c4efac6cd671a || git fetch origin master) && git reset -q --hard f90215803a7685163b9d99ec926c4efac6cd671a && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 libbpf_maps.opam libbpf.opam conf-libbpf.opam conf-bpftool.opam ./
RUN opam pin add -yn libbpf_maps.dev './' && \
opam pin add -yn libbpf.dev './' && \
opam pin add -yn conf-libbpf.dev './' && \
opam pin add -yn conf-bpftool.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="base.v0.17.1 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigarray-compat.1.1.0 conf-clang.1 conf-libffi.2.0.0 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 ctypes.0.23.0 ctypes-foreign.0.23.0 dune.3.17.2 dune-configurator.3.17.2 integers.0.7.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlfind.1.9.8 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_enumerate.v0.17.0 ppx_expect.v0.17.2 ppx_globalize.v0.17.0 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_inline_test.v0.17.0 ppx_optcomp.v0.17.0 ppx_sexp_conv.v0.17.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 sexplib0.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 time_now.v0.17.0"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --depext-only -y libbpf_maps.dev libbpf.dev conf-libbpf.dev conf-bpftool.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build
END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK
2025-03-11 12:30.11: Using cache hint "koonwen/ocaml-libbpf-ocaml/opam:fedora-40-ocaml-5.3@sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e-fedora-40-5.3_opam-2.3-09f25a0824fa3ba2160763fb27b94fcc"
2025-03-11 12:30.11: Using OBuilder spec:
((from ocaml/opam:fedora-40-ocaml-5.3@sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e)
(comment fedora-40-5.3_opam-2.3)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (network host)
(shell "sudo dnf install -y findutils"))
(run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e f90215803a7685163b9d99ec926c4efac6cd671a || git fetch origin master) && git reset -q --hard f90215803a7685163b9d99ec926c4efac6cd671a && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src libbpf_maps.opam libbpf.opam conf-libbpf.opam conf-bpftool.opam)
(dst ./))
(run (network host)
(shell "opam pin add -yn libbpf_maps.dev './' && \
\nopam pin add -yn libbpf.dev './' && \
\nopam pin add -yn conf-libbpf.dev './' && \
\nopam pin add -yn conf-bpftool.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "base.v0.17.1 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigarray-compat.1.1.0 conf-clang.1 conf-libffi.2.0.0 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 ctypes.0.23.0 ctypes-foreign.0.23.0 dune.3.17.2 dune-configurator.3.17.2 integers.0.7.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlfind.1.9.8 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_enumerate.v0.17.0 ppx_expect.v0.17.2 ppx_globalize.v0.17.0 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_inline_test.v0.17.0 ppx_optcomp.v0.17.0 ppx_sexp_conv.v0.17.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 sexplib0.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 time_now.v0.17.0")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.3 --depext-only -y libbpf_maps.dev libbpf.dev conf-libbpf.dev conf-bpftool.dev $DEPS"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst /src))
(run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)
2025-03-11 12:30.11: Waiting for resource in pool OCluster
2025-03-11 14:06.45: Waiting for worker…
2025-03-11 14:09.00: Got resource from pool OCluster
Building on x86-bm-c1.sw.ocaml.org
All commits already cached
HEAD is now at 389b642 dune fmt
(from ocaml/opam:fedora-40-ocaml-5.3@sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e)
Unable to find image 'ocaml/opam:fedora-40-ocaml-5.3@sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e' locally
docker.io/ocaml/opam@sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e: Pulling from ocaml/opam
aec8b5c55076: Pulling fs layer
aec8b5c55076: Verifying Checksum
aec8b5c55076: Download complete
aec8b5c55076: Pull complete
Digest: sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e
Status: Downloaded newer image for ocaml/opam@sha256:9a3e2a687015db2704b91431286f4f84f9c6e8d286761ed5417eadf8288bcc9e
2025-03-11 14:11.27 ---> saved as "1476c452edd56a53215a301540bb2009c8d2a15dba423047d40300e18599671f"
/: (comment fedora-40-5.3_opam-2.3)
/: (user (uid 1000) (gid 1000))
/: (env CLICOLOR_FORCE 1)
/: (env OPAMCOLOR always)
/: (workdir /src)
/src: (run (network host)
(shell "sudo dnf install -y findutils"))
Fedora 40 - x86_64 - Updates 227 kB/s | 22 kB 00:00
Fedora 40 - x86_64 - Updates 113 kB/s | 4.4 MB 00:39
Last metadata expiration check: 0:00:07 ago on Tue Mar 11 14:12:07 2025.
Package findutils-1:4.9.0-9.fc40.x86_64 is already installed.
Dependencies resolved.
Nothing to do.
Complete!
2025-03-11 14:12.16 ---> saved as "94cbd80bcc330ce623803fbb520a85cab1400e88c96764ea5c2e02cd7e19ad53"
/src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-03-11 14:12.16 ---> saved as "3cf8028e21344054f79e658239efeb83a6d7aca5695c51333e87cfafa85482ca"
/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then 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 development 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] Could not update repository "opam-repository-archive": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocaml/opam-repository-archive/': Could not resolve host: github.com"
[default] synchronised from file:///home/opam/opam-repository
2025-03-11 14:13.28 ---> saved as "e8183cd9ba1a23c4d7ddb3cf8b2d2350a9e0a7713ccd1e3ac8d0c1e7fffb4080"
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-134-generic
The OCaml toplevel, version 5.3.0
2.3.0
2025-03-11 14:13.28 ---> saved as "e1cd23eff74270a484a5911f8cc469d53dbcdcfafe79312b85310d9254a411b6"
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-03-11 14:13.28 ---> saved as "c4ed4798c67e57846c83ac2aba073c0c9239aa56a5e2c21f39faf8e0638895ed"
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e f90215803a7685163b9d99ec926c4efac6cd671a || git fetch origin master) && git reset -q --hard f90215803a7685163b9d99ec926c4efac6cd671a && git log --no-decorate -n1 --oneline && opam update -u"))
f90215803a Merge pull request #27486 from NathanReb/prep-for-ppxlib.0.36.0
<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2025-03-11 14:14.24 ---> saved as "193243bde91c8a5350ec3b20a46bb653888d23448a14726d23d70e87d5d14329"
/src: (copy (src libbpf_maps.opam libbpf.opam conf-libbpf.opam conf-bpftool.opam)
(dst ./))
2025-03-11 14:14.24 ---> saved as "1f990d5621469c3a664e3ea6011a939baac69b9bdaa8ab7dea949509af04fb7c"
/src: (run (network host)
(shell "opam pin add -yn libbpf_maps.dev './' && \
\nopam pin add -yn libbpf.dev './' && \
\nopam pin add -yn conf-libbpf.dev './' && \
\nopam pin add -yn conf-bpftool.dev './'"))
[libbpf_maps.dev] synchronised (file:///src)
libbpf_maps is now pinned to file:///src (version dev)
[libbpf.dev] synchronised (file:///src)
libbpf is now pinned to file:///src (version dev)
[conf-libbpf.dev] synchronised (file:///src)
conf-libbpf is now pinned to file:///src (version dev)
[conf-bpftool.dev] synchronised (file:///src)
conf-bpftool is now pinned to file:///src (version dev)
2025-03-11 14:14.29 ---> saved as "4e5637f546d9d9e1033d959029086e37e98acf9e82ce3c1cb2698836c86a8d7b"
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-03-11 14:14.29 ---> saved as "e5abf1179f7481a28d222b83632e4f88cf89a15de35145ad84081a70d2c9ba64"
/src: (env DEPS "base.v0.17.1 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base bigarray-compat.1.1.0 conf-clang.1 conf-libffi.2.0.0 conf-pkg-config.4 cppo.1.8.0 csexp.1.5.2 ctypes.0.23.0 ctypes-foreign.0.23.0 dune.3.17.2 dune-configurator.3.17.2 integers.0.7.0 jane-street-headers.v0.17.0 jst-config.v0.17.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml_intrinsics_kernel.v0.17.1 ocamlfind.1.9.8 ppx_assert.v0.17.0 ppx_base.v0.17.0 ppx_cold.v0.17.0 ppx_compare.v0.17.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_enumerate.v0.17.0 ppx_expect.v0.17.2 ppx_globalize.v0.17.0 ppx_hash.v0.17.0 ppx_here.v0.17.0 ppx_inline_test.v0.17.0 ppx_optcomp.v0.17.0 ppx_sexp_conv.v0.17.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 sexplib0.v0.17.0 stdio.v0.17.0 stdlib-shims.0.3.0 time_now.v0.17.0")
/src: (env CI true)
/src: (env OCAMLCI true)
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.3 --depext-only -y libbpf_maps.dev libbpf.dev conf-libbpf.dev conf-bpftool.dev $DEPS"))
+ /usr/bin/sudo "yum" "makecache"
- Fedora 40 - x86_64 300 kB/s | 27 kB 00:00
- Fedora 40 openh264 (From Cisco) - x86_64 13 kB/s | 989 B 00:00
- Fedora 40 - x86_64 - Updates 247 kB/s | 22 kB 00:00
- Metadata cache created.
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[conf-bpftool.dev] synchronised (file:///src)
[conf-libbpf.dev] synchronised (file:///src)
[libbpf.dev] synchronised (file:///src)
[libbpf_maps.dev] synchronised (file:///src)
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following system packages will first need to be installed:
bpftool clang libbpf-devel libffi-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
+ /usr/bin/sudo "yum" "install" "-y" "bpftool" "clang" "libbpf-devel" "libffi-devel"
- Last metadata expiration check: 0:00:27 ago on Tue Mar 11 14:14:30 2025.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repository Size
- ================================================================================
- Installing:
- bpftool x86_64 7.5.0-1.fc40 updates 323 k
- clang x86_64 18.1.8-1.fc40 updates 78 k
- libbpf-devel x86_64 2:1.2.3-1.fc40 updates 86 k
- libffi-devel x86_64 3.4.4-7.fc40 fedora 28 k
- Installing dependencies:
- clang-libs x86_64 18.1.8-1.fc40 updates 23 M
- clang-resource-filesystem noarch 18.1.8-1.fc40 updates 15 k
- cmake-filesystem x86_64 3.30.7-1.fc40 updates 17 k
- elfutils-libelf-devel x86_64 0.192-9.fc40 updates 47 k
- libbpf x86_64 2:1.2.3-1.fc40 updates 165 k
- libzstd-devel x86_64 1.5.7-1.fc40 updates 53 k
- zlib-ng-compat-devel x86_64 2.1.7-2.fc40 updates 38 k
- Installing weak dependencies:
- compiler-rt x86_64 18.1.8-1.fc40 updates 2.3 M
- libatomic x86_64 14.2.1-3.fc40 updates 43 k
- libomp x86_64 18.1.8-1.fc40 updates 656 k
- libomp-devel x86_64 18.1.8-1.fc40 updates 480 k
-
- Transaction Summary
- ================================================================================
- Install 15 Packages
-
- Total download size: 27 M
- Installed size: 165 M
- Downloading Packages:
- (1/15): libffi-devel-3.4.4-7.fc40.x86_64.rpm 482 kB/s | 28 kB 00:00
- (2/15): clang-18.1.8-1.fc40.x86_64.rpm 929 kB/s | 78 kB 00:00
- (3/15): bpftool-7.5.0-1.fc40.x86_64.rpm 2.4 MB/s | 323 kB 00:00
- (4/15): clang-resource-filesystem-18.1.8-1.fc40 308 kB/s | 15 kB 00:00
- (5/15): cmake-filesystem-3.30.7-1.fc40.x86_64.r 897 kB/s | 17 kB 00:00
- (6/15): elfutils-libelf-devel-0.192-9.fc40.x86_ 2.4 MB/s | 47 kB 00:00
- (7/15): libatomic-14.2.1-3.fc40.x86_64.rpm 2.1 MB/s | 43 kB 00:00
- (8/15): libbpf-1.2.3-1.fc40.x86_64.rpm 7.4 MB/s | 165 kB 00:00
- (9/15): libbpf-devel-1.2.3-1.fc40.x86_64.rpm 1.3 MB/s | 86 kB 00:00
- (10/15): compiler-rt-18.1.8-1.fc40.x86_64.rpm 14 MB/s | 2.3 MB 00:00
- (11/15): libomp-18.1.8-1.fc40.x86_64.rpm 11 MB/s | 656 kB 00:00
- (12/15): libomp-devel-18.1.8-1.fc40.x86_64.rpm 9.9 MB/s | 480 kB 00:00
- (13/15): libzstd-devel-1.5.7-1.fc40.x86_64.rpm 2.3 MB/s | 53 kB 00:00
- (14/15): zlib-ng-compat-devel-2.1.7-2.fc40.x86_ 1.8 MB/s | 38 kB 00:00
- (15/15): clang-libs-18.1.8-1.fc40.x86_64.rpm 35 MB/s | 23 MB 00:00
- --------------------------------------------------------------------------------
- Total 30 MB/s | 27 MB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : clang-resource-filesystem-18.1.8-1.fc40.noarch 1/15
- Installing : libomp-18.1.8-1.fc40.x86_64 2/15
-
- Installing : libomp-devel-18.1.8-1.fc40.x86_64 3/15
- Installing : compiler-rt-18.1.8-1.fc40.x86_64 4/15
- Installing : libzstd-devel-1.5.7-1.fc40.x86_64 5/15
- Installing : libbpf-2:1.2.3-1.fc40.x86_64 6/15
- Installing : libatomic-14.2.1-3.fc40.x86_64 7/15
-
- Installing : clang-libs-18.1.8-1.fc40.x86_64 8/15
- Installing : cmake-filesystem-3.30.7-1.fc40.x86_64 9/15
- Installing : zlib-ng-compat-devel-2.1.7-2.fc40.x86_64 10/15
- Installing : elfutils-libelf-devel-0.192-9.fc40.x86_64 11/15
- Installing : libbpf-devel-2:1.2.3-1.fc40.x86_64 12/15
- Installing : clang-18.1.8-1.fc40.x86_64 13/15
- Running scriptlet: clang-18.1.8-1.fc40.x86_64 13/15
- Installing : bpftool-7.5.0-1.fc40.x86_64 14/15
- Installing : libffi-devel-3.4.4-7.fc40.x86_64 15/15
- Running scriptlet: libffi-devel-3.4.4-7.fc40.x86_64 15/15
-
- Installed:
- bpftool-7.5.0-1.fc40.x86_64
- clang-18.1.8-1.fc40.x86_64
- clang-libs-18.1.8-1.fc40.x86_64
- clang-resource-filesystem-18.1.8-1.fc40.noarch
- cmake-filesystem-3.30.7-1.fc40.x86_64
- compiler-rt-18.1.8-1.fc40.x86_64
- elfutils-libelf-devel-0.192-9.fc40.x86_64
- libatomic-14.2.1-3.fc40.x86_64
- libbpf-2:1.2.3-1.fc40.x86_64
- libbpf-devel-2:1.2.3-1.fc40.x86_64
- libffi-devel-3.4.4-7.fc40.x86_64
- libomp-18.1.8-1.fc40.x86_64
- libomp-devel-18.1.8-1.fc40.x86_64
- libzstd-devel-1.5.7-1.fc40.x86_64
- zlib-ng-compat-devel-2.1.7-2.fc40.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "bpftool" "clang" "libbpf-devel" "libffi-devel"
- bpftool-7.5.0-1.fc40.x86_64
- clang-18.1.8-1.fc40.x86_64
- libbpf-devel-1.2.3-1.fc40.x86_64
- libffi-devel-3.4.4-7.fc40.x86_64
2025-03-11 14:15.03 ---> saved as "4c4c1394389331203a49243a651be1c5b6778db626c94bbc657910c2b9473f54"
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 37 packages
- install base v0.17.1
- install bigarray-compat 1.1.0
- install conf-clang 1
- install conf-libffi 2.0.0
- install conf-pkg-config 4
- install cppo 1.8.0
- install csexp 1.5.2
- install ctypes 0.23.0
- install ctypes-foreign 0.23.0
- install dune 3.17.2
- install dune-configurator 3.17.2
- install integers 0.7.0
- install jane-street-headers v0.17.0
- install jst-config v0.17.0
- install ocaml-compiler-libs v0.17.0
- install ocaml_intrinsics_kernel v0.17.1
- install ocamlfind 1.9.8
- install ppx_assert v0.17.0
- install ppx_base v0.17.0
- install ppx_cold v0.17.0
- install ppx_compare v0.17.0
- install ppx_derivers 1.2.1
- install ppx_deriving 6.0.3
- install ppx_enumerate v0.17.0
- install ppx_expect v0.17.2
- install ppx_globalize v0.17.0
- install ppx_hash v0.17.0
- install ppx_here v0.17.0
- install ppx_inline_test v0.17.0
- install ppx_optcomp v0.17.0
- install ppx_sexp_conv v0.17.0
- install ppxlib 0.35.0
- install ppxlib_jane v0.17.2
- install sexplib0 v0.17.0
- install stdio v0.17.0
- install stdlib-shims 0.3.0
- install time_now v0.17.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> installed conf-pkg-config.4
-> retrieved base.v0.17.1 (cached)
-> installed conf-clang.1
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0 (cached)
-> installed conf-libffi.2.0.0
-> retrieved integers.0.7.0 (cached)
-> retrieved jane-street-headers.v0.17.0 (cached)
-> retrieved jst-config.v0.17.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.0.3 (cached)
-> retrieved ppx_enumerate.v0.17.0 (cached)
-> retrieved ppx_globalize.v0.17.0 (cached)
-> retrieved ppx_expect.v0.17.2 (cached)
-> retrieved ppx_hash.v0.17.0 (cached)
-> retrieved ppx_here.v0.17.0 (cached)
-> retrieved ppx_inline_test.v0.17.0 (cached)
-> retrieved ppx_optcomp.v0.17.0 (cached)
-> retrieved ppx_sexp_conv.v0.17.0 (cached)
-> retrieved ppxlib_jane.v0.17.2 (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)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached)
-> installed ocamlfind.1.9.8
-> installed dune.3.17.2
-> installed jane-street-headers.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed cppo.1.8.0
-> installed integers.0.7.0
-> installed dune-configurator.3.17.2
-> installed ctypes.0.23.0
-> installed ctypes-foreign.0.23.0
-> installed base.v0.17.1
-> installed stdio.v0.17.0
-> installed ppxlib.0.35.0
-> installed ppxlib_jane.v0.17.2
-> installed ppx_optcomp.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_cold.v0.17.0
-> installed ppx_deriving.6.0.3
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.0
-> 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.0
-> installed ppx_expect.v0.17.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-11 14:17.23 ---> saved as "2da6bd11b31327af8faf373bdad2054effe71034417e4b1a35202740895fbc9a"
/src: (copy (src .) (dst /src))
2025-03-11 14:17.23 ---> saved as "6dfa220fcef07aebc4c95f5777bcdf3c8b2b643123ec32c4c19c544f944865dd"
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/test && ./test_version.exe)
Major:1, Minor:2, Libbpf.v1.2
2025-03-11 14:17.25 ---> saved as "059655a074861ffded6852a65ab2351c8906298003ddc669325fb89820b85dae"
Job succeeded
2025-03-11 14:17.25: Job succeeded