(for PR #29242)
2026-04-27 07:45.26: New job: build neo4j_bolt_eio.0.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29242/head (ea144f64f5b65b3cba061a8af99b3be4c2c5bc74)
on alpine-3.23-ocaml-5.4/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/29242/head" && git reset --hard ea144f64
git fetch origin master
git merge --no-edit d5058a91d400180e2118d7eeefa040cfcee45d2c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
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 neo4j_bolt_eio.0.4.0 0.4.0
RUN opam reinstall neo4j_bolt_eio.0.4.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"alpine-3.23\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'neo4j_bolt_eio.0.4.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-27 07:45.26: Using cache hint "ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366-neo4j_bolt_eio.0.4.0-ea144f64f5b65b3cba061a8af99b3be4c2c5bc74"
2026-04-27 07:45.26: Using OBuilder spec:
((from ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366)
(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 neo4j_bolt_eio.0.4.0 0.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall neo4j_bolt_eio.0.4.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"alpine-3.23\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'neo4j_bolt_eio.0.4.0' && 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-27 07:45.26: Connecting to build cluster…
2026-04-27 07:45.26: Waiting for resource in pool OCluster
2026-04-27 08:01.17: Waiting for worker…
2026-04-27 08:03.17: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 93% (17711/18863)
Updating files: 94% (17732/18863)
Updating files: 95% (17920/18863)
Updating files: 96% (18109/18863)
Updating files: 97% (18298/18863)
Updating files: 98% (18486/18863)
Updating files: 99% (18675/18863)
Updating files: 100% (18863/18863)
Updating files: 100% (18863/18863), done.
HEAD is now at d5058a91d4 Merge pull request #29801 from YuriyKrasilnikov/opam-publish-idna.0.4.0
Merge made by the 'ort' strategy.
packages/neo4j_bolt/neo4j_bolt.0.4.0/opam | 43 +++++++++++++++++++++++
packages/neo4j_bolt_eio/neo4j_bolt_eio.0.4.0/opam | 41 +++++++++++++++++++++
2 files changed, 84 insertions(+)
create mode 100644 packages/neo4j_bolt/neo4j_bolt.0.4.0/opam
create mode 100644 packages/neo4j_bolt_eio/neo4j_bolt_eio.0.4.0/opam
(from ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366)
Unable to find image 'ocaml/opam:alpine-3.23-ocaml-5.4@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366' locally
docker.io/ocaml/opam@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366: Pulling from ocaml/opam
Digest: sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
Status: Downloaded newer image for ocaml/opam@sha256:b5f9c251ed23ceaf402a2fd8548d89b9d710ba800ef8a7f46f773bfff6f63366
2026-04-27 08:03.51 ---> using "01c11b07ac2b5cd48e66007e5a5cac291b476dda37442ad969d24b0ab6dc0559" 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-27 08:03.51 ---> using "5fa6b9ef5549d606fde31aba0d2d7485a36147f16a3ee218cbb6a6f517620475" 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 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-27 08:03.51 ---> using "2b7c0c1ec60c3c866c21f4c48a177ecdc8d20898064aa58e8186b73bd0a3b82c" 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.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=alpine os-version=3.23.4
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-27 08:03.51 ---> using "7862949e114365a7d947f371162aff05306891b079ee9ff96207c1c35ea17ff1" 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-27 08:03.51 ---> using "b5281aa9dc433b8ef976cfc81df3773fee0eb65d5c716c2c984d2975eae1fea3" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-27 08:04.09 ---> saved as "c4f64a60b837549d1cbf82f8fbcfa2ce69fc5b84fd6414dcf46e948766b2d8cb"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-27 08:04.31 ---> saved as "0439839a4828c9d6bc81da75950141c0d70ea0e2932fb48a4fd3d499e379e10a"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- v3.23.4-59-gb9ff5fecad9 [https://dl-cdn.alpinelinux.org/alpine/v3.23/main]
- v3.23.4-62-gc06bcbb6e5a [https://dl-cdn.alpinelinux.org/alpine/v3.23/community]
- v20260127-8558-gb12fae68f31 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20260127-8559-g6fd958a3511 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20260127-8554-gb33de4ab903 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 62089 distinct packages available
2026-04-27 08:04.34 ---> saved as "8c99d9a842972bcecba2bb5a98987f9eabc8ba7499743eb21771ca452faef950"
/home/opam: (run (shell "opam pin add -k version -yn neo4j_bolt_eio.0.4.0 0.4.0"))
neo4j_bolt_eio is now pinned to version 0.4.0
2026-04-27 08:04.35 ---> saved as "0366cca21523338ebc7c4bf7873d9aec3043dfeab7a2bd9b254537801de10d83"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall neo4j_bolt_eio.0.4.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"alpine-3.23\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'neo4j_bolt_eio.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
neo4j_bolt_eio.0.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 49 packages
- install asn1-combinators 0.3.2 [required by x509]
- install base64 3.5.2 [required by x509]
- install bigstringaf 0.10.0 [required by eio]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-pkg-config 4 [required by zarith]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by eio]
- install digestif 1.3.0 [required by mirage-crypto-rng, tls]
- install domain-local-await 1.0.1 [required by eio]
- install domain-name 0.5.0 [required by tls]
- install dune 3.22.2 [required by neo4j_bolt_eio]
- install dune-configurator 3.22.2 [required by bigstringaf, mirage-crypto-rng]
- install duration 0.3.1 [required by mirage-crypto-rng]
- install eio 1.3 [required by neo4j_bolt_eio]
- install eio_linux 1.3 [required by eio_main]
- install eio_main 1.3 [required by neo4j_bolt_eio]
- install eio_posix 1.3 [required by eio_main]
- install eqaf 0.10 [required by mirage-crypto-ec, digestif, mirage-crypto, mirage-crypto-pk]
- install fmt 0.11.0 [required by eio]
- install gmap 0.3.0 [required by x509]
- install hmap 0.8.1 [required by eio]
- install iomux 0.4 [required by eio_posix]
- install ipaddr 5.6.2 [required by tls]
- install kdf 1.0.0 [required by tls]
- install logs 0.10.0 [required by mirage-crypto-rng, tls]
- install lwt-dllist 1.1.0 [required by eio]
- install macaddr 5.6.2 [required by ipaddr]
- install mirage-crypto 2.1.0 [required by mirage-crypto-rng, tls]
- install mirage-crypto-ec 2.1.0 [required by tls]
- install mirage-crypto-pk 2.1.0 [required by tls]
- install mirage-crypto-rng 2.1.0 [required by tls-eio]
- install mtime 2.1.0 [required by eio]
- install neo4j_bolt_eio 0.4.0 (pinned)
- install ocamlbuild 0.16.1 [required by mtime, hmap, ptime]
- install ocamlfind 1.9.8 [required by mtime, hmap, ptime]
- install ohex 0.2.0 [required by tls]
- install optint 0.3.0 [required by eio]
- install psq 0.2.1 [required by eio]
- install ptime 1.2.0 [required by tls-eio]
- install seq base [required by psq]
- install thread-table 1.0.0 [required by domain-local-await]
- install tls 2.0.4 [required by tls-eio]
- install tls-eio 2.0.4 [required by neo4j_bolt_eio]
- install topkg 1.1.1 [required by mtime, hmap, ptime]
- install uring 2.7.0 [required by eio_linux]
- install x509 1.0.6 [required by tls]
- install yojson 3.0.0 [required by neo4j_bolt_eio]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
gmp-dev linux-headers
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apk to install them (may need root/sudo access)
2. Display the recommended apk 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 "apk" "add" "gmp-dev" "linux-headers"
- (1/3) Installing libgmpxx (6.3.0-r4)
- (2/3) Installing gmp-dev (6.3.0-r4)
- (3/3) Installing linux-headers (6.16.12-r0)
- OK: 344.7 MiB in 107 packages
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-local-await.1.0.1 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.22.2, dune-configurator.3.22.2 (cached)
-> retrieved duration.0.3.1 (cached)
-> retrieved eio.1.3, eio_linux.1.3, eio_main.1.3, eio_posix.1.3 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved iomux.0.4 (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt-dllist.1.1.0 (cached)
-> retrieved mirage-crypto.2.1.0, mirage-crypto-ec.2.1.0, mirage-crypto-pk.2.1.0, mirage-crypto-rng.2.1.0 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved neo4j_bolt_eio.0.4.0 (https://github.com/jeong-sik/ocaml-neo4j-bolt/archive/refs/tags/v0.4.0.tar.gz)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved optint.0.3.0 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved thread-table.1.0.0 (cached)
-> retrieved tls.2.0.4, tls-eio.2.0.4 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uring.2.7.0 (cached)
-> retrieved x509.1.0.6 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed logs.0.10.0
-> installed dune.3.22.2
-> installed lwt-dllist.1.1.0
-> installed base64.3.5.2
-> installed gmap.0.3.0
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed duration.0.3.1
-> installed eqaf.0.10
-> installed macaddr.5.6.2
-> installed ohex.0.2.0
-> installed optint.0.3.0
-> installed psq.0.2.1
-> installed thread-table.1.0.0
-> installed yojson.3.0.0
-> installed domain-local-await.1.0.1
-> installed ipaddr.5.6.2
-> installed digestif.1.3.0
-> installed dune-configurator.3.22.2
-> installed bigstringaf.0.10.0
-> installed iomux.0.4
-> installed eio.1.3
-> installed mirage-crypto.2.1.0
-> installed kdf.1.0.0
-> installed uring.2.7.0
-> installed mirage-crypto-rng.2.1.0
-> installed eio_posix.1.3
-> installed mirage-crypto-pk.2.1.0
-> installed eio_linux.1.3
-> installed eio_main.1.3
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> installed tls.2.0.4
-> installed tls-eio.2.0.4
[ERROR] The compilation of neo4j_bolt_eio.0.4.0 failed at "dune build -p neo4j_bolt_eio -j 71 @install".
#=== ERROR while compiling neo4j_bolt_eio.0.4.0 ===============================#
# context 2.5.1 | linux/x86_64 | ocaml-base-compiler.5.4.1 | pinned(https://github.com/jeong-sik/ocaml-neo4j-bolt/archive/refs/tags/v0.4.0.tar.gz)
# path ~/.opam/5.4/.opam-switch/build/neo4j_bolt_eio.0.4.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p neo4j_bolt_eio -j 71 @install
# exit-code 1
# env-file ~/.opam/log/neo4j_bolt_eio-7-5d6513.env
# output-file ~/.opam/log/neo4j_bolt_eio-7-5d6513.out
### output ###
# File "lib/eio/dune", line 4, characters 12-28:
# 4 | (libraries neo4j_packstream eio eio_main tls tls-eio))
# ^^^^^^^^^^^^^^^^
# Error: Library "neo4j_packstream" not found.
# -> required by library "neo4j_bolt_eio" in _build/default/lib/eio
# -> required by _build/default/META.neo4j_bolt_eio
# -> required by _build/install/default/lib/neo4j_bolt_eio/META
# -> required by _build/default/neo4j_bolt_eio.install
# -> required by alias install
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build neo4j_bolt_eio 0.4.0
+-
+- The following changes have been performed
| - install asn1-combinators 0.3.2
| - install base64 3.5.2
| - install bigstringaf 0.10.0
| - install conf-gmp 5
| - install conf-gmp-powm-sec 4
| - install conf-pkg-config 4
| - install csexp 1.5.2
| - install cstruct 6.2.0
| - install digestif 1.3.0
| - install domain-local-await 1.0.1
| - install domain-name 0.5.0
| - install dune 3.22.2
| - install dune-configurator 3.22.2
| - install duration 0.3.1
| - install eio 1.3
| - install eio_linux 1.3
| - install eio_main 1.3
| - install eio_posix 1.3
| - install eqaf 0.10
| - install fmt 0.11.0
| - install gmap 0.3.0
| - install hmap 0.8.1
| - install iomux 0.4
| - install ipaddr 5.6.2
| - install kdf 1.0.0
| - install logs 0.10.0
| - install lwt-dllist 1.1.0
| - install macaddr 5.6.2
| - install mirage-crypto 2.1.0
| - install mirage-crypto-ec 2.1.0
| - install mirage-crypto-pk 2.1.0
| - install mirage-crypto-rng 2.1.0
| - install mtime 2.1.0
| - install ocamlbuild 0.16.1
| - install ocamlfind 1.9.8
| - install ohex 0.2.0
| - install optint 0.3.0
| - install psq 0.2.1
| - install ptime 1.2.0
| - install seq base
| - install thread-table 1.0.0
| - install tls 2.0.4
| - install tls-eio 2.0.4
| - install topkg 1.1.1
| - install uring 2.7.0
| - install x509 1.0.6
| - install yojson 3.0.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/5.4/.opam-switch/backup/state-20260427080436.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 neo4j_bolt_eio.0.4.0;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"alpine-3.23\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'neo4j_bolt_eio.0.4.0' && 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
2026-04-27 08:05.46: Job failed: Failed: Build failed
2026-04-27 08:05.46: Log analysis:
2026-04-27 08:05.46: >>>
[ERROR] The compilation of neo4j_bolt_eio.0.4.0 failed at "dune build -p neo4j_bolt_eio -j 71 @install".
(score = 20)
2026-04-27 08:05.46: >>>
# Error: Library "neo4j_packstream" not found.
(score = 48)
2026-04-27 08:05.46: Library "neo4j_packstream" not found.