Build:
- 0
2026-02-19 22:37.17: New job: test current_git.0.7.1 with sqlite3.5.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29436/head (e29161058ea32464613adc6b7857d8d949eb00fa)
on debian-13-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/29436/head" && git reset --hard e2916105
git fetch origin master
git merge --no-edit 198be18bb88a0b56489f5a35ddf3b455080fe905
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
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 sqlite3.5.4.0 5.4.0
RUN opam reinstall sqlite3.5.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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'sqlite3.5.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 current_git.0.7.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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'current_git.0.7.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 current_git.0.7.1) || true
RUN opam reinstall --with-test --verbose current_git.0.7.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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'current_git.0.7.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 .
2026-02-19 22:37.17: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-sqlite3.5.4.0-current_git.0.7.1-e29161058ea32464613adc6b7857d8d949eb00fa"
2026-02-19 22:37.17: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(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 sqlite3.5.4.0 5.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall sqlite3.5.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 \"\\\"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\" != 'sqlite3.5.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current_git.0.7.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-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\" != 'current_git.0.7.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 current_git.0.7.1) || true"))
(run (shell "opam reinstall --with-test --verbose current_git.0.7.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-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\" != 'current_git.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-19 22:37.17: Waiting for resource in pool OCluster
2026-02-19 22:37.17: Waiting for worker…
2026-02-19 22:37.30: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 198be18bb8 Merge pull request #29403 from mlasson/opam-publish-gen_js_api.1.1.7
Updating 198be18bb8..e29161058e
Fast-forward
packages/sqlite3/sqlite3.5.4.0/opam | 49 +++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
create mode 100644 packages/sqlite3/sqlite3.5.4.0/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c' locally
docker.io/ocaml/opam@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c: Pulling from ocaml/opam
ef235bf1a09a: Already exists
58b06b604a42: Already exists
b55f23c32d5a: Already exists
aa415425edb7: Already exists
c4f39ed7469c: Already exists
ca248a2fdd5e: Already exists
74109c509b2f: Already exists
18c2fa2271cb: Already exists
37d4d41661a2: Already exists
0b2f35f78814: Already exists
e65f29522a9a: Already exists
603a51b67573: Already exists
89b2faa02f16: Already exists
e5f11471afd4: Already exists
d7b0e5daa224: Already exists
7bec4d50f3b2: Already exists
d3a70ed71f1c: Already exists
90de03d9b27a: Already exists
a28f685cf2db: Already exists
5bb5e02041c7: Already exists
74f9af816199: Already exists
74c2f6cb4138: Already exists
4f4fb700ef54: Already exists
5ce9bdcb2952: Already exists
bf18c14e9b34: Already exists
bb4b67501479: Already exists
89e7ed0468f5: Already exists
640077527026: Already exists
363b481ff012: Already exists
437bd8bc3ce9: Already exists
2bcf3429833a: Already exists
3e5fe21454e9: Already exists
f3afb11ae499: Already exists
c3a5b88f5e5f: Already exists
124a1dc355b1: Already exists
0a9982d37abd: Already exists
9b8b724665ed: Already exists
f81507befe71: Already exists
7984e4546bf9: Already exists
3579b890ab6e: Already exists
e83772930ba8: Already exists
ae210f88246e: Already exists
e035ef68bd1a: Already exists
10a755270a5b: Already exists
ba9bc7232694: Pulling fs layer
d6bc4e91a30f: Pulling fs layer
a3c4c8a1f4e2: Pulling fs layer
845ad49c4ca0: Pulling fs layer
845ad49c4ca0: Waiting
d6bc4e91a30f: Verifying Checksum
d6bc4e91a30f: Download complete
a3c4c8a1f4e2: Verifying Checksum
a3c4c8a1f4e2: Download complete
845ad49c4ca0: Verifying Checksum
845ad49c4ca0: Download complete
ba9bc7232694: Verifying Checksum
ba9bc7232694: Download complete
ba9bc7232694: Pull complete
d6bc4e91a30f: Pull complete
a3c4c8a1f4e2: Pull complete
845ad49c4ca0: Pull complete
Digest: sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
Status: Downloaded newer image for ocaml/opam@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
2026-02-19 22:38.30 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" 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-02-19 22:38.30 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-19 22:38.30 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" 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 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-02-19 22:38.30 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" 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-02-19 22:38.30 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-19 22:38.36 ---> saved as "99ca84f18216922d0652c0aef1a27527f79dfee691a935b2016425223fd5b924"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-19 22:39.11 ---> saved as "a437673a67ac98870de2b0c6bd2b1c64f022d27ab904f45e96e4b3e257e923f1"
/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 [112 kB]
- Fetched 203 kB in 0s (817 kB/s)
- Reading package lists...
-
2026-02-19 22:39.14 ---> saved as "7c65ca6b5597f5a506414cdf252c72b9bd727263ea115e2c9396092e3c828ddf"
/home/opam: (run (shell "opam pin add -k version -yn sqlite3.5.4.0 5.4.0"))
sqlite3 is now pinned to version 5.4.0
2026-02-19 22:39.15 ---> saved as "bfe55eed425b74467bc933211a46d22e692ce70f75e79f59594f26b28ec6eed1"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall sqlite3.5.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 \"\\\"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\" != 'sqlite3.5.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"))
sqlite3.5.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 22 packages
- install astring 0.8.5 [required by fpath]
- install conf-pkg-config 4 [required by conf-sqlite3]
- install conf-sqlite3 1 [required by sqlite3]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by hex]
- install dune 3.21.1 [required by sqlite3]
- install dune-compiledb 0.6.0 [required by sqlite3]
- install dune-configurator 3.21.1 [required by sqlite3]
- install ezjsonm 1.3.0 [required by dune-compiledb]
- install fmt 0.11.0 [required by cstruct]
- install fpath 0.7.3 [required by dune-compiledb]
- install hex 1.5.0 [required by ezjsonm]
- install jsonm 1.0.2 [required by ezjsonm]
- install num 1.6 [required by sexplib]
- install ocamlbuild 0.16.1 [required by fpath]
- install ocamlfind 1.9.8 [required by fpath]
- install parsexp v0.17.0 [required by sexplib]
- install sexplib v0.17.0 [required by dune-compiledb]
- install sexplib0 v0.17.0 [required by dune-compiledb]
- install sqlite3 5.4.0 (pinned)
- install topkg 1.1.1 [required by fpath]
- install uutf 1.0.4 [required by ezjsonm]
The following system packages will first need to be installed:
libsqlite3-dev pkg-config
<><> 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" "libsqlite3-dev" "pkg-config"
- 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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libsqlite3-dev:amd64.
- Preparing to unpack .../libsqlite3-dev_3.46.1-7_amd64.deb ...
- Unpacking libsqlite3-dev:amd64 (3.46.1-7) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libsqlite3-dev:amd64 (3.46.1-7) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> installed conf-pkg-config.4
-> installed conf-sqlite3.1
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved dune-compiledb.0.6.0 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved parsexp.v0.17.0 (cached)
-> retrieved sexplib.v0.17.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved sqlite3.5.4.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> 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 jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed sexplib0.v0.17.0
-> installed hex.1.5.0
-> installed ezjsonm.1.3.0
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.17.0
-> installed dune-compiledb.0.6.0
-> installed sqlite3.5.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-19 22:40.51 ---> saved as "92b75ecfa19794cc12be26fbf9764fb236860a320184c1487c3eed0297f814f3"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall current_git.0.7.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-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\" != 'current_git.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
current_git.0.7.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 8 packages
- recompile cstruct 6.2.0 [uses fmt]
- recompile dune-compiledb 0.6.0 [uses ezjsonm]
- recompile ezjsonm 1.3.0 [uses uutf]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile hex 1.5.0 [uses cstruct]
- recompile jsonm 1.0.2 [uses uutf]
- recompile sqlite3 5.4.0 (pinned) [uses dune-compiledb]
- recompile uutf 1.0.4 [uses cmdliner]
=== install 38 packages
- install asetmap 0.8.1 [required by prometheus]
- install base-bytes base [required by inotify]
- install bos 0.2.1 [required by current_git]
- install cf 0.5.0 [required by cf-lwt]
- install cf-lwt 0.5.0 [required by irmin-watcher]
- install cmdliner 1.3.0 [required by current]
- install conf-git 1.1 [required by current_git]
- install conf-libev 4-13 [required by current]
- install conf-libffi 2.0.0 [required by ctypes-foreign]
- install cppo 1.8.0 [required by ppx_deriving]
- install ctypes 0.24.0 [required by cf, fsevents]
- install ctypes-foreign 0.24.0 [required by cf]
- install current 0.7.1 [required by current_git]
- install current_git 0.7.1
- install current_incr 0.6.1 [required by current]
- install duration 0.2.1 [required by current]
- install eqaf 0.9 [required by mirage-crypto]
- install fsevents 0.3.0 [required by fsevents-lwt]
- install fsevents-lwt 0.3.0 [required by irmin-watcher]
- install inotify 2.6 [required by irmin-watcher]
- install integers 0.7.0 [required by ctypes]
- install irmin-watcher 0.5.0 [required by current_git]
- install logs 0.10.0 [required by current_git]
- install lwt 6.1.0 [required by current_git]
- install lwt-dllist 1.1.0 [required by current]
- install mirage-crypto 0.11.3 [required by current_git]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocplib-endian 1.2 [required by lwt]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by current_git]
- install ppx_deriving_yojson 3.10.0 [required by current_git]
- install ppxlib 0.37.0 [required by ppx_deriving_yojson]
- install prometheus 1.3 [required by current]
- install re 1.14.0 [required by current]
- install result 1.5 [required by current_git]
- install rresult 0.7.0 [required by bos]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install yojson 3.0.0 [required by current_git]
The following system packages will first need to be installed:
libev-dev libffi-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" "libev-dev" "libffi-dev"
- Selecting previously unselected package libev4t64: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 ... 20701 files and directories currently installed.)
- Preparing to unpack .../libev4t64_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev4t64:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libev-dev:amd64.
- Preparing to unpack .../libev-dev_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev-dev:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Setting up libev4t64:amd64 (1:4.33-2.1+b1) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libev-dev:amd64 (1:4.33-2.1+b1) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asetmap.0.8.1 (cached)
-> installed base-bytes.base
-> retrieved bos.0.2.1 (cached)
-> retrieved cf.0.5.0, cf-lwt.0.5.0 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved conf-libev.4-13 (cached)
-> retrieved cppo.1.8.0 (cached)
-> installed conf-libffi.2.0.0
-> installed conf-git.1.1
-> retrieved cstruct.6.2.0 (cached)
-> retrieved ctypes.0.24.0, ctypes-foreign.0.24.0 (cached)
-> retrieved current.0.7.1, current_git.0.7.1 (cached)
-> installed asetmap.0.8.1
-> installed conf-libev.4-13
-> retrieved current_incr.0.6.1 (cached)
-> retrieved dune-compiledb.0.6.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fsevents.0.3.0, fsevents-lwt.0.3.0 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved inotify.2.6 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved irmin-watcher.0.5.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.0 (cached)
-> installed duration.0.2.1
-> retrieved lwt-dllist.1.1.0 (cached)
-> installed current_incr.0.6.1
-> installed lwt-dllist.1.1.0
-> installed cppo.1.8.0
-> retrieved mirage-crypto.0.11.3 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppx_deriving_yojson.3.10.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved prometheus.1.3 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed ocplib-endian.1.2
-> retrieved uutf.1.0.4 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed rresult.0.7.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed integers.0.7.0
-> removed sqlite3.5.4.0
-> removed dune-compiledb.0.6.0
-> removed ezjsonm.1.3.0
-> removed hex.1.5.0
-> removed cstruct.6.2.0
-> removed fmt.0.11.0
-> removed jsonm.1.0.2
-> removed uutf.1.0.4
-> installed cmdliner.1.3.0
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed uutf.1.0.4
-> installed lwt.6.1.0
-> installed fmt.0.11.0
-> installed inotify.2.6
-> installed prometheus.1.3
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed eqaf.0.9
-> installed jsonm.1.0.2
-> installed logs.0.10.0
-> installed ezjsonm.1.3.0
-> installed dune-compiledb.0.6.0
-> installed ctypes.0.24.0
-> installed sqlite3.5.4.0
-> installed mirage-crypto.0.11.3
-> installed bos.0.2.1
-> installed ctypes-foreign.0.24.0
-> installed cf.0.5.0
-> installed fsevents.0.3.0
-> installed cf-lwt.0.5.0
-> installed fsevents-lwt.0.3.0
-> installed irmin-watcher.0.5.0
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_yojson.3.10.0
-> installed current.0.7.1
-> installed current_git.0.7.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-19 22:42.11 ---> saved as "a47b2f061ae025e96b537c0967c61184e04a430ae26c6b55b874ddb071f57b5e"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test current_git.0.7.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile current_git 0.7.1
=== install 6 packages
- install alcotest 1.9.1 [required by current_git]
- install alcotest-lwt 1.9.1 [required by current_git]
- install camlp-streams 5.0.1 [required by mdx]
- install mdx 2.5.1 [required by current_git]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocaml-version 4.0.3 [required by mdx]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1, alcotest-lwt.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
-> retrieved current_git.0.7.1 (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.1 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.3 (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> removed current_git.0.7.1
-> installed ocaml-syntax-shims.1.0.0
-> installed alcotest.1.9.1
-> installed alcotest-lwt.1.9.1
-> installed mdx.2.5.1
-> installed current_git.0.7.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-19 22:42.29 ---> saved as "109904aec3d94438e612bf789e8f39fbdce6b7df48b49f1c96578a32866dd803"
/home/opam: (run (shell "opam reinstall --with-test --verbose current_git.0.7.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-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\" != 'current_git.0.7.1' && 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 current_git 0.7.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [current_git.0.7.1: extract]
-> retrieved current_git.0.7.1 (cached)
Processing 2/4: [current_git: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "current_git" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/current_git.0.7.1)
- (cd _build/default/plugins/git/test && ./git_test.exe)
- Testing `current-git'.
- This run has ID `UMFR8Q99'.
-
- [OK] mdx-like 0 full test.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/current_git.0.7.1/_build/default/plugins/git/test/_build/_tests/current-git'.
- Test Successful in 1.534s. 1 test run.
-> compiled current_git.0.7.1
-> removed current_git.0.7.1
-> installed current_git.0.7.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-19 22:42.39 ---> saved as "fd82d762dead3984c7022c84ce1b8a6d699f277cb7a19233c5912eda3199a0fc"
Job succeeded
2026-02-19 22:42.44: Job succeeded