(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 alpine-3.23-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:alpine-3.23-ocaml-4.14@sha256:0b9f8c973c2bd3489f41a7729708f38b440ca1beee96e869599370839ffc13af
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 "\"alpine-3.23\""; 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 "\"alpine-3.23\""; 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:alpine-3.23-ocaml-4.14@sha256:0b9f8c973c2bd3489f41a7729708f38b440ca1beee96e869599370839ffc13af-ez_api.3.0.0-f8b665bc7f31903aeca03d04a5c0996397f57443"
2026-05-12 12:13.34: Using OBuilder spec:
((from ocaml/opam:alpine-3.23-ocaml-4.14@sha256:0b9f8c973c2bd3489f41a7729708f38b440ca1beee96e869599370839ffc13af)
(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 \"\\\"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\" != '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 \"\\\"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\" != '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:15.22: Got resource from pool OCluster
Building on asteria.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:alpine-3.23-ocaml-4.14@sha256:0b9f8c973c2bd3489f41a7729708f38b440ca1beee96e869599370839ffc13af)
Unable to find image 'ocaml/opam:alpine-3.23-ocaml-4.14@sha256:0b9f8c973c2bd3489f41a7729708f38b440ca1beee96e869599370839ffc13af' locally
docker.io/ocaml/opam@sha256:0b9f8c973c2bd3489f41a7729708f38b440ca1beee96e869599370839ffc13af: Pulling from ocaml/opam
6a0ac1617861: Already exists
c7f7861ee488: Already exists
242907bdbe26: Already exists
3352270e10b0: Already exists
47c18f475101: Already exists
9e65bd6c7317: Already exists
2801e5e13c88: Already exists
018ccadd5bf7: Already exists
2e273f2aabdd: Already exists
e348a3504fd1: Already exists
37f6ed8f41db: Already exists
e4dee05632b5: Already exists
cc7d1e48a817: Already exists
2afc109d933b: Already exists
c8b994fd4978: Already exists
94d6ee139c18: Already exists
33b9b3d1317d: Already exists
4f4fb700ef54: Already exists
48061712d8ec: Already exists
9379b5d8c279: Already exists
da5d751f6c1f: Already exists
ded3ed35f70f: Already exists
9d95cd3602ab: Already exists
e5ec97e88805: Already exists
8fa9502c7636: Already exists
d2ada6e134f3: Already exists
de9c4f786308: Already exists
74907ca98ac8: Already exists
d97c011a0188: Already exists
5e3139447bb2: Already exists
28c43d9c26e0: Already exists
60fbe17e1c27: Already exists
c2a8a1dcb191: Already exists
13a9f7fda846: Already exists
01cdb65b7e5a: Already exists
ded9bfe54dca: Already exists
1ad02edb715a: Pulling fs layer
1e9f9da3b79d: Pulling fs layer
d397cdfe116f: Pulling fs layer
4af8db0c03a5: Pulling fs layer
06c642a7aff7: Pulling fs layer
06c642a7aff7: Waiting
4af8db0c03a5: Waiting
d397cdfe116f: Verifying Checksum
d397cdfe116f: Download complete
4af8db0c03a5: Download complete
06c642a7aff7: Download complete
1ad02edb715a: Verifying Checksum
1ad02edb715a: Download complete
1ad02edb715a: Pull complete
1e9f9da3b79d: Download complete
1e9f9da3b79d: Pull complete
d397cdfe116f: Pull complete
4af8db0c03a5: Pull complete
06c642a7aff7: Pull complete
Digest: sha256:0b9f8c973c2bd3489f41a7729708f38b440ca1beee96e869599370839ffc13af
Status: Downloaded newer image for ocaml/opam@sha256:0b9f8c973c2bd3489f41a7729708f38b440ca1beee96e869599370839ffc13af
2026-05-12 12:15.22 ---> using "6f38fff7a353fd89bf4178ead6a17672cdb9dbbd6e61e99fabe101fa10ebda94" 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-05-12 12:15.22 ---> using "e4808e2fbebf1cfaadbb22d73a329ec3af0436bd6bc948c1b45b9ae516e5adca" 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.1 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 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
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:15.22 ---> using "5de99a27b2a9eff9ac48e8273ab1d1d363b78adcad22dc28e9c70a0e2bb31efe" 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 255
# 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:15.22 ---> using "e25e2d74feac918b7c0fb93a5ccdac88f5cb3103387363036b843812ad375e9e" 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-05-12 12:15.22 ---> using "b2e30a88e58ac3bd460360f0e95ca9bc19b056d6eaf60dd60c3aab1982d5b3fc" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-12 12:15.23 ---> using "a493478600b4cf5ec05077a1cc58d7df07d46f385c1620b23505bb9939dad9af" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-12 12:15.29 ---> saved as "c2d0a706af7e13812d7a76694f67115b5b765fcd34ba4928d29c9fce1a159d97"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- v3.23.4-168-gb27ea208cc9 [https://dl-cdn.alpinelinux.org/alpine/v3.23/main]
- v3.23.4-172-g22eec87ed33 [https://dl-cdn.alpinelinux.org/alpine/v3.23/community]
- v20260127-9474-g774fea92b92 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20260127-9488-g9f05a8bdb5b [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20260127-9485-gd157d69981c [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 62221 distinct packages available
2026-05-12 12:15.31 ---> saved as "f4af7529d6e36b3d6f3abdcb91ab8db494ea6c8444859b94f14f05d11c5e11d7"
/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:15.32 ---> saved as "9b46fdcae4ff92aeb52bb89735a10c22106d22c5993663afd68a33e1699d3fa6"
/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 \"\\\"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\" != '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:16.14 ---> saved as "f9974a0ca5a8e4801ae79bed1e16f542c1c8a75a498601d402afb87d501f0c4d"
/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:16.19 ---> saved as "2084447738e9b0dcca08aff6e8d2d621f4bdf24bcd9188eff54dea591efdbf5f"
/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 \"\\\"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\" != '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" "255" "@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:16.25 ---> saved as "d224d7a37e29ae740c7aab44f27fadef02698d6b9c22e926e0c6dc082f3ff1fb"
Job succeeded
2026-05-12 12:16.32: Job succeeded