Build:
- 1
- 0
2026-02-18 17:40.37: New job: test ocaml-solo5-cross-aarch64.1.2.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29425/head (56393c852ecc97bd2af91ac2eb29f999c7a71fca)
on centos-9-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/29425/head" && git reset --hard 56393c85
git fetch origin master
git merge --no-edit 0431a98cc2177cbcc88e0937fe5b1b48e457e990
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-4.14@sha256:54e18af23c8e5ac97bbd8593a702fe2caa69a4226e2cab736c21f26bc8cf39df
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 ocaml-solo5-cross-aarch64.1.2.1 1.2.1
RUN opam reinstall ocaml-solo5-cross-aarch64.1.2.1; \
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-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-solo5-cross-aarch64.1.2.1' && 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 ocaml-solo5-cross-aarch64.1.2.1) || true
RUN opam reinstall --with-test --verbose ocaml-solo5-cross-aarch64.1.2.1; \
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-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-solo5-cross-aarch64.1.2.1' && 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-18 17:40.37: Using cache hint "ocaml/opam:centos-9-ocaml-4.14@sha256:54e18af23c8e5ac97bbd8593a702fe2caa69a4226e2cab736c21f26bc8cf39df-ocaml-solo5-cross-aarch64.1.2.1-56393c852ecc97bd2af91ac2eb29f999c7a71fca"
2026-02-18 17:40.37: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:54e18af23c8e5ac97bbd8593a702fe2caa69a4226e2cab736c21f26bc8cf39df)
(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 ocaml-solo5-cross-aarch64.1.2.1 1.2.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-solo5-cross-aarch64.1.2.1;\
\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-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-solo5-cross-aarch64.1.2.1' && 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 ocaml-solo5-cross-aarch64.1.2.1) || true"))
(run (shell "opam reinstall --with-test --verbose ocaml-solo5-cross-aarch64.1.2.1;\
\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-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-solo5-cross-aarch64.1.2.1' && 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-18 17:40.37: Waiting for resource in pool OCluster
2026-02-18 17:40.38: Waiting for worker…
2026-02-18 17:40.39: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 0431a98cc2 Merge pull request #29419 from dinosaure/release-hxd-v0.4.0
Updating 0431a98cc2..56393c852e
Fast-forward
.../ocaml-solo5-cross-aarch64.1.2.1/opam | 60 ++++++++++++++++++++++
packages/ocaml-solo5/ocaml-solo5.1.2.1/opam | 58 +++++++++++++++++++++
2 files changed, 118 insertions(+)
create mode 100644 packages/ocaml-solo5-cross-aarch64/ocaml-solo5-cross-aarch64.1.2.1/opam
create mode 100644 packages/ocaml-solo5/ocaml-solo5.1.2.1/opam
(from ocaml/opam:centos-9-ocaml-4.14@sha256:54e18af23c8e5ac97bbd8593a702fe2caa69a4226e2cab736c21f26bc8cf39df)
Unable to find image 'ocaml/opam:centos-9-ocaml-4.14@sha256:54e18af23c8e5ac97bbd8593a702fe2caa69a4226e2cab736c21f26bc8cf39df' locally
docker.io/ocaml/opam@sha256:54e18af23c8e5ac97bbd8593a702fe2caa69a4226e2cab736c21f26bc8cf39df: Pulling from ocaml/opam
529815d9ebd4: Pulling fs layer
f9949702b1d3: Pulling fs layer
0ee56a4957f0: Pulling fs layer
60d82b34d053: Pulling fs layer
529815d9ebd4: Waiting
5e58fd328d59: Pulling fs layer
f9949702b1d3: Waiting
0ee56a4957f0: Waiting
60d82b34d053: Waiting
5e58fd328d59: Waiting
0ee56a4957f0: Verifying Checksum
0ee56a4957f0: Download complete
60d82b34d053: Download complete
5e58fd328d59: Verifying Checksum
5e58fd328d59: Download complete
f9949702b1d3: Verifying Checksum
f9949702b1d3: Download complete
529815d9ebd4: Verifying Checksum
529815d9ebd4: Download complete
529815d9ebd4: Pull complete
f9949702b1d3: Pull complete
0ee56a4957f0: Pull complete
60d82b34d053: Pull complete
5e58fd328d59: Pull complete
Digest: sha256:54e18af23c8e5ac97bbd8593a702fe2caa69a4226e2cab736c21f26bc8cf39df
Status: Downloaded newer image for ocaml/opam@sha256:54e18af23c8e5ac97bbd8593a702fe2caa69a4226e2cab736c21f26bc8cf39df
2026-02-18 17:42.01 ---> using "8f527ca0c3b18b24aa7aaad63c35bb0f22d9ea3fa49c43045800afb98344d781" 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-18 17:42.01 ---> using "974c6b9ad30aa85f5cc6969e02fffda7b18d7757b2157e6e7ee818c9d1712b0b" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-18 17:42.01 ---> using "a1374e8328a13721d5ab85fdfc911c602ab7493317d5383ee1b54aa773e330f6" 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=9
# 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-18 17:42.01 ---> using "a31ca7e04c72c1afd8bc6c529fd332441e2d9153a36185295f9bb82161c4d931" 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-18 17:42.01 ---> using "451c3c86c02ddb27d2eb27630b1bd12db6ff493742e1202b31ed992c1e2b08f8" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-18 17:42.07 ---> saved as "fa61952e58ee7cb6fa766bc5fe52dd9497ba07eb5db76d73c47ff663305b6091"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-18 17:42.27 ---> saved as "c05c577fcfe3ffcf7bbbfa04e91cdb176602bd43c5b10ae69fed6d54b06963e1"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 103 kB/s | 14 kB 00:00
- CentOS Stream 9 - BaseOS 13 MB/s | 8.9 MB 00:00
- CentOS Stream 9 - AppStream 108 kB/s | 14 kB 00:00
- CentOS Stream 9 - AppStream 13 MB/s | 27 MB 00:02
- CentOS Stream 9 - CRB 70 kB/s | 14 kB 00:00
- CentOS Stream 9 - CRB 10 MB/s | 7.8 MB 00:00
- CentOS Stream 9 - Extras packages 124 kB/s | 16 kB 00:00
- Metadata cache created.
2026-02-18 17:42.44 ---> saved as "9fdfee736c10ad08bcdffd88891a0c9bd3b0b2816da2187c4f42783da7e39226"
/home/opam: (run (shell "opam pin add -k version -yn ocaml-solo5-cross-aarch64.1.2.1 1.2.1"))
ocaml-solo5-cross-aarch64 is now pinned to version 1.2.1
2026-02-18 17:42.45 ---> saved as "115cc38328282e7fa70fa21fbf7b52374768fd93c86778e7e94d57865b99232c"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-solo5-cross-aarch64.1.2.1;\
\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-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-solo5-cross-aarch64.1.2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-solo5-cross-aarch64.1.2.1 is not installed. Install it? [Y/n] y
* Missing dependency:
- ocaml-solo5-cross-aarch64 >= 1.2.1 -> solo5-cross-aarch64
unmet availability conditions, e.g. 'arch != "arm64" & os = "linux" & os-family = "debian"'
No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall ocaml-solo5-cross-aarch64.1.2.1;
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-9\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'ocaml-solo5-cross-aarch64.1.2.1' && 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-18 17:42.56: Job failed: Failed: Build failed
2026-02-18 17:42.56: Log analysis:
2026-02-18 17:42.56: >>>
No solution found, exiting
(score = 100)
2026-02-18 17:42.56: [SKIP] Package not available