- github
- ocaml
- opam-repository
- f8b665
- distributions,ubuntu-25.10-ocaml-4.14,ez_api.3.0.0
(not at the head of any monitored branch or PR)
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 ubuntu-25.10-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:ubuntu-25.10-ocaml-4.14@sha256:6be191dcce913f2b0e107f64ff30b7b523806d4a08d0aceb27842a00f0c745fb
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 "\"ubuntu-25.10\""; 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:ubuntu-25.10-ocaml-4.14@sha256:6be191dcce913f2b0e107f64ff30b7b523806d4a08d0aceb27842a00f0c745fb-ez_api.3.0.0-f8b665bc7f31903aeca03d04a5c0996397f57443"
2026-05-12 12:13.34: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:6be191dcce913f2b0e107f64ff30b7b523806d4a08d0aceb27842a00f0c745fb)
(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 \"\\\"ubuntu-25.10\\\"\"; 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.32: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files: 78% (13951/17858)
Updating files: 79% (14108/17858)
Updating files: 80% (14287/17858)
Updating files: 81% (14465/17858)
Updating files: 82% (14644/17858)
Updating files: 83% (14823/17858)
Updating files: 84% (15001/17858)
Updating files: 85% (15180/17858)
Updating files: 86% (15358/17858)
Updating files: 87% (15537/17858)
Updating files: 88% (15716/17858)
Updating files: 89% (15894/17858)
Updating files: 90% (16073/17858)
Updating files: 91% (16251/17858)
Updating files: 92% (16430/17858)
Updating files: 93% (16608/17858)
Updating files: 94% (16787/17858)
Updating files: 95% (16966/17858)
Updating files: 96% (17144/17858)
Updating files: 97% (17323/17858)
Updating files: 98% (17501/17858)
Updating files: 99% (17680/17858)
Updating files: 100% (17858/17858)
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 ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:6be191dcce913f2b0e107f64ff30b7b523806d4a08d0aceb27842a00f0c745fb)
Unable to find image 'ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:6be191dcce913f2b0e107f64ff30b7b523806d4a08d0aceb27842a00f0c745fb' locally
docker.io/ocaml/opam@sha256:6be191dcce913f2b0e107f64ff30b7b523806d4a08d0aceb27842a00f0c745fb: Pulling from ocaml/opam
16c195d4c5e9: Already exists
5d5ae59f12bf: Pulling fs layer
2a1bdaff57b1: Pulling fs layer
4f0da68efc03: Pulling fs layer
ddae77db6783: Pulling fs layer
fdb5e27abf0f: Pulling fs layer
93a3171e4fee: Pulling fs layer
dbf7af4bbc5e: Pulling fs layer
5f7df1a633be: Pulling fs layer
91c5054ad467: Pulling fs layer
f85e33539fc1: Pulling fs layer
60715424f1f3: Pulling fs layer
3d928beeeddb: Pulling fs layer
ad721eb63d8e: Pulling fs layer
6423a1c6a219: Pulling fs layer
5b5461462268: Pulling fs layer
d0115271718d: Pulling fs layer
9fd788776761: Pulling fs layer
ee0541408fb9: Pulling fs layer
3710803c65d7: Pulling fs layer
ce2c52193d43: Pulling fs layer
4f4fb700ef54: Pulling fs layer
a2f980d0b98b: Pulling fs layer
410070a2f222: Pulling fs layer
d3816a848673: Pulling fs layer
7c855ca71d74: Pulling fs layer
1528501eaf16: Pulling fs layer
23228c2200ea: Pulling fs layer
54f128346b20: Pulling fs layer
76cf7939a21f: Pulling fs layer
ebfcf91f683f: Pulling fs layer
aba3e293a4a1: Pulling fs layer
5f6c0c42c902: Pulling fs layer
266bc6609d9e: Pulling fs layer
018e8442920c: Pulling fs layer
5c3eb8d8a9f0: Pulling fs layer
96e1068cace5: Pulling fs layer
74bdcce97d20: Pulling fs layer
a4d155d83625: Pulling fs layer
dec3bf9f6ebe: Pulling fs layer
ebdf28fa23fe: Pulling fs layer
2014abaf2eb7: Pulling fs layer
27e245cfd664: Pulling fs layer
23228c2200ea: Waiting
a2f980d0b98b: Waiting
410070a2f222: Waiting
5f6c0c42c902: Waiting
ebfcf91f683f: Waiting
d3816a848673: Waiting
aba3e293a4a1: Waiting
54f128346b20: Waiting
266bc6609d9e: Waiting
76cf7939a21f: Waiting
018e8442920c: Waiting
5c3eb8d8a9f0: Waiting
96e1068cace5: Waiting
a4d155d83625: Waiting
74bdcce97d20: Waiting
dec3bf9f6ebe: Waiting
ebdf28fa23fe: Waiting
3d928beeeddb: Waiting
ad721eb63d8e: Waiting
6423a1c6a219: Waiting
5b5461462268: Waiting
d0115271718d: Waiting
9fd788776761: Waiting
ee0541408fb9: Waiting
3710803c65d7: Waiting
ce2c52193d43: Waiting
4f4fb700ef54: Waiting
2014abaf2eb7: Waiting
ddae77db6783: Waiting
dbf7af4bbc5e: Waiting
fdb5e27abf0f: Waiting
93a3171e4fee: Waiting
f85e33539fc1: Waiting
1528501eaf16: Waiting
2b555f57ad96: Pulling fs layer
27e245cfd664: Waiting
2b555f57ad96: Waiting
5f7df1a633be: Waiting
91c5054ad467: Waiting
60715424f1f3: Waiting
7c855ca71d74: Waiting
5d5ae59f12bf: Verifying Checksum
5d5ae59f12bf: Download complete
5d5ae59f12bf: Pull complete
2a1bdaff57b1: Download complete
2a1bdaff57b1: Pull complete
ddae77db6783: Verifying Checksum
ddae77db6783: Download complete
4f0da68efc03: Verifying Checksum
4f0da68efc03: Download complete
93a3171e4fee: Verifying Checksum
93a3171e4fee: Download complete
dbf7af4bbc5e: Verifying Checksum
dbf7af4bbc5e: Download complete
5f7df1a633be: Verifying Checksum
5f7df1a633be: Download complete
91c5054ad467: Verifying Checksum
91c5054ad467: Download complete
f85e33539fc1: Verifying Checksum
f85e33539fc1: Download complete
4f0da68efc03: Pull complete
60715424f1f3: Download complete
3d928beeeddb: Verifying Checksum
3d928beeeddb: Download complete
ad721eb63d8e: Verifying Checksum
ad721eb63d8e: Download complete
ddae77db6783: Pull complete
6423a1c6a219: Verifying Checksum
6423a1c6a219: Download complete
5b5461462268: Download complete
d0115271718d: Verifying Checksum
d0115271718d: Download complete
fdb5e27abf0f: Verifying Checksum
fdb5e27abf0f: Download complete
ee0541408fb9: Download complete
9fd788776761: Download complete
3710803c65d7: Verifying Checksum
3710803c65d7: Download complete
ce2c52193d43: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
a2f980d0b98b: Download complete
410070a2f222: Download complete
d3816a848673: Verifying Checksum
d3816a848673: Download complete
7c855ca71d74: Verifying Checksum
7c855ca71d74: Download complete
1528501eaf16: Verifying Checksum
1528501eaf16: Download complete
23228c2200ea: Verifying Checksum
23228c2200ea: Download complete
54f128346b20: Verifying Checksum
54f128346b20: Download complete
76cf7939a21f: Verifying Checksum
76cf7939a21f: Download complete
ebfcf91f683f: Verifying Checksum
ebfcf91f683f: Download complete
aba3e293a4a1: Verifying Checksum
aba3e293a4a1: Download complete
5f6c0c42c902: Verifying Checksum
5f6c0c42c902: Download complete
266bc6609d9e: Download complete
5c3eb8d8a9f0: Verifying Checksum
5c3eb8d8a9f0: Download complete
74bdcce97d20: Verifying Checksum
74bdcce97d20: Download complete
a4d155d83625: Download complete
dec3bf9f6ebe: Verifying Checksum
dec3bf9f6ebe: Download complete
018e8442920c: Verifying Checksum
018e8442920c: Download complete
2014abaf2eb7: Download complete
27e245cfd664: Download complete
fdb5e27abf0f: Pull complete
2b555f57ad96: Verifying Checksum
2b555f57ad96: Download complete
93a3171e4fee: Pull complete
dbf7af4bbc5e: Pull complete
5f7df1a633be: Pull complete
91c5054ad467: Pull complete
f85e33539fc1: Pull complete
60715424f1f3: Pull complete
3d928beeeddb: Pull complete
96e1068cace5: Verifying Checksum
96e1068cace5: Download complete
ad721eb63d8e: Pull complete
6423a1c6a219: Pull complete
5b5461462268: Pull complete
d0115271718d: Pull complete
9fd788776761: Pull complete
ee0541408fb9: Pull complete
3710803c65d7: Pull complete
ce2c52193d43: Pull complete
4f4fb700ef54: Pull complete
a2f980d0b98b: Pull complete
410070a2f222: Pull complete
d3816a848673: Pull complete
7c855ca71d74: Pull complete
1528501eaf16: Pull complete
23228c2200ea: Pull complete
54f128346b20: Pull complete
76cf7939a21f: Pull complete
ebfcf91f683f: Pull complete
aba3e293a4a1: Pull complete
5f6c0c42c902: Pull complete
266bc6609d9e: Pull complete
ebdf28fa23fe: Verifying Checksum
ebdf28fa23fe: Download complete
018e8442920c: Pull complete
5c3eb8d8a9f0: Pull complete
96e1068cace5: Pull complete
74bdcce97d20: Pull complete
a4d155d83625: Pull complete
dec3bf9f6ebe: Pull complete
ebdf28fa23fe: Pull complete
2014abaf2eb7: Pull complete
27e245cfd664: Pull complete
2b555f57ad96: Pull complete
Digest: sha256:6be191dcce913f2b0e107f64ff30b7b523806d4a08d0aceb27842a00f0c745fb
Status: Downloaded newer image for ocaml/opam@sha256:6be191dcce913f2b0e107f64ff30b7b523806d4a08d0aceb27842a00f0c745fb
2026-05-12 12:16.36 ---> saved as "f36dab947eb006786c922aa9a02ee23ba05b3cd27b7a7812f6dc6ec39960f614"
/: (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:16.36 ---> saved as "4b71d98338eaac4776220fec8f4a48be29ca2934704fd3b94ccaab833a82b38f"
/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:16.58 ---> saved as "052bd6521b672f2a668cbe78ab77bc57d19e3bd18ee0fe75153d8f79daeed802"
/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=ubuntu os-version=25.10
# 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:16.59 ---> saved as "7ea249148b0ac161707bc277ba92e22ffb739c263725dc4266875500315fc219"
/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.11 ---> saved as "1509c87ff70a789832332e18c75e1e1eb3d3b2f68f6a046a5122679e4a171b8f"
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-12 12:17.22 ---> saved as "6a50fbf8f4649632dd515e832139865bcee8efb21c896dcec45ff42ab99727de"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-12 12:17.36 ---> saved as "7a87f0f034cfa8acfd90501288ca6888d52970f87d6aaa9e247a834beb1a3cae"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu questing-security InRelease [136 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu questing InRelease
- Get:3 http://security.ubuntu.com/ubuntu questing-security/universe amd64 Packages [313 kB]
- Get:4 http://archive.ubuntu.com/ubuntu questing-updates InRelease [136 kB]
- Get:5 http://security.ubuntu.com/ubuntu questing-security/main amd64 Packages [388 kB]
- Get:6 http://archive.ubuntu.com/ubuntu questing-backports InRelease [133 kB]
- Get:7 http://archive.ubuntu.com/ubuntu questing-updates/main amd64 Packages [527 kB]
- Get:8 http://archive.ubuntu.com/ubuntu questing-updates/universe amd64 Packages [398 kB]
- Fetched 2029 kB in 1s (1557 kB/s)
- Reading package lists...
-
2026-05-12 12:17.39 ---> saved as "dcfb172da2e9692d3567bc29ab1c753bfdf46d5208ffe436e629769da950cb9b"
/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:17.40 ---> saved as "1eca7f348d9f6feb25263897d0a7de56fb56a3258ac4cf22655d8d240a9d287b"
/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 \"\\\"ubuntu-25.10\\\"\"; 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:18.32 ---> saved as "92fae1c3668f82a99a26ef9b26139b0125c325135d561b37d8b01ce4c5521d3a"
Job succeeded
2026-05-12 12:18.38: Job succeeded