- github
- ocaml
- opam-repository
- eeae51
- compilers,4.14,conf-gmp-powm-sec.4,revdeps,kinetic-client.0.0.1
(not at the head of any monitored branch or PR)
2025-03-20 16:34.06: New job: test kinetic-client.0.0.1 with conf-gmp-powm-sec.4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/23330/head (eeae51c738e242582296002fd4e4e46e4a94de44)
on debian-12-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/23330/head" && git reset --hard eeae51c7
git fetch origin master
git merge --no-edit 6cf83229ddc4e6f881ea41d454f9ed5a9b8227d1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:36c0f277bc81f98c5c149cc949a5f2fd1e53ebf220aa049b9af08402de1402b3
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 conf-gmp-powm-sec.4 4
RUN opam reinstall conf-gmp-powm-sec.4; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'conf-gmp-powm-sec.4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall kinetic-client.0.0.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'kinetic-client.0.0.1' && 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 kinetic-client.0.0.1) || true
RUN opam reinstall --with-test --verbose kinetic-client.0.0.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'kinetic-client.0.0.1' && 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-03-20 16:34.06: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:36c0f277bc81f98c5c149cc949a5f2fd1e53ebf220aa049b9af08402de1402b3-conf-gmp-powm-sec.4-kinetic-client.0.0.1-eeae51c738e242582296002fd4e4e46e4a94de44"
2025-03-20 16:34.06: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:36c0f277bc81f98c5c149cc949a5f2fd1e53ebf220aa049b9af08402de1402b3)
(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 conf-gmp-powm-sec.4 4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-gmp-powm-sec.4;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-gmp-powm-sec.4' && 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 kinetic-client.0.0.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kinetic-client.0.0.1' && 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 kinetic-client.0.0.1) || true"))
(run (shell "opam reinstall --with-test --verbose kinetic-client.0.0.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kinetic-client.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-03-20 16:34.06: Waiting for resource in pool OCluster
2025-03-20 18:00.48: Waiting for worker…
2025-03-20 18:06.55: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 58% (13321/22701)
Updating files: 59% (13394/22701)
Updating files: 60% (13621/22701)
Updating files: 61% (13848/22701)
Updating files: 62% (14075/22701)
Updating files: 63% (14302/22701)
Updating files: 64% (14529/22701)
Updating files: 65% (14756/22701)
Updating files: 66% (14983/22701)
Updating files: 67% (15210/22701)
Updating files: 68% (15437/22701)
Updating files: 69% (15664/22701)
Updating files: 70% (15891/22701)
Updating files: 71% (16118/22701)
Updating files: 72% (16345/22701)
Updating files: 73% (16572/22701)
Updating files: 74% (16799/22701)
Updating files: 75% (17026/22701)
Updating files: 76% (17253/22701)
Updating files: 77% (17480/22701)
Updating files: 78% (17707/22701)
Updating files: 79% (17934/22701)
Updating files: 80% (18161/22701)
Updating files: 81% (18388/22701)
Updating files: 82% (18615/22701)
Updating files: 83% (18842/22701)
Updating files: 84% (19069/22701)
Updating files: 85% (19296/22701)
Updating files: 86% (19523/22701)
Updating files: 87% (19750/22701)
Updating files: 88% (19977/22701)
Updating files: 89% (20204/22701)
Updating files: 90% (20431/22701)
Updating files: 91% (20658/22701)
Updating files: 92% (20885/22701)
Updating files: 93% (21112/22701)
Updating files: 94% (21339/22701)
Updating files: 95% (21566/22701)
Updating files: 96% (21793/22701)
Updating files: 97% (22020/22701)
Updating files: 98% (22247/22701)
Updating files: 99% (22474/22701)
Updating files: 100% (22701/22701)
Updating files: 100% (22701/22701), done.
HEAD is now at 6cf83229dd Merge pull request #27147 from tobil4sk/conf-mbedtls-windows
Updating 6cf83229dd..eeae51c738
Fast-forward
.../conf-gmp-powm-sec/conf-gmp-powm-sec.4/opam | 36 ++++++++++++++++
packages/conf-gmp/conf-gmp.5/opam | 50 ++++++++++++++++++++++
2 files changed, 86 insertions(+)
create mode 100644 packages/conf-gmp-powm-sec/conf-gmp-powm-sec.4/opam
create mode 100644 packages/conf-gmp/conf-gmp.5/opam
(from ocaml/opam:debian-12-ocaml-4.14@sha256:36c0f277bc81f98c5c149cc949a5f2fd1e53ebf220aa049b9af08402de1402b3)
2025-03-20 18:07.13 ---> using "9582c6c8b9c91424f622a6106359e0ce49baed82ab75b8561afa6800b4ec68e5" 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-03-20 18:07.13 ---> using "b9f76094e0201918116a11bcca0aa37d4ab337cb93c53afcb25464d4f62f8f77" 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 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
[NOTE] The 'jobs' option was reset, its value was 39 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=39 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-20 18:07.13 ---> using "af24c7952b77adfc8ec86e352a8994c2e1ed66aef76aa945579b125adb45294d" 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.4.0~alpha1~dev (fcce0c8d871702aabac0a216e45212ff004cfe79)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-03-20 18:07.13 ---> using "02a703b1c3f6c35c8cbcf29c767236d436bb31434e85b9f878ed7172616fcfcd" 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-03-20 18:07.13 ---> using "469f92ee976af1e9942f9cc0bd20eba8d8963b3e307dcd31e3957191af5b46c5" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-03-20 18:07.14 ---> using "338128e9d8c59d567583753581a031dfec9b9c66cf07499083cffe11961433ff" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-20 18:07.14 ---> using "45025791adb5443988c4c39a0fd92f9ca92b16552b6b491be325d469337c077c" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [249 kB]
- Fetched 353 kB in 1s (406 kB/s)
- Reading package lists...
-
2025-03-20 18:07.14 ---> using "f15f45223dee28b6921c8e8e8c96789d2d0d2801054e02cbd67be775a7f64ac3" from cache
/home/opam: (run (shell "opam pin add -k version -yn conf-gmp-powm-sec.4 4"))
conf-gmp-powm-sec is now pinned to version 4
2025-03-20 18:07.14 ---> using "b50227df1c7c99be867425c321c985c81a892b32e63953f202fda706b788cca4" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-gmp-powm-sec.4;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'conf-gmp-powm-sec.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
conf-gmp-powm-sec.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install conf-gmp 5 [required by conf-gmp-powm-sec]
- install conf-gmp-powm-sec 4 (pinned)
The following system packages will first need to be installed:
libgmp-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" "libgmp-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl: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 ... 18745 files and directories currently installed.)
- Preparing to unpack .../libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> installed conf-gmp.5
-> installed conf-gmp-powm-sec.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-20 18:07.14 ---> using "8c6aad5f3bc7f018b86e113739506a351546ed3b6d850474575126e1bd55f837" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall kinetic-client.0.0.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'kinetic-client.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
kinetic-client.0.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 29 packages
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.1 [required by piqilib]
- install conf-pkg-config 4 [required by conf-zlib, zarith]
- install conf-zlib 1 [required by cryptokit]
- install cppo 1.8.0 [required by lwt]
- install cryptokit 1.20 [required by kinetic-client]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.17.2 [required by lwt, cryptokit, piqi]
- install dune-configurator 3.17.2 [required by cryptokit, lwt]
- install easy-format 1.3.4 [required by piqilib]
- install gen 1.1 [required by sedlex]
- install kinetic-client 0.0.1
- install lwt 5.9.1 [required by kinetic-client]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by kinetic-client]
- install ocamlfind 1.9.8 [required by kinetic-client]
- install ocplib-endian 1.2 [required by lwt]
- install piqi 0.7.8 [required by kinetic-client]
- install piqilib 0.6.16 [required by piqi]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.35.0 [required by sedlex]
- install sedlex 2.6 [required by piqilib]
- install seq base [required by gen]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by piqi]
- install topkg 1.0.8 [required by xmlm]
- install uchar 0.0.2 [required by sedlex]
- install xmlm 1.4.0 [required by piqilib]
- install zarith 1.14 [required by cryptokit]
The following system packages will first need to be installed:
pkg-config protobuf-compiler 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" "pkg-config" "protobuf-compiler" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3: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 ... 18767 files and directories currently installed.)
- Preparing to unpack .../0-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../1-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Selecting previously unselected package libprotobuf32:amd64.
- Preparing to unpack .../2-libprotobuf32_3.21.12-3_amd64.deb ...
- Unpacking libprotobuf32:amd64 (3.21.12-3) ...
- Selecting previously unselected package libprotobuf-lite32:amd64.
- Preparing to unpack .../3-libprotobuf-lite32_3.21.12-3_amd64.deb ...
- Unpacking libprotobuf-lite32:amd64 (3.21.12-3) ...
- Selecting previously unselected package libprotobuf-dev:amd64.
- Preparing to unpack .../4-libprotobuf-dev_3.21.12-3_amd64.deb ...
- Unpacking libprotobuf-dev:amd64 (3.21.12-3) ...
- Selecting previously unselected package libprotoc32:amd64.
- Preparing to unpack .../5-libprotoc32_3.21.12-3_amd64.deb ...
- Unpacking libprotoc32:amd64 (3.21.12-3) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../6-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../7-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../8-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Selecting previously unselected package protobuf-compiler.
- Preparing to unpack .../9-protobuf-compiler_3.21.12-3_amd64.deb ...
- Unpacking protobuf-compiler (3.21.12-3) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libprotobuf32:amd64 (3.21.12-3) ...
- Setting up libprotobuf-lite32:amd64 (3.21.12-3) ...
- Setting up libprotoc32:amd64 (3.21.12-3) ...
- Setting up protobuf-compiler (3.21.12-3) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libprotobuf-dev:amd64 (3.21.12-3) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.1 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved cryptokit.1.20 (cached)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2 (cached)
-> installed conf-zlib.1
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached)
-> retrieved easy-format.1.3.4 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved kinetic-client.0.0.1 (cached)
-> retrieved lwt.5.9.1 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved piqi.0.7.8 (cached)
-> retrieved piqilib.0.6.16 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved sedlex.2.6 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved uchar.0.0.2 (cached)
-> retrieved xmlm.1.4.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed uchar.0.0.2
-> installed zarith.1.14
-> installed topkg.1.0.8
-> installed xmlm.1.4.0
-> installed dune.3.17.2
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed base64.3.5.1
-> installed cppo.1.8.0
-> installed easy-format.1.3.4
-> installed gen.1.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.17.2
-> installed cryptokit.1.20
-> installed lwt.5.9.1
-> installed ppxlib.0.35.0
-> installed sedlex.2.6
-> installed piqilib.0.6.16
-> installed piqi.0.7.8
[ERROR] The compilation of kinetic-client.0.0.1 failed at "make".
#=== ERROR while compiling kinetic-client.0.0.1 ===============================#
# context 2.4.0~alpha1~dev | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path ~/.opam/4.14/.opam-switch/build/kinetic-client.0.0.1
# command ~/.opam/opam-init/hooks/sandbox.sh build make
# exit-code 2
# env-file ~/.opam/log/kinetic-client-7-da03d5.env
# output-file ~/.opam/log/kinetic-client-7-da03d5.out
### output ###
# piqi of-proto src/kinetic.proto -o src/kinetic.proto.piqi
# [libprotobuf WARNING google/protobuf/compiler/parser.cc:646] No syntax specified for the proto file: src/kinetic.proto. Please use 'syntax = "proto2";' or 'syntax = "proto3";' to specify a syntax version. (Defaulted to proto2 syntax.)
# piqic-ocaml --embed-piqi -C src src/kinetic.proto.piqi
# patch -d src < src/kinetic_piqi.patch
# patching file kinetic_piqi.ml
# Hunk #1 FAILED at 236.
# Hunk #2 FAILED at 602.
# Hunk #3 FAILED at 1080.
# Hunk #4 FAILED at 1463.
# 4 out of 4 hunks FAILED -- saving rejects to file kinetic_piqi.ml.rej
# make: *** [Makefile:11: kinetic_piqi_ml] Error 1
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build kinetic-client 0.0.1
+-
+- The following changes have been performed
| - install base-bytes base
| - install base64 3.5.1
| - install conf-pkg-config 4
| - install conf-zlib 1
| - install cppo 1.8.0
| - install cryptokit 1.20
| - install csexp 1.5.2
| - install dune 3.17.2
| - install dune-configurator 3.17.2
| - install easy-format 1.3.4
| - install gen 1.1
| - install lwt 5.9.1
| - install ocaml-compiler-libs v0.12.4
| - install ocamlbuild 0.16.1
| - install ocamlfind 1.9.8
| - install ocplib-endian 1.2
| - install piqi 0.7.8
| - install piqilib 0.6.16
| - install ppx_derivers 1.2.1
| - install ppxlib 0.35.0
| - install sedlex 2.6
| - install seq base
| - install sexplib0 v0.17.0
| - install stdlib-shims 0.3.0
| - install topkg 1.0.8
| - install uchar 0.0.2
| - install xmlm 1.4.0
| - install zarith 1.14
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20250320180716.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall kinetic-client.0.0.1;
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-12\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'kinetic-client.0.0.1' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2025-03-20 18:09.55: Job failed: Failed: Build failed
2025-03-20 18:09.55: Log analysis:
2025-03-20 18:09.55: >>>
[ERROR] The compilation of kinetic-client.0.0.1 failed at "make".
(score = 20)
2025-03-20 18:09.55: The compilation of kinetic-client.0.0.1 failed at "make".