Build:
- 0
2026-02-12 17:20.45: New job: test yocaml_syndication.3.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29377/head (bdc89f6ed5148f4e6b4c3da2f817ce491f80ff92)
on centos-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/29377/head" && git reset --hard bdc89f6e
git fetch origin master
git merge --no-edit e07b8a139b56ff83d52c59578e497e681d2f0584
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-4.14@sha256:e99ccdfd4a45a89060ed18a29db4a2f67e07b17b57019cd570cc33dbacb0a29f
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 yocaml_syndication.3.0.0 3.0.0
RUN opam reinstall yocaml_syndication.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 "\"centos-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yocaml_syndication.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 yocaml_syndication.3.0.0) || true
RUN opam reinstall --with-test --verbose yocaml_syndication.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 "\"centos-10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yocaml_syndication.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-02-12 17:20.45: Using cache hint "ocaml/opam:centos-10-ocaml-4.14@sha256:e99ccdfd4a45a89060ed18a29db4a2f67e07b17b57019cd570cc33dbacb0a29f-yocaml_syndication.3.0.0-bdc89f6ed5148f4e6b4c3da2f817ce491f80ff92"
2026-02-12 17:20.45: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-4.14@sha256:e99ccdfd4a45a89060ed18a29db4a2f67e07b17b57019cd570cc33dbacb0a29f)
(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 yocaml_syndication.3.0.0 3.0.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_syndication.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 \"\\\"centos-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\" != 'yocaml_syndication.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 yocaml_syndication.3.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose yocaml_syndication.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 \"\\\"centos-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\" != 'yocaml_syndication.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-02-12 17:20.45: Waiting for resource in pool OCluster
2026-02-12 17:33.13: Waiting for worker…
2026-02-12 17:35.09: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at e07b8a139b Merge pull request #29367 from dinosaure/release-multipart_form-v0.8.0
Updating e07b8a139b..bdc89f6ed5
Fast-forward
packages/yocaml/yocaml.3.0.0/opam | 50 ++++++++++++++++++++++
packages/yocaml_cmarkit/yocaml_cmarkit.3.0.0/opam | 42 ++++++++++++++++++
packages/yocaml_eio/yocaml_eio.3.0.0/opam | 44 +++++++++++++++++++
packages/yocaml_git/yocaml_git.3.0.0/opam | 49 +++++++++++++++++++++
packages/yocaml_jingoo/yocaml_jingoo.3.0.0/opam | 41 ++++++++++++++++++
packages/yocaml_liquid/yocaml_liquid.3.0.0/opam | 41 ++++++++++++++++++
.../yocaml_markdown/yocaml_markdown.3.0.0/opam | 44 +++++++++++++++++++
.../yocaml_mustache/yocaml_mustache.3.0.0/opam | 41 ++++++++++++++++++
packages/yocaml_omd/yocaml_omd.3.0.0/opam | 42 ++++++++++++++++++
packages/yocaml_otoml/yocaml_otoml.3.0.0/opam | 41 ++++++++++++++++++
packages/yocaml_runtime/yocaml_runtime.3.0.0/opam | 45 +++++++++++++++++++
.../yocaml_syndication.3.0.0/opam | 44 +++++++++++++++++++
packages/yocaml_unix/yocaml_unix.3.0.0/opam | 42 ++++++++++++++++++
packages/yocaml_yaml/yocaml_yaml.3.0.0/opam | 41 ++++++++++++++++++
14 files changed, 607 insertions(+)
create mode 100644 packages/yocaml/yocaml.3.0.0/opam
create mode 100644 packages/yocaml_cmarkit/yocaml_cmarkit.3.0.0/opam
create mode 100644 packages/yocaml_eio/yocaml_eio.3.0.0/opam
create mode 100644 packages/yocaml_git/yocaml_git.3.0.0/opam
create mode 100644 packages/yocaml_jingoo/yocaml_jingoo.3.0.0/opam
create mode 100644 packages/yocaml_liquid/yocaml_liquid.3.0.0/opam
create mode 100644 packages/yocaml_markdown/yocaml_markdown.3.0.0/opam
create mode 100644 packages/yocaml_mustache/yocaml_mustache.3.0.0/opam
create mode 100644 packages/yocaml_omd/yocaml_omd.3.0.0/opam
create mode 100644 packages/yocaml_otoml/yocaml_otoml.3.0.0/opam
create mode 100644 packages/yocaml_runtime/yocaml_runtime.3.0.0/opam
create mode 100644 packages/yocaml_syndication/yocaml_syndication.3.0.0/opam
create mode 100644 packages/yocaml_unix/yocaml_unix.3.0.0/opam
create mode 100644 packages/yocaml_yaml/yocaml_yaml.3.0.0/opam
(from ocaml/opam:centos-10-ocaml-4.14@sha256:e99ccdfd4a45a89060ed18a29db4a2f67e07b17b57019cd570cc33dbacb0a29f)
Unable to find image 'ocaml/opam:centos-10-ocaml-4.14@sha256:e99ccdfd4a45a89060ed18a29db4a2f67e07b17b57019cd570cc33dbacb0a29f' locally
docker.io/ocaml/opam@sha256:e99ccdfd4a45a89060ed18a29db4a2f67e07b17b57019cd570cc33dbacb0a29f: Pulling from ocaml/opam
d8a283347b69: Already exists
6abb48125075: Already exists
4e0361c0d608: Already exists
d1fefa5dba61: Already exists
ef6d9e4ec5d2: Already exists
cf4bf3b100b3: Already exists
d7ccfd092e55: Already exists
2c5cbc6dd986: Already exists
77e5818d748b: Already exists
ba71904314f1: Already exists
86fa1d2bbf3b: Already exists
54b44609b328: Already exists
8fa8a8d60123: Already exists
bcb012ae8b47: Already exists
24638863003d: Already exists
d326fc984f3e: Already exists
d1befe87d203: Already exists
a0e238b4e561: Already exists
a0e238b4e561: Already exists
7850fefabb5d: Already exists
1f118fb51249: Already exists
d3d7959ff4ce: Already exists
babb6af531fd: Already exists
4f4fb700ef54: Already exists
8558cc4b8a37: Already exists
2b4ae2eb66fe: Already exists
ede4060dd81f: Already exists
059dc9592e6b: Already exists
7b78c7fff8cf: Already exists
dce926913d23: Already exists
3320d316cf33: Already exists
a9bcc8458a48: Already exists
ccbd441e0a3d: Already exists
3fdedbcf2fad: Already exists
2dee3eef2631: Already exists
e7a98c162c1c: Already exists
56e6522c4939: Already exists
80ff2ca6a00f: Already exists
7542b517ae22: Already exists
20f60b6d7f7a: Already exists
0c23676f14b8: Already exists
2ad54dfbc0fb: Already exists
ce40f846c27b: Already exists
e65372b11bdd: Already exists
c12177b5d413: Already exists
86b98fb2e69c: Already exists
Digest: sha256:e99ccdfd4a45a89060ed18a29db4a2f67e07b17b57019cd570cc33dbacb0a29f
Status: Downloaded newer image for ocaml/opam@sha256:e99ccdfd4a45a89060ed18a29db4a2f67e07b17b57019cd570cc33dbacb0a29f
2026-02-12 17:37.30 ---> using "d46b8a294367ae0ccd4e753403a1bac915dd7af271896229447d663bce13467b" 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-12 17:37.30 ---> using "584465f3cab50a3d46fbee1c85292dcf22b43bca9c8ca9bf9141bff5f38ad186" 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
[NOTE] The 'jobs' option was reset, its value was 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-12 17:37.30 ---> using "589429cc58c83c5efc8299746e866e35a7f4f6981a97a77f1d5b13a81f39399f" 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=centos os-version=10
# 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 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, 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.2
2026-02-12 17:37.30 ---> using "ce7360418f15ad5de99a2dce43efa3911c3377760ac067de175df9cb811bbf4a" 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-12 17:37.30 ---> using "5c3deca89126ba2f34fc8b38ffc0ca7610e992990a3cd61eb160a6b664fa3dd8" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-12 17:37.31 ---> using "eb264969aa955caa0832b59e286aa94b80de227b11d4864adc3e67932c605e14" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-12 17:37.31 ---> using "14e8c7e1e132e78b1803113d5752279ef166da1368037bfeb6aca4f0b08b34ea" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS 89 kB/s | 14 kB 00:00
- CentOS Stream 10 - BaseOS 11 MB/s | 6.9 MB 00:00
- CentOS Stream 10 - AppStream 116 kB/s | 14 kB 00:00
- CentOS Stream 10 - AppStream 7.3 MB/s | 3.5 MB 00:00
- CentOS Stream 10 - CRB 112 kB/s | 14 kB 00:00
- CentOS Stream 10 - CRB 2.1 MB/s | 801 kB 00:00
- CentOS Stream 10 - Extras packages 131 kB/s | 16 kB 00:00
- Metadata cache created.
2026-02-12 17:37.31 ---> using "df771fe21b664b1e45740c58a1fa1536069ae83fe1bf5ab28cb462a865c5e84a" from cache
/home/opam: (run (shell "opam pin add -k version -yn yocaml_syndication.3.0.0 3.0.0"))
yocaml_syndication is now pinned to version 3.0.0
2026-02-12 17:37.31 ---> using "023fb13715aa379f53454d5e966cf2c8d077dae95105bd35cf1ccf98d85bbc8f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_syndication.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 \"\\\"centos-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\" != 'yocaml_syndication.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"))
yocaml_syndication.3.0.0 is not installed. Install it? [Y/n] y
* Incompatible packages:
- (invariant) -> ocaml-base-compiler = 4.14.2
- yocaml_syndication >= 3.0.0 -> ocaml >= 5.1.1 -> ocaml-variants (< 5.1.3~ | >= 5.2.0~)
You can temporarily relax the switch invariant with `--update-invariant'
* Missing dependency:
- yocaml_syndication >= 3.0.0 -> ocaml >= 5.1.1 -> ocaml-variants < 5.1.2~ -> ocaml-beta
unmet availability conditions: 'enable-ocaml-beta-repository'
* Missing dependency:
- yocaml_syndication >= 3.0.0 -> ocaml >= 5.1.1 -> ocaml-variants >= 5.2.0~ -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall yocaml_syndication.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 "\"centos-10\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'yocaml_syndication.3.0.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 20
2026-02-12 17:37.44: Job failed: Failed: Build failed
2026-02-12 17:37.44: Log analysis:
2026-02-12 17:37.44: >>>
No solution found, exiting
(score = 100)
2026-02-12 17:37.44: [SKIP] Package not available