(for PR #29893)
2026-05-12 12:13.34: New job: test ez_api.3.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29893/head (f8b665bc7f31903aeca03d04a5c0996397f57443)
on debian-unstable-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/29893/head" && git reset --hard f8b665bc
git fetch origin master
git merge --no-edit a4f153d7481c469b20f3b1064338d6a21abcb832
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-unstable-ocaml-4.14@sha256:670512efd1f0de74e5005e46fbf7ed181a74e1b73a5775fffc6f4301b5fdbaf9
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 ez_api.3.0.0 3.0.0
RUN opam reinstall ez_api.3.0.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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ez_api.3.0.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 ez_api.3.0.0) || true
RUN opam reinstall --with-test --verbose ez_api.3.0.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-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ez_api.3.0.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-05-12 12:13.34: Using cache hint "ocaml/opam:debian-unstable-ocaml-4.14@sha256:670512efd1f0de74e5005e46fbf7ed181a74e1b73a5775fffc6f4301b5fdbaf9-ez_api.3.0.0-f8b665bc7f31903aeca03d04a5c0996397f57443"
2026-05-12 12:13.34: Using OBuilder spec:
((from ocaml/opam:debian-unstable-ocaml-4.14@sha256:670512efd1f0de74e5005e46fbf7ed181a74e1b73a5775fffc6f4301b5fdbaf9)
(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 ez_api.3.0.0 3.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ez_api.3.0.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ez_api.3.0.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 ez_api.3.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose ez_api.3.0.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ez_api.3.0.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-05-12 12:13.34: Waiting for resource in pool OCluster
2026-05-12 12:13.34: Waiting for worker…
2026-05-12 12:14.58: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
HEAD is now at a4f153d748 Merge pull request #29889 from mtelvers/opam-publish-ocaml-version.4.1.1
Updating a4f153d748..f8b665bc7f
Fast-forward
packages/ez_api/ez_api.3.0.0/opam | 85 +++++++++++++++++++++++++++++++++++++++
1 file changed, 85 insertions(+)
create mode 100644 packages/ez_api/ez_api.3.0.0/opam
(from ocaml/opam:debian-unstable-ocaml-4.14@sha256:670512efd1f0de74e5005e46fbf7ed181a74e1b73a5775fffc6f4301b5fdbaf9)
Unable to find image 'ocaml/opam:debian-unstable-ocaml-4.14@sha256:670512efd1f0de74e5005e46fbf7ed181a74e1b73a5775fffc6f4301b5fdbaf9' locally
docker.io/ocaml/opam@sha256:670512efd1f0de74e5005e46fbf7ed181a74e1b73a5775fffc6f4301b5fdbaf9: Pulling from ocaml/opam
6396b26de0b9: Pulling fs layer
8c82bcadd3a0: Pulling fs layer
ca9ba9b6a990: Pulling fs layer
dfbd3066f125: Pulling fs layer
a3bc130db4a1: Pulling fs layer
cf60c98b3dbc: Pulling fs layer
d1500e13335b: Pulling fs layer
55554ae4fedf: Pulling fs layer
9b57e5080160: Pulling fs layer
dfbd3066f125: Waiting
2b35ff6cb6b7: Pulling fs layer
ea4ee44b05d8: Pulling fs layer
a3bc130db4a1: Waiting
f2476a9ff551: Pulling fs layer
55554ae4fedf: Waiting
0ce778c03b0d: Pulling fs layer
cf60c98b3dbc: Waiting
82dd3c03dd21: Pulling fs layer
9b57e5080160: Waiting
2b35ff6cb6b7: Waiting
3bc42f891c9f: Pulling fs layer
ea4ee44b05d8: Waiting
d1500e13335b: Waiting
faf6bc77cdfd: Pulling fs layer
f2476a9ff551: Waiting
300378a7a8a6: Pulling fs layer
0ce778c03b0d: Waiting
e3dc1b219159: Pulling fs layer
faf6bc77cdfd: Waiting
82dd3c03dd21: Waiting
ff2eb9f80099: Pulling fs layer
3bc42f891c9f: Waiting
300378a7a8a6: Waiting
efba89bd5ac4: Pulling fs layer
e3dc1b219159: Waiting
ff2eb9f80099: Waiting
998970eba85f: Pulling fs layer
efba89bd5ac4: Waiting
4f4fb700ef54: Pulling fs layer
2c8894103979: Pulling fs layer
998970eba85f: Waiting
52f259cf9b36: Pulling fs layer
4f4fb700ef54: Waiting
2c8894103979: Waiting
233ccfca7f44: Pulling fs layer
e0fd7439447b: Pulling fs layer
b68a95ae0828: Pulling fs layer
52f259cf9b36: Waiting
994a2d45df13: Pulling fs layer
233ccfca7f44: Waiting
e0fd7439447b: Waiting
92ed7b928883: Pulling fs layer
994a2d45df13: Waiting
86c4fb2c5b4b: Pulling fs layer
92ed7b928883: Waiting
97d86ccfdf58: Pulling fs layer
86c4fb2c5b4b: Waiting
33e6928b9b0a: Pulling fs layer
97d86ccfdf58: Waiting
59967a26da68: Pulling fs layer
33e6928b9b0a: Waiting
fa0f5ef65631: Pulling fs layer
59967a26da68: Waiting
62755616a411: Pulling fs layer
fa0f5ef65631: Waiting
2761c2b61047: Pulling fs layer
62755616a411: Waiting
811b0938823a: Pulling fs layer
2761c2b61047: Waiting
e1c26c196389: Pulling fs layer
811b0938823a: Waiting
9da53101cc39: Pulling fs layer
e1c26c196389: Waiting
5431acdb734a: Pulling fs layer
9da53101cc39: Waiting
879e05bca602: Pulling fs layer
1a73c4e07221: Pulling fs layer
ea6719a8ffcd: Pulling fs layer
5431acdb734a: Waiting
1a73c4e07221: Waiting
879e05bca602: Waiting
1b236083ad65: Pulling fs layer
bd80ac4ef4b6: Pulling fs layer
ea6719a8ffcd: Waiting
1b236083ad65: Waiting
bd80ac4ef4b6: Waiting
ca9ba9b6a990: Verifying Checksum
ca9ba9b6a990: Download complete
8c82bcadd3a0: Verifying Checksum
8c82bcadd3a0: Download complete
a3bc130db4a1: Verifying Checksum
a3bc130db4a1: Download complete
6396b26de0b9: Verifying Checksum
6396b26de0b9: Download complete
dfbd3066f125: Verifying Checksum
dfbd3066f125: Download complete
d1500e13335b: Verifying Checksum
d1500e13335b: Download complete
55554ae4fedf: Verifying Checksum
55554ae4fedf: Download complete
9b57e5080160: Verifying Checksum
9b57e5080160: Download complete
2b35ff6cb6b7: Verifying Checksum
2b35ff6cb6b7: Download complete
ea4ee44b05d8: Verifying Checksum
ea4ee44b05d8: Download complete
f2476a9ff551: Verifying Checksum
f2476a9ff551: Download complete
82dd3c03dd21: Download complete
3bc42f891c9f: Verifying Checksum
3bc42f891c9f: Download complete
0ce778c03b0d: Download complete
faf6bc77cdfd: Download complete
300378a7a8a6: Verifying Checksum
300378a7a8a6: Download complete
6396b26de0b9: Pull complete
8c82bcadd3a0: Pull complete
ca9ba9b6a990: Pull complete
e3dc1b219159: Verifying Checksum
e3dc1b219159: Download complete
ff2eb9f80099: Download complete
998970eba85f: Verifying Checksum
998970eba85f: Download complete
cf60c98b3dbc: Verifying Checksum
cf60c98b3dbc: Download complete
efba89bd5ac4: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
2c8894103979: Download complete
dfbd3066f125: Pull complete
52f259cf9b36: Download complete
233ccfca7f44: Download complete
e0fd7439447b: Verifying Checksum
e0fd7439447b: Download complete
b68a95ae0828: Download complete
994a2d45df13: Verifying Checksum
994a2d45df13: Download complete
92ed7b928883: Download complete
86c4fb2c5b4b: Download complete
a3bc130db4a1: Pull complete
97d86ccfdf58: Download complete
33e6928b9b0a: Download complete
fa0f5ef65631: Verifying Checksum
fa0f5ef65631: Download complete
59967a26da68: Verifying Checksum
59967a26da68: Download complete
2761c2b61047: Verifying Checksum
2761c2b61047: Download complete
e1c26c196389: Verifying Checksum
e1c26c196389: Download complete
9da53101cc39: Verifying Checksum
9da53101cc39: Download complete
5431acdb734a: Download complete
62755616a411: Verifying Checksum
62755616a411: Download complete
811b0938823a: Verifying Checksum
811b0938823a: Download complete
ea6719a8ffcd: Verifying Checksum
ea6719a8ffcd: Download complete
1b236083ad65: Download complete
bd80ac4ef4b6: Verifying Checksum
bd80ac4ef4b6: Download complete
1a73c4e07221: Verifying Checksum
1a73c4e07221: Download complete
cf60c98b3dbc: Pull complete
d1500e13335b: Pull complete
55554ae4fedf: Pull complete
9b57e5080160: Pull complete
2b35ff6cb6b7: Pull complete
ea4ee44b05d8: Pull complete
f2476a9ff551: Pull complete
0ce778c03b0d: Pull complete
82dd3c03dd21: Pull complete
3bc42f891c9f: Pull complete
faf6bc77cdfd: Pull complete
300378a7a8a6: Pull complete
e3dc1b219159: Pull complete
ff2eb9f80099: Pull complete
efba89bd5ac4: Pull complete
998970eba85f: Pull complete
4f4fb700ef54: Pull complete
2c8894103979: Pull complete
52f259cf9b36: Pull complete
233ccfca7f44: Pull complete
e0fd7439447b: Pull complete
b68a95ae0828: Pull complete
994a2d45df13: Pull complete
92ed7b928883: Pull complete
86c4fb2c5b4b: Pull complete
97d86ccfdf58: Pull complete
33e6928b9b0a: Pull complete
59967a26da68: Pull complete
fa0f5ef65631: Pull complete
879e05bca602: Verifying Checksum
879e05bca602: Download complete
62755616a411: Pull complete
2761c2b61047: Pull complete
811b0938823a: Pull complete
e1c26c196389: Pull complete
9da53101cc39: Pull complete
5431acdb734a: Pull complete
879e05bca602: Pull complete
1a73c4e07221: Pull complete
ea6719a8ffcd: Pull complete
1b236083ad65: Pull complete
bd80ac4ef4b6: Pull complete
Digest: sha256:670512efd1f0de74e5005e46fbf7ed181a74e1b73a5775fffc6f4301b5fdbaf9
Status: Downloaded newer image for ocaml/opam@sha256:670512efd1f0de74e5005e46fbf7ed181a74e1b73a5775fffc6f4301b5fdbaf9
2026-05-12 12:17.22 ---> saved as "153e6ce782ca268e257378f1c17cf29ccd0408c624f52f266cbc58d16fc2db21"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-05-12 12:17.22 ---> saved as "b9a6f1bcdee3f2f2edb5881e4c311751376c1275bdcc35aa6488adb0f7ad4749"
/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.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
[NOTE] The 'jobs' option was reset, its value was 1 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=1 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] no changes from git+https://github.com/ocurrent/opam-repository#patches
[default] no changes from git+file:///home/opam/opam-repository
2026-05-12 12:17.40 ---> saved as "738da9444067037a03734f893cee149af729e7ef83d144a3988dd38c48e9d557"
/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=debian os-version=unknown
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 2 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-05-12 12:17.40 ---> saved as "3e3775d7bacde065da3712d576c75a9b27c31acb2365ce922628e78322c5325b"
/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-05-12 12:17.48 ---> saved as "3283d46fe194cbb52d211e694554831ba787feed3e364d0b628916627de00cd6"
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-12 12:17.58 ---> saved as "d81f53385e5aebda861d4348cfd650ddb058ca121ec8565fc29a12dd0ea88225"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-12 12:18.12 ---> saved as "eed3783a44bfa581c65497fde9d6eac7dbb4271b588562ad45824bd4f46a6b54"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian unstable InRelease [189 kB]
- Get:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-05-12-0804.34-F-2026-05-09-0802.39.pdiff [205 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-05-12-0804.34-F-2026-05-09-0802.39.pdiff [205 kB]
- Fetched 458 kB in 4s (126 kB/s)
- Reading package lists...
-
2026-05-12 12:18.17 ---> saved as "400b9f3c47d99e5665a39aada59fbb592dc55dbdd9b6777b8201966947cb2541"
/home/opam: (run (shell "opam pin add -k version -yn ez_api.3.0.0 3.0.0"))
ez_api is now pinned to version 3.0.0
2026-05-12 12:18.17 ---> saved as "ccd018b88ecc1f5b0f8b71db436ad2826c14ebb56fc554a86d2e2d10c89be0f8"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ez_api.3.0.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ez_api.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ez_api.3.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 21 packages
- install angstrom 0.16.1 [required by uri]
- install bigstringaf 0.10.0 [required by angstrom]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by hex]
- install dune 3.23.0 [required by ez_api]
- install dune-configurator 3.23.0 [required by bigstringaf]
- install ez_api 3.0.0 (pinned)
- install ezjsonm 1.3.0 [required by ez_api]
- install fmt 0.11.0 [required by cstruct]
- install hex 1.5.0 [required by ezjsonm, json-data-encoding]
- install json-data-encoding 1.1.1 [required by ez_api]
- install jsonm 1.0.2 [required by ezjsonm]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by uuidm]
- install ocamlfind 1.9.8 [required by uuidm]
- install sexplib0 v0.17.0 [required by ezjsonm]
- install stringext 1.6.0 [required by uri]
- install topkg 1.1.1 [required by uuidm]
- install uri 4.4.0 [required by json-data-encoding]
- install uuidm 0.9.10 [required by ez_api]
- install uutf 1.0.4 [required by ezjsonm]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> retrieved dune.3.23.0, dune-configurator.3.23.0 (cached)
-> retrieved ez_api.3.0.0 (cached)
-> retrieved ezjsonm.1.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved hex.1.5.0 (cached)
-> retrieved json-data-encoding.1.1.1 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved uuidm.0.9.10 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uuidm.0.9.10
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed jsonm.1.0.2
-> installed dune.3.23.0
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed ocaml-syntax-shims.1.0.0
-> installed sexplib0.v0.17.0
-> installed stringext.1.6.0
-> installed hex.1.5.0
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.23.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed json-data-encoding.1.1.1
-> installed ez_api.3.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-12 12:19.04 ---> saved as "38a713b1864e8d1de0333318962b001a2f3eff54f47332d5f99ce26f6010cf32"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ez_api.3.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ez_api 3.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ez_api.3.0.0 (https://github.com/OCamlPro/ez_api/archive/refs/tags/3.0.0.tar.gz)
-> removed ez_api.3.0.0
-> installed ez_api.3.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-12 12:19.11 ---> saved as "58f4db6f489a1f4834c70cb7b7eb22bfec0ceec3fc1dcf5f93dbf0f9bdf4fd1e"
/home/opam: (run (shell "opam reinstall --with-test --verbose ez_api.3.0.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-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ez_api.3.0.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
- recompile ez_api 3.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [ez_api.3.0.0: extract]
-> retrieved ez_api.3.0.0 (cached)
Processing 2/4: [ez_api: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ez_api" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ez_api.3.0.0)
-> compiled ez_api.3.0.0
-> removed ez_api.3.0.0
-> installed ez_api.3.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-12 12:19.18 ---> saved as "4c6dc8249bf2f24e4d207ce81143ae336a80fcd76e921547be99a54817a0341a"
Job succeeded
2026-05-12 12:19.25: Job succeeded