(for PR #29242)
2026-01-19 02:02.03: New job: test neo4j_bolt.0.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29242/head (ea144f64f5b65b3cba061a8af99b3be4c2c5bc74)
on archlinux-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 39960ffbaf3e5b50a1e354d4c99bfecc01e358ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.4@sha256:29c60d7f6d5620dbed6436c999ad6fc08e5c99f3b3a07a4b0e4553be76503c04
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.0.4.0 0.4.0
RUN opam reinstall neo4j_bolt.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'neo4j_bolt.0.4.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test neo4j_bolt.0.4.0) || true
RUN opam reinstall --with-test --verbose neo4j_bolt.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'neo4j_bolt.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-01-19 02:02.03: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:29c60d7f6d5620dbed6436c999ad6fc08e5c99f3b3a07a4b0e4553be76503c04-neo4j_bolt.0.4.0-ea144f64f5b65b3cba061a8af99b3be4c2c5bc74"
2026-01-19 02:02.03: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:29c60d7f6d5620dbed6436c999ad6fc08e5c99f3b3a07a4b0e4553be76503c04)
(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.0.4.0 0.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall neo4j_bolt.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 \"\\\"archlinux\\\"\"; 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.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"))
(run (network host)
(shell "(opam reinstall --with-test neo4j_bolt.0.4.0) || true"))
(run (shell "opam reinstall --with-test --verbose neo4j_bolt.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 \"\\\"archlinux\\\"\"; 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.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-01-19 02:02.03: Waiting for resource in pool OCluster
2026-01-19 06:15.38: Waiting for worker…
2026-01-19 06:18.43: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 68% (13225/19230)
Updating files: 69% (13269/19230)
Updating files: 70% (13461/19230)
Updating files: 71% (13654/19230)
Updating files: 72% (13846/19230)
Updating files: 73% (14038/19230)
Updating files: 74% (14231/19230)
Updating files: 75% (14423/19230)
Updating files: 76% (14615/19230)
Updating files: 77% (14808/19230)
Updating files: 78% (15000/19230)
Updating files: 79% (15192/19230)
Updating files: 80% (15384/19230)
Updating files: 81% (15577/19230)
Updating files: 82% (15769/19230)
Updating files: 83% (15961/19230)
Updating files: 84% (16154/19230)
Updating files: 85% (16346/19230)
Updating files: 86% (16538/19230)
Updating files: 87% (16731/19230)
Updating files: 88% (16923/19230)
Updating files: 89% (17115/19230)
Updating files: 90% (17307/19230)
Updating files: 91% (17500/19230)
Updating files: 92% (17692/19230)
Updating files: 93% (17884/19230)
Updating files: 94% (18077/19230)
Updating files: 95% (18269/19230)
Updating files: 96% (18461/19230)
Updating files: 97% (18654/19230)
Updating files: 98% (18846/19230)
Updating files: 99% (19038/19230)
Updating files: 100% (19230/19230)
Updating files: 100% (19230/19230), done.
HEAD is now at 39960ffbaf Merge pull request #29193 from recoules/release-binsec-0.11.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:archlinux-ocaml-5.4@sha256:29c60d7f6d5620dbed6436c999ad6fc08e5c99f3b3a07a4b0e4553be76503c04)
2026-01-19 06:20.16 ---> saved as "b964edc9159a7890c05801d80f00879327bffabbf09e9f1b9488eb9b8710cc62"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-19 06:20.16 ---> saved as "16fe16a6b2d857667430d24a8ab77e3bb13406a5934c104ccb3382651722c2bc"
/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.
Continue? [Y/n] y
Format upgrade done.
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.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-19 06:20.58 ---> saved as "bb81515c977f82c72c815dc8555d5413ce775868f00788683ce8c627eae6d7a3"
/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=arch os-version=20260104.0.477168
# 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.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-01-19 06:20.59 ---> saved as "8176f0c5e28426d3649b15642f577f62ea65ec492471d4028fbad964142e035f"
/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-01-19 06:21.13 ---> saved as "3b7ba200ed4feec9273954dee85601b22de34ae7793cbad0569704b7e9addf3c"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 06:21.48 ---> saved as "635df652906321819b929b93d17ed4aaad3b3a43ccfa41de179d3f0fd1323f7b"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 06:22.22 ---> saved as "3822f7ecaf1629bd9fc5f3d6c097f73bf32a84ea02f48ac8fb77023aa52c4d67"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-01-19 06:22.34 ---> saved as "b061bbd6b404141cb16c4104b2d3e532a0f142a92a539f495e6c0208030b3c11"
/home/opam: (run (shell "opam pin add -k version -yn neo4j_bolt.0.4.0 0.4.0"))
neo4j_bolt is now pinned to version 0.4.0
2026-01-19 06:22.39 ---> saved as "bd9be6297e487d18896d91b9f442c99b4144b93d5c1b0d09e453fcee327a2de7"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall neo4j_bolt.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 \"\\\"archlinux\\\"\"; 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.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.0.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 20 packages
∗ base-bytes base [required by ocplib-endian]
∗ conf-libssl 4 [required by ssl]
∗ conf-pkg-config 4 [required by conf-libssl]
∗ cppo 1.8.0 [required by lwt]
∗ csexp 1.5.2 [required by dune-configurator]
∗ dune 3.21.0 [required by neo4j_bolt]
∗ dune-configurator 3.21.0 [required by lwt]
∗ lwt 6.0.0 [required by neo4j_bolt]
∗ lwt_ppx 6.0.0 [required by neo4j_bolt]
∗ lwt_ssl 1.2.0 [required by neo4j_bolt]
∗ neo4j_bolt 0.4.0 (pinned)
∗ ocaml-compiler-libs v0.17.0 [required by ppxlib]
∗ ocamlfind 1.9.8 [required by base-bytes]
∗ ocplib-endian 1.2 [required by lwt]
∗ ppx_derivers 1.2.1 [required by ppxlib]
∗ ppxlib 0.37.0 [required by lwt_ppx]
∗ sexplib0 v0.17.0 [required by ppxlib]
∗ ssl 0.7.0 [required by neo4j_bolt]
∗ stdlib-shims 0.3.0 [required by ppxlib]
∗ yojson 3.0.0 [required by neo4j_bolt]
The following system packages will first need to be installed:
pkgconf
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (22) Old Version New Version Net Change Download Size
-
- core/audit 4.1.2-1 4.1.2-2 0.00 MiB 0.38 MiB
- core/binutils 2.45.1-1 2.45.1+r35+g12d0a1dbc1b9-1 0.00 MiB 7.79 MiB
- core/brotli 1.1.0-3 1.2.0-1 0.03 MiB 0.39 MiB
- core/ca-certificates-mozilla 3.119.1-1 3.120-1 0.00 MiB 0.39 MiB
- core/gcc 15.2.1+r301+gf24307422d1d-1 15.2.1+r447+g6a64f6c3ebb8-1 0.02 MiB 54.07 MiB
- core/gcc-libs 15.2.1+r301+gf24307422d1d-1 15.2.1+r447+g6a64f6c3ebb8-1 3.22 MiB 36.92 MiB
- core/glib2 2.86.3-1 2.86.3-2 0.00 MiB 4.93 MiB
- core/glibc 2.42+r33+gde1fe81f4714-1 2.42+r50+g453e6b8dbab9-1 0.00 MiB 10.15 MiB
- core/hwdata 0.402-1 0.403-1 0.04 MiB 1.66 MiB
- core/icu 78.1-1 78.2-1 0.00 MiB 11.71 MiB
- core/libcap-ng 0.8.5-3 0.9-1 0.00 MiB 0.04 MiB
- core/libseccomp 2.5.6-1 2.6.0-1 0.05 MiB 0.09 MiB
- core/libtasn1 4.20.0-1 4.21.0-1 0.00 MiB 0.13 MiB
- core/libxml2 2.15.1-4 2.15.1-5 0.01 MiB 0.75 MiB
- core/linux-api-headers 6.17-1 6.18-1 0.06 MiB 1.47 MiB
- core/pacman 7.1.0.r7.gb9f7d4a-1 7.1.0.r9.g54d9411-1 0.00 MiB 0.94 MiB
- core/sqlite 3.51.1-1 3.51.2-1 0.01 MiB 2.23 MiB
- core/sudo 1.9.17.p2-1 1.9.17.p2-2 0.00 MiB 1.84 MiB
- core/util-linux 2.41.3-1 2.41.3-2 0.00 MiB 5.22 MiB
- core/util-linux-libs 2.41.3-1 2.41.3-2 0.00 MiB 0.48 MiB
- extra/xcb-proto 1.17.0-3 1.17.0-4 0.01 MiB 0.13 MiB
- core/pkgconf 2.5.1-1 0.20 MiB 0.07 MiB
-
- Total Download Size: 141.78 MiB
- Total Installed Size: 607.86 MiB
- Net Upgrade Size: 3.65 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- gcc-15.2.1+r447+g6a64f6c3ebb8-1-x86_64 downloading...
- gcc-libs-15.2.1+r447+g6a64f6c3ebb8-1-x86_64 downloading...
- icu-78.2-1-x86_64 downloading...
- glibc-2.42+r50+g453e6b8dbab9-1-x86_64 downloading...
- binutils-2.45.1+r35+g12d0a1dbc1b9-1-x86_64 downloading...
- util-linux-2.41.3-2-x86_64 downloading...
- glib2-2.86.3-2-x86_64 downloading...
- sqlite-3.51.2-1-x86_64 downloading...
- sudo-1.9.17.p2-2-x86_64 downloading...
- hwdata-0.403-1-any downloading...
- linux-api-headers-6.18-1-x86_64 downloading...
- pacman-7.1.0.r9.g54d9411-1-x86_64 downloading...
- libxml2-2.15.1-5-x86_64 downloading...
- util-linux-libs-2.41.3-2-x86_64 downloading...
- brotli-1.2.0-1-x86_64 downloading...
- ca-certificates-mozilla-3.120-1-x86_64 downloading...
- audit-4.1.2-2-x86_64 downloading...
- libtasn1-4.21.0-1-x86_64 downloading...
- xcb-proto-1.17.0-4-any downloading...
- libseccomp-2.6.0-1-x86_64 downloading...
- pkgconf-2.5.1-1-x86_64 downloading...
- libcap-ng-0.9-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading linux-api-headers...
- upgrading glibc...
- Generating locales...
- Generation complete.
- installing pkgconf...
- upgrading libcap-ng...
- upgrading gcc-libs...
- upgrading sqlite...
- upgrading util-linux-libs...
- upgrading audit...
- upgrading brotli...
- upgrading libtasn1...
- upgrading ca-certificates-mozilla...
- upgrading binutils...
- upgrading gcc...
- upgrading glib2...
- upgrading hwdata...
- upgrading icu...
- upgrading libseccomp...
- upgrading libxml2...
- upgrading util-linux...
- upgrading pacman...
- upgrading sudo...
- upgrading xcb-proto...
- :: Running post-transaction hooks...
- (1/7) Creating system user accounts...
- (2/7) Creating temporary files...
- /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
- All rules containing unresolvable specifiers will be skipped.
- (3/7) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (4/7) Restarting marked services...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (5/7) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (6/7) Arming ConditionNeedsUpdate...
- (7/7) Rebuilding certificate stores...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved conf-libssl.4 (cached)
⬇ retrieved cppo.1.8.0 (cached)
∗ installed conf-pkg-config.4
⬇ retrieved csexp.1.5.2 (cached)
∗ installed conf-libssl.4
⬇ retrieved dune.3.21.0, dune-configurator.3.21.0 (cached)
⬇ retrieved lwt.6.0.0, lwt_ppx.6.0.0 (cached)
⬇ retrieved lwt_ssl.1.2.0 (cached)
⬇ retrieved neo4j_bolt.0.4.0 (cached)
⬇ retrieved ocaml-compiler-libs.v0.17.0 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ocplib-endian.1.2 (cached)
⬇ retrieved ppx_derivers.1.2.1 (cached)
⬇ retrieved ppxlib.0.37.0 (cached)
⬇ retrieved sexplib0.v0.17.0 (cached)
⬇ retrieved ssl.0.7.0 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved yojson.3.0.0 (cached)
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed dune.3.21.0
∗ installed ppx_derivers.1.2.1
∗ installed csexp.1.5.2
∗ installed cppo.1.8.0
∗ installed ocaml-compiler-libs.v0.17.0
∗ installed sexplib0.v0.17.0
∗ installed stdlib-shims.0.3.0
∗ installed yojson.3.0.0
∗ installed ocplib-endian.1.2
∗ installed dune-configurator.3.21.0
∗ installed ssl.0.7.0
∗ installed lwt.6.0.0
∗ installed lwt_ssl.1.2.0
∗ installed ppxlib.0.37.0
∗ installed lwt_ppx.6.0.0
∗ installed neo4j_bolt.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 06:24.21 ---> saved as "50e42dd3a4b9ab4065f0eb5410402a5b2e43fc2564ebb751e6abef16ae78ddd8"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test neo4j_bolt.0.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
↻ neo4j_bolt 0.4.0 (pinned)
=== install 11 packages
∗ alcotest 1.9.1 [required by neo4j_bolt]
∗ alcotest-lwt 1.9.1 [required by neo4j_bolt]
∗ astring 0.8.5 [required by alcotest]
∗ cmdliner 2.1.0 [required by alcotest]
∗ fmt 0.11.0 [required by alcotest, alcotest-lwt]
∗ logs 0.10.0 [required by alcotest-lwt]
∗ ocaml-syntax-shims 1.0.0 [required by alcotest]
∗ ocamlbuild 0.16.1 [required by uutf, astring, fmt, logs]
∗ re 1.14.0 [required by alcotest]
∗ topkg 1.1.1 [required by uutf, astring, fmt, logs]
∗ uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved alcotest.1.9.1, alcotest-lwt.1.9.1 (https://opam.ocaml.org/cache)
⬇ retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
⬇ retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
⬇ retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
⬇ retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
⬇ retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
⬇ retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
⬇ retrieved re.1.14.0 (https://opam.ocaml.org/cache)
⬇ retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
⬇ retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
∗ installed ocaml-syntax-shims.1.0.0
∗ installed re.1.14.0
∗ installed cmdliner.2.1.0
⊘ removed neo4j_bolt.0.4.0
∗ installed ocamlbuild.0.16.1
∗ installed topkg.1.1.1
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed astring.0.8.5
∗ installed logs.0.10.0
∗ installed alcotest.1.9.1
∗ installed alcotest-lwt.1.9.1
∗ installed neo4j_bolt.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 06:24.58 ---> saved as "8121228f3834eaa4f0c3fd99210b642281146298e4109c6d34fe6c408843595e"
/home/opam: (run (shell "opam reinstall --with-test --verbose neo4j_bolt.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 \"\\\"archlinux\\\"\"; 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.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"))
The following actions will be performed:
=== recompile 1 package
↻ neo4j_bolt 0.4.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [neo4j_bolt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "neo4j_bolt" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/neo4j_bolt.0.4.0)
- (cd _build/default/test && ./test_packstream.exe)
- Testing `PackStream'.
- This run has ID `QIDGZIFD'.
-
- [OK] null 0 null.
- [OK] bool 0 bool true.
- [OK] bool 1 bool false.
- [OK] int 0 int 0.
- [OK] int 1 int 42.
- [OK] int 2 int -17.
- [OK] int 3 int 127.
- [OK] int 4 int 200.
- [OK] int 5 int 30000.
- [OK] int 6 int 100000.
- [OK] int 7 int large.
- [OK] int 8 int -100000.
- [OK] float 0 float 0.0.
- [OK] float 1 float pi.
- [OK] float 2 float -1.5.
- [OK] string 0 string empty.
- [OK] string 1 string hello.
- [OK] string 2 string unicode.
- [OK] string 3 string 100 chars.
- [OK] string 4 string 256 chars.
- [OK] bytes 0 bytes empty.
- [OK] bytes 1 bytes small.
- [OK] list 0 list empty.
- [OK] list 1 list ints.
- [OK] list 2 list mixed.
- [OK] list 3 list nested.
- [OK] map 0 map empty.
- [OK] map 1 map simple.
- [OK] map 2 map multi.
- [OK] struct 0 struct empty.
- [OK] struct 1 struct HELLO.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/neo4j_bolt.0.4.0/_build/default/test/_build/_tests/PackStream'.
- Test Successful in 0.004s. 31 tests run.
- (cd _build/default/test && ./test_bolt.exe)
- Testing `Bolt'.
- This run has ID `VMNZIQVO'.
-
- [OK] uri_parsing 0 bolt:// plain.
- [OK] uri_parsing 1 bolt+s:// TLS.
- [OK] uri_parsing 2 bolts:// shorthand.
- [OK] uri_parsing 3 bolt+ssc:// self-signed.
- [OK] uri_parsing 4 default port.
- [OK] uri_parsing 5 with path.
- [OK] config 0 config_from_uri TLS.
- [OK] tls_mode 0 mode strings.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/neo4j_bolt.0.4.0/_build/default/test/_build/_tests/Bolt'.
- Test Successful in 0.001s. 8 tests run.
λ compiled neo4j_bolt.0.4.0
⊘ removed neo4j_bolt.0.4.0
∗ installed neo4j_bolt.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 06:25.11 ---> saved as "3275212dcdcd7a5c1282c31a8cdbf2800c0d1321cef022932824228092466ff7"
Job succeeded
2026-01-19 06:25.22: Job succeeded