(for PR #29893)
2026-05-12 12:13.34: New job: build ez_api.3.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29893/head (f8b665bc7f31903aeca03d04a5c0996397f57443)
on freebsd-15.0-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 freebsd-15.0-ocaml-4.14
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/local/bin/opam-dev /usr/local/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 "\"freebsd-15.0\""; 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 "freebsd-15.0-ocaml-4.14-ez_api.3.0.0-f8b665bc7f31903aeca03d04a5c0996397f57443"
2026-05-12 12:13.34: Using OBuilder spec:
((from freebsd-15.0-ocaml-4.14)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -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 \"\\\"freebsd-15.0\\\"\"; 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:13.34: Got resource from pool OCluster
Building on rosemary
All commits already cached
Updating files: 100% (17858/17858), done.
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 freebsd-15.0-ocaml-4.14)
2026-05-12 12:06.14 ---> using "72cdd96d2d21f8c55140a83e6aa1d871999cc103a298a3bf0e5db4a314024f45" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
2026-05-12 12:06.14 ---> using "4c4fda7ee7ed9eac597f961b87c33c63b34aaccb551c72772ace9b375fad8d97" from cache
/home/opam: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-12 12:06.14 ---> using "de946948e0d785daa61a047a82c57932e35ba22f119c99cc666f726de2cc2a20" 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=freebsd os-distribution=freebsd os-version=1500068
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 39
# repositories 1 (version-controlled)
# pinned 0
# current-switch 4.14.3
# invariant ["ocaml-base-compiler" {= "4.14.3"} | "ocaml-system" {= "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.3/lib/ocaml/stublibs:/home/opam/.opam/4.14.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-05-12 12:06.14 ---> using "cc62b571599dace346eb0c2adf0d036a1fca0f9a32553fdeaf78973ab615703a" 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:06.14 ---> using "520b4dcdc21dfac94163528e64fd1a074957ae3ed5eaaa82eef1382aece5f511" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-12 12:06.22 ---> saved as "b2093f5d00ed7ac2254f95a4efa0e94262f4134d4ae83ab703b98eb59cfd6fe4"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-12 12:06.34 ---> saved as "c2b4383103ccb484e21db604551f2a7bb9a431bb08b9c72ba40878f1a8aefb90"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
[WARNING] Unknown update command for bsd, skipping system update
2026-05-12 12:06.34 ---> saved as "f97a8b2330ca78d3fbabd0d49149132e28e579b067aa8da6a263d58e71dfc090"
/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:06.35 ---> saved as "0baec904243884bb8e8cc61c156c9986006719192ca1ddf83643fbc164283b7d"
/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 \"\\\"freebsd-15.0\\\"\"; 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
∗ angstrom 0.16.1 [required by uri]
∗ bigstringaf 0.10.0 [required by angstrom]
∗ csexp 1.5.2 [required by dune-configurator]
∗ cstruct 6.2.0 [required by hex]
∗ dune 3.23.0 [required by ez_api]
∗ dune-configurator 3.23.0 [required by bigstringaf]
∗ ez_api 3.0.0 (pinned)
∗ ezjsonm 1.3.0 [required by ez_api]
∗ fmt 0.11.0 [required by cstruct]
∗ hex 1.5.0 [required by ezjsonm, json-data-encoding]
∗ json-data-encoding 1.1.1 [required by ez_api]
∗ jsonm 1.0.2 [required by ezjsonm]
∗ ocaml-syntax-shims 1.0.0 [required by angstrom]
∗ ocamlbuild 0.16.1 [required by uuidm]
∗ ocamlfind 1.9.8 [required by uuidm]
∗ sexplib0 v0.17.0 [required by ezjsonm]
∗ stringext 1.6.0 [required by uri]
∗ topkg 1.1.1 [required by uuidm]
∗ uri 4.4.0 [required by json-data-encoding]
∗ uuidm 0.9.10 [required by ez_api]
∗ 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 (https://github.com/OCamlPro/ez_api/archive/refs/tags/3.0.0.tar.gz)
⬇ 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 stringext.1.6.0
∗ installed sexplib0.v0.17.0
∗ installed ocaml-syntax-shims.1.0.0
∗ installed cstruct.6.2.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.
2026-05-12 12:07.34 ---> saved as "1821307c3110f795908393fa0c1e5b8ae5fd40d3f952c2d12f10e4841bd5c93a"
Job succeeded
2026-05-12 12:15.17: Job succeeded