- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune-configurator.3.22.2,revdeps,kafka.0.3
(not at the head of any monitored branch or PR)
2026-04-10 17:47.13: New job: test kafka.0.3 with dune-configurator.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
on debian-13-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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 dune-configurator.3.22.2 3.22.2
RUN opam reinstall dune-configurator.3.22.2; \
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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune-configurator.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall kafka.0.3; \
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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'kafka.0.3' && 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 kafka.0.3) || true
RUN opam reinstall --with-test --verbose kafka.0.3; \
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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'kafka.0.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-10 17:47.13: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune-configurator.3.22.2-kafka.0.3-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:47.13: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(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 dune-configurator.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.22.2;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall kafka.0.3;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kafka.0.3' && 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 kafka.0.3) || true"))
(run (shell "opam reinstall --with-test --verbose kafka.0.3;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kafka.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-10 17:47.13: Waiting for resource in pool OCluster
2026-04-10 20:44.06: Waiting for worker…
2026-04-10 20:46.32: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4' locally
docker.io/ocaml/opam@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
bcb8aca13f7d: Already exists
bee1401d6aa9: Already exists
70a4ec3f5a63: Already exists
946380c37df7: Already exists
40a16ba01935: Already exists
f4df01b7be08: Already exists
c7d14a9ac62c: Already exists
8ece799add44: Already exists
d3cb64c779a6: Already exists
d54da7bf4e54: Already exists
3111aa7c2023: Already exists
962186c6e1e2: Already exists
8745338b1e0b: Already exists
70494a8c0d08: Already exists
9fbe01dcf1e6: Already exists
742774a39128: Already exists
6780ddc6e8a5: Already exists
5049c6e21d97: Already exists
f8f7f2d621cc: Already exists
d221e77cf2b7: Already exists
ea40bd8c29fe: Already exists
4f4fb700ef54: Already exists
546c3ffe9fcf: Already exists
de88a7570f24: Already exists
614f1e6aac31: Already exists
4448849c2ba8: Already exists
ae7502e72140: Already exists
ff97726fb361: Already exists
20d3e00ca128: Already exists
734e3f9ef8d5: Already exists
a9623fbab448: Already exists
d9066aed5713: Already exists
df57d5f0aedf: Already exists
a963972287a7: Already exists
960128877639: Already exists
224d5050da5a: Already exists
f8105fbb3180: Already exists
670a1f9738fe: Already exists
10f42e6216ad: Already exists
1930c7997386: Already exists
3dfb608b80df: Already exists
35294222fbdf: Already exists
b427a5ce3ccf: Already exists
159615597ae3: Already exists
Digest: sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
Status: Downloaded newer image for ocaml/opam@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
2026-04-10 20:46.38 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-10 20:46.38 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-10 20:46.38 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# 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.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, 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.3
2026-04-10 20:46.38 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-10 20:46.38 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-10 20:46.39 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-10 20:46.39 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1823 kB/s)
- Reading package lists...
2026-04-10 20:46.39 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.22.2 3.22.2"))
dune-configurator is now pinned to version 3.22.2
2026-04-10 20:46.39 ---> using "8fbece27eae7b8b1872db2d5ec5cbfc33cdb5add579ea9e48e614b0af190b025" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.22.2;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune-configurator.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune-configurator.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.22.2 [required by dune-configurator]
- install dune-configurator 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.22.2, dune-configurator.3.22.2 (cached)
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed dune-configurator.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 20:46.39 ---> using "7277fb141e00e2b955fc61a1dc629ad545b3ac277f9cb3688ec3ccad1d94605e" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall kafka.0.3;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kafka.0.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
kafka.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install base-bytes base [required by ocplib-endian]
- install cmdliner 1.3.0 [required by kafka]
- install cppo 1.8.0 [required by lwt]
- install jbuilder 1.0+beta20.2 (deprecated) [required by kafka]
- install kafka 0.3
- install lwt 6.1.1 [required by kafka]
- install ocamlfind 1.9.8 [required by base-bytes]
- install ocplib-endian 1.2 [required by lwt]
The following system packages will first need to be installed:
librdkafka-dev zlib1g-dev
<><> 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" "librdkafka-dev" "zlib1g-dev"
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../openssl-provider-legacy_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking openssl-provider-legacy (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Setting up openssl-provider-legacy (3.5.5-1~deb13u2) ...
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../libssl3t64_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Setting up libssl3t64:amd64 (3.5.5-1~deb13u2) ...
- Selecting previously unselected package comerr-dev:amd64.
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../00-comerr-dev_2.1-1.47.2-3+b10_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.2-3+b10) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../01-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../02-libkadm5clnt-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkdb5-10t64:amd64.
- Preparing to unpack .../03-libkdb5-10t64_1.21.3-5_amd64.deb ...
- Unpacking libkdb5-10t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5srv-mit12:amd64.
- Preparing to unpack .../04-libkadm5srv-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package krb5-multidev:amd64.
- Preparing to unpack .../05-krb5-multidev_1.21.3-5_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../06-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libidn2-dev:amd64.
- Preparing to unpack .../07-libidn2-dev_2.3.8-2_amd64.deb ...
- Unpacking libidn2-dev:amd64 (2.3.8-2) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../08-libkrb5-dev_1.21.3-5_amd64.deb ...
- Unpacking libkrb5-dev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libldap-dev:amd64.
- Preparing to unpack .../09-libldap-dev_2.6.10+dfsg-1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../10-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../11-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../12-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../13-libnghttp2-dev_1.64.0-1.1_amd64.deb ...
- Unpacking libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Selecting previously unselected package libnghttp3-dev:amd64.
- Preparing to unpack .../14-libnghttp3-dev_1.8.0-1_amd64.deb ...
- Unpacking libnghttp3-dev:amd64 (1.8.0-1) ...
- Selecting previously unselected package libpsl-dev:amd64.
- Preparing to unpack .../15-libpsl-dev_0.21.2-1.1+b1_amd64.deb ...
- Unpacking libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../16-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../17-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libevent-2.1-7t64:amd64.
- Preparing to unpack .../18-libevent-2.1-7t64_2.1.12-stable-10+b1_amd64.deb ...
- Unpacking libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Selecting previously unselected package libunbound8:amd64.
- Preparing to unpack .../19-libunbound8_1.22.0-2+deb13u1_amd64.deb ...
- Unpacking libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Selecting previously unselected package libgnutls-dane0t64:amd64.
- Preparing to unpack .../20-libgnutls-dane0t64_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls-dane0t64:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libgnutls-openssl27t64:amd64.
- Preparing to unpack .../21-libgnutls-openssl27t64_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package libp11-kit-dev:amd64.
- Preparing to unpack .../22-libp11-kit-dev_0.25.5-3_amd64.deb ...
- Unpacking libp11-kit-dev:amd64 (0.25.5-3) ...
- Selecting previously unselected package libtasn1-6-dev:amd64.
- Preparing to unpack .../23-libtasn1-6-dev_4.20.0-2_amd64.deb ...
- Unpacking libtasn1-6-dev:amd64 (4.20.0-2) ...
- Selecting previously unselected package nettle-dev:amd64.
- Preparing to unpack .../24-nettle-dev_3.10.1-1_amd64.deb ...
- Unpacking nettle-dev:amd64 (3.10.1-1) ...
- Selecting previously unselected package libgnutls28-dev:amd64.
- Preparing to unpack .../25-libgnutls28-dev_3.8.9-3+deb13u2_amd64.deb ...
- Unpacking libgnutls28-dev:amd64 (3.8.9-3+deb13u2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../26-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package librtmp-dev:amd64.
- Preparing to unpack .../27-librtmp-dev_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
- Unpacking librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../28-libssl-dev_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.5-1~deb13u2) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../29-libssh2-1-dev_1.11.1-1_amd64.deb ...
- Unpacking libssh2-1-dev:amd64 (1.11.1-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../30-libzstd-dev_1.5.7+dfsg-1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Selecting previously unselected package libcurl4-openssl-dev:amd64.
- Preparing to unpack .../31-libcurl4-openssl-dev_8.14.1-2+deb13u2_amd64.deb ...
- Unpacking libcurl4-openssl-dev:amd64 (8.14.1-2+deb13u2) ...
- Selecting previously unselected package libxxhash-dev:amd64.
- Preparing to unpack .../32-libxxhash-dev_0.8.3-2_amd64.deb ...
- Unpacking libxxhash-dev:amd64 (0.8.3-2) ...
- Selecting previously unselected package liblz4-dev:amd64.
- Preparing to unpack .../33-liblz4-dev_1.10.0-4_amd64.deb ...
- Unpacking liblz4-dev:amd64 (1.10.0-4) ...
- Selecting previously unselected package librdkafka1:amd64.
- Preparing to unpack .../34-librdkafka1_2.8.0-1_amd64.deb ...
- Unpacking librdkafka1:amd64 (2.8.0-1) ...
- Selecting previously unselected package librdkafka++1:amd64.
- Preparing to unpack .../35-librdkafka++1_2.8.0-1_amd64.deb ...
- Unpacking librdkafka++1:amd64 (2.8.0-1) ...
- Selecting previously unselected package libsasl2-dev.
- Preparing to unpack .../36-libsasl2-dev_2.1.28+dfsg1-9_amd64.deb ...
- Unpacking libsasl2-dev (2.1.28+dfsg1-9) ...
- Selecting previously unselected package librdkafka-dev:amd64.
- Preparing to unpack .../37-librdkafka-dev_2.8.0-1_amd64.deb ...
- Unpacking librdkafka-dev:amd64 (2.8.0-1) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../38-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Preparing to unpack .../39-openssl_3.5.5-1~deb13u2_amd64.deb ...
- Unpacking openssl (3.5.5-1~deb13u2) over (3.5.5-1~deb13u1) ...
- Setting up libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u2) ...
- Setting up libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Setting up libtasn1-doc (4.20.0-2) ...
- Setting up libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Setting up libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Setting up libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgnutls-dane0t64:amd64 (3.8.9-3+deb13u2) ...
- Setting up libgssrpc4t64:amd64 (1.21.3-5) ...
- Setting up libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Setting up comerr-dev:amd64 (2.1-1.47.2-3+b10) ...
- Setting up libssl-dev:amd64 (3.5.5-1~deb13u2) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libidn2-dev:amd64 (2.3.8-2) ...
- Setting up librdkafka1:amd64 (2.8.0-1) ...
- Setting up libxxhash-dev:amd64 (0.8.3-2) ...
- Setting up libnghttp3-dev:amd64 (1.8.0-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libtasn1-6-dev:amd64 (4.20.0-2) ...
- Setting up openssl (3.5.5-1~deb13u2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libp11-kit-dev:amd64 (0.25.5-3) ...
- Setting up libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up nettle-dev:amd64 (3.10.1-1) ...
- Setting up libkdb5-10t64:amd64 (1.21.3-5) ...
- Setting up librdkafka++1:amd64 (2.8.0-1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libsasl2-dev (2.1.28+dfsg1-9) ...
- Setting up liblz4-dev:amd64 (1.10.0-4) ...
- Setting up libssh2-1-dev:amd64 (1.11.1-1) ...
- Setting up libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Setting up krb5-multidev:amd64 (1.21.3-5) ...
- Setting up libgnutls28-dev:amd64 (3.8.9-3+deb13u2) ...
- Setting up libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Setting up libkrb5-dev:amd64 (1.21.3-5) ...
- Setting up librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Setting up libcurl4-openssl-dev:amd64 (8.14.1-2+deb13u2) ...
- Setting up librdkafka-dev:amd64 (2.8.0-1) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved jbuilder.1.0+beta20.2 (cached)
-> retrieved kafka.0.3 (https://opam.ocaml.org/cache)
-> retrieved lwt.6.1.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> installed cppo.1.8.0
-> installed cmdliner.1.3.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed lwt.6.1.1
-> installed jbuilder.1.0+beta20.2
-> installed kafka.0.3
Done.
<><> jbuilder.1.0+beta20.2 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 20:47.02 ---> saved as "888ac6307aa70beddabc0284d500c2f70320fcbfa463b149034e218c16c5ff77"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test kafka.0.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile kafka 0.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved kafka.0.3 (https://opam.ocaml.org/cache)
-> removed kafka.0.3
-> installed kafka.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 20:47.07 ---> saved as "30b1d007d2f121c1334d165ffeec29796b6664589014d34d9efe295ae6497678"
/home/opam: (run (shell "opam reinstall --with-test --verbose kafka.0.3;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kafka.0.3' && 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 kafka 0.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [kafka.0.3: extract]
-> retrieved kafka.0.3 (cached)
Processing 2/4: [kafka: jbuilder build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "jbuilder" "build" "-p" "kafka" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/kafka.0.3)
- ocamlc bin/.sendto_kafka_topic.eobjs/sendto_kafka_topic.{cmi,cmo,cmt}
- File "bin/sendto_kafka_topic.ml", line 12, characters 2-11:
- 12 | Term.info "sendto_kafka_topic" ~doc ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "bin/sendto_kafka_topic.ml", line 45, characters 27-31:
- 45 | let sendto_topic_t = Term.(pure sendto_topic $ brokers $ topic $ partition)
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "bin/sendto_kafka_topic.ml", line 48, characters 8-17:
- 48 | match Term.eval (sendto_topic_t, info) with
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- ocamlc bin/.sendto_kafka_topic.eobjs/tail_kafka_topic.{cmi,cmo,cmt}
- File "bin/tail_kafka_topic.ml", line 15, characters 2-11:
- 15 | Term.info "tail_kafka_topic" ~doc ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "bin/tail_kafka_topic.ml", line 76, characters 25-29:
- 76 | let tail_topic_t = Term.(pure tail_topic $ brokers $ msg_count $ timeout_ms $ topic $ partition $ offset)
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "bin/tail_kafka_topic.ml", line 79, characters 8-17:
- 79 | match Term.eval (tail_topic_t, info) with
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- ocamlopt bin/.sendto_kafka_topic.eobjs/sendto_kafka_topic.{cmx,o}
- File "bin/sendto_kafka_topic.ml", line 12, characters 2-11:
- 12 | Term.info "sendto_kafka_topic" ~doc ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "bin/sendto_kafka_topic.ml", line 45, characters 27-31:
- 45 | let sendto_topic_t = Term.(pure sendto_topic $ brokers $ topic $ partition)
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "bin/sendto_kafka_topic.ml", line 48, characters 8-17:
- 48 | match Term.eval (sendto_topic_t, info) with
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- ocamlc lib_lwt/ocaml_lwt_kafka.o
- ocaml_lwt_kafka.c: In function 'worker_consume':
- ocaml_lwt_kafka.c:48:3: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 48 | job->rd_errno = (job->message)?RD_KAFKA_RESP_ERR_NO_ERROR:rd_kafka_errno2err(errno);
- | ^~~
- In file included from ocaml_lwt_kafka.c:6:
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_lwt_kafka.c: In function 'worker_consume_queue':
- ocaml_lwt_kafka.c:113:3: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 113 | job->rd_errno = (job->message)?RD_KAFKA_RESP_ERR_NO_ERROR:rd_kafka_errno2err(errno);
- | ^~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_lwt_kafka.c: In function 'result_consume_queue':
- ocaml_lwt_kafka.c:128:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 128 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_lwt_kafka.c: In function 'worker_consume_batch':
- ocaml_lwt_kafka.c:181:3: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 181 | job->rd_errno = (job->actual_msg_count>=0)?RD_KAFKA_RESP_ERR_NO_ERROR:rd_kafka_errno2err(errno);
- | ^~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_lwt_kafka.c: In function 'worker_consume_batch_queue':
- ocaml_lwt_kafka.c:256:3: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 256 | job->rd_errno = (job->actual_msg_count>=0)?RD_KAFKA_RESP_ERR_NO_ERROR:rd_kafka_errno2err(errno);
- | ^~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocamlopt bin/.sendto_kafka_topic.eobjs/tail_kafka_topic.{cmx,o}
- File "bin/tail_kafka_topic.ml", line 15, characters 2-11:
- 15 | Term.info "tail_kafka_topic" ~doc ~man
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "bin/tail_kafka_topic.ml", line 76, characters 25-29:
- 76 | let tail_topic_t = Term.(pure tail_topic $ brokers $ msg_count $ timeout_ms $ topic $ partition $ offset)
- ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "bin/tail_kafka_topic.ml", line 79, characters 8-17:
- 79 | match Term.eval (tail_topic_t, info) with
- ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- ocamlc lib/ocaml_kafka.o
- ocaml_kafka.c: In function 'ocaml_kafka_raise':
- ocaml_kafka.c:90:23: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 90 | exception_handler = caml_named_value("kafka.error");
- | ^
- ocaml_kafka.c: In function 'alloc_caml_handler':
- ocaml_kafka.c:110:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 110 | caml_handler = alloc_small(1, Abstract_tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_delivery_callback':
- ocaml_kafka.c:200:18: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 200 | int msg_id = (int) msg_opaque; // has been set by ocaml_kafka_produce
- | ^
- In file included from /home/opam/.opam/4.14/lib/ocaml/caml/memory.h:31,
- from ocaml_kafka.c:1:
- ocaml_kafka.c: In function 'ocaml_kafka_handler_name':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c:272:10: note: in expansion of macro 'String_val'
- 272 | memcpy(String_val(caml_name), name, len);
- | ^~~~~~~~~~
- In file included from ocaml_kafka.c:7:
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_partitioner_callback':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c:286:10: note: in expansion of macro 'String_val'
- 286 | memcpy(String_val(caml_key), key, keylen);
- | ^~~~~~~~~~
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_new_topic':
- ocaml_kafka.c:317:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 317 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- In file included from ocaml_kafka.c:10:
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_start':
- ocaml_kafka.c:361:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 361 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_stop':
- ocaml_kafka.c:377:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 377 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_extract_topic_message':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c:392:12: note: in expansion of macro 'String_val'
- 392 | memcpy(String_val(caml_msg_payload), message->payload, message->len);
- | ^~~~~~~~~~
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c:397:14: note: in expansion of macro 'String_val'
- 397 | memcpy(String_val(caml_key_payload), message->key, message->key_len);
- | ^~~~~~~~~~
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume':
- ocaml_kafka.c:474:5: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 474 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_batch':
- ocaml_kafka.c:511:5: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 511 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_produce':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- ocaml_kafka.c:527:19: note: in expansion of macro 'String_val'
- 527 | void* payload = String_val(caml_msg);
- | ^~~~~~~~~~
- ocaml_kafka.c:534:10: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 534 | key = String_val(caml_key);
- | ^
- ocaml_kafka.c:540:97: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
- 540 | int err = rd_kafka_produce(topic, partition, RD_KAFKA_MSG_F_COPY, payload, len, key, key_len, (void *)msg_id);
- | ^
- ocaml_kafka.c:542:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 542 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_new_queue':
- ocaml_kafka.c:614:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 614 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_start_queue':
- ocaml_kafka.c:670:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 670 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_queue':
- ocaml_kafka.c:759:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 759 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_batch_queue':
- ocaml_kafka.c:795:5: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
- 795 | rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
- | ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
- 754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
- | ^~~~~~~~~~~~~~~~~~
-> compiled kafka.0.3
-> removed kafka.0.3
-> installed kafka.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 20:47.12 ---> saved as "d580049a839993943f913ae7499b3eb78de116fa5f8c1160ed36fd15f181be7e"
Job succeeded
2026-04-10 20:47.18: Job succeeded