- github
- ocaml
- opam-repository
- 89a6ae
- distributions,centos-9-ocaml-4.14,xdg.3.23.0~alpha2
(not at the head of any monitored branch or PR)
2026-04-30 01:38.43: New job: build xdg.3.23.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
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/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit 24c3efe52d0b736596aedf7facc049389fbda2b6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-4.14@sha256:205ffe2ac8dc338ab4dcba29fc9ce214126d05d0f38523f731330c52f736c5da
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 xdg.3.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall xdg.3.23.0~alpha2; \
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" != 'xdg.3.23.0~alpha2' && 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-04-30 01:38.43: Using cache hint "ocaml/opam:centos-9-ocaml-4.14@sha256:205ffe2ac8dc338ab4dcba29fc9ce214126d05d0f38523f731330c52f736c5da-xdg.3.23.0~alpha2-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 01:38.43: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:205ffe2ac8dc338ab4dcba29fc9ce214126d05d0f38523f731330c52f736c5da)
(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 xdg.3.23.0~alpha2 3.23.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall xdg.3.23.0~alpha2;\
\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\" != 'xdg.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-30 01:38.43: Waiting for resource in pool OCluster
2026-04-30 01:49.13: Waiting for worker…
2026-04-30 01:50.44: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 79% (14959/18887)
Updating files: 80% (15110/18887)
Updating files: 81% (15299/18887)
Updating files: 82% (15488/18887)
Updating files: 83% (15677/18887)
Updating files: 84% (15866/18887)
Updating files: 85% (16054/18887)
Updating files: 86% (16243/18887)
Updating files: 87% (16432/18887)
Updating files: 88% (16621/18887)
Updating files: 89% (16810/18887)
Updating files: 90% (16999/18887)
Updating files: 91% (17188/18887)
Updating files: 92% (17377/18887)
Updating files: 93% (17565/18887)
Updating files: 94% (17754/18887)
Updating files: 95% (17943/18887)
Updating files: 96% (18132/18887)
Updating files: 97% (18321/18887)
Updating files: 98% (18510/18887)
Updating files: 99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at 24c3efe52d Merge pull request #29817 from tmcgilchrist/release-hdr_histogram-0.0.5
Updating 24c3efe52d..89a6ae8884
Fast-forward
.../chrome-trace/chrome-trace.3.23.0~alpha2/opam | 39 +++++++++++
.../dune-action-plugin.3.23.0~alpha2/opam | 52 ++++++++++++++
.../dune-action-trace.3.23.0~alpha2/opam | 39 +++++++++++
.../dune-build-info.3.23.0~alpha2/opam | 45 ++++++++++++
.../dune-configurator.3.23.0~alpha2/opam | 49 +++++++++++++
packages/dune-glob/dune-glob.3.23.0~alpha2/opam | 42 ++++++++++++
.../dune-private-libs.3.23.0~alpha2/opam | 50 ++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam | 41 +++++++++++
packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam | 44 ++++++++++++
packages/dune-site/dune-site.3.23.0~alpha2/opam | 37 ++++++++++
packages/dune/dune.3.23.0~alpha2/opam | 80 ++++++++++++++++++++++
packages/dyn/dyn.3.23.0~alpha2/opam | 40 +++++++++++
packages/fs-io/fs-io.3.23.0~alpha2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam | 43 ++++++++++++
packages/ordering/ordering.3.23.0~alpha2/opam | 38 ++++++++++
packages/stdune/stdune.3.23.0~alpha2/opam | 46 +++++++++++++
.../top-closure/top-closure.3.23.0~alpha2/opam | 38 ++++++++++
packages/xdg/xdg.3.23.0~alpha2/opam | 39 +++++++++++
18 files changed, 801 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam
(from ocaml/opam:centos-9-ocaml-4.14@sha256:205ffe2ac8dc338ab4dcba29fc9ce214126d05d0f38523f731330c52f736c5da)
Unable to find image 'ocaml/opam:centos-9-ocaml-4.14@sha256:205ffe2ac8dc338ab4dcba29fc9ce214126d05d0f38523f731330c52f736c5da' locally
docker.io/ocaml/opam@sha256:205ffe2ac8dc338ab4dcba29fc9ce214126d05d0f38523f731330c52f736c5da: Pulling from ocaml/opam
f0665df58280: Already exists
2aca4929df78: Already exists
7d3446c2ef55: Already exists
a4c53a631187: Already exists
6d573f0a0d03: Already exists
63bada79e3d9: Already exists
0f65d106a651: Already exists
c2ba5c3fd774: Already exists
458ba6e6ca97: Already exists
9e6fa14668c9: Already exists
9354b7bb9263: Already exists
ffc2abc3ad36: Already exists
168b7634bd7c: Already exists
e60531533752: Already exists
3da63acfa01e: Already exists
2f8ca62cc4c0: Already exists
46742febe732: Already exists
93276388132a: Already exists
93276388132a: Already exists
9141d1c09406: Already exists
4e80ee505de7: Already exists
675df2ec42bd: Already exists
8dacbd3fecbb: Already exists
4f4fb700ef54: Already exists
73d7892d85a2: Already exists
a8489f518cfd: Already exists
6327fa73b524: Already exists
8ad473193bb9: Already exists
a611e5bc2990: Already exists
deab881dfe5f: Already exists
40149be978da: Already exists
358524e2c515: Already exists
29a974daa94a: Already exists
eae2e0c7c4bc: Already exists
9bc40d600288: Already exists
6c9e2ad3feaf: Already exists
c7bd916dea06: Already exists
ed23f4a3607d: Already exists
38d131c77982: Already exists
292222cd7ee5: Already exists
45acbc3f6dfd: Already exists
fb5e5a112b58: Already exists
6b85764750fe: Pulling fs layer
c3153601a36c: Pulling fs layer
b3d4bc16ae09: Pulling fs layer
4f204bc038b2: Pulling fs layer
b3d4bc16ae09: Waiting
c3153601a36c: Verifying Checksum
c3153601a36c: Download complete
b3d4bc16ae09: Verifying Checksum
b3d4bc16ae09: Download complete
4f204bc038b2: Verifying Checksum
4f204bc038b2: Download complete
6b85764750fe: Verifying Checksum
6b85764750fe: Download complete
6b85764750fe: Pull complete
c3153601a36c: Pull complete
b3d4bc16ae09: Pull complete
4f204bc038b2: Pull complete
Digest: sha256:205ffe2ac8dc338ab4dcba29fc9ce214126d05d0f38523f731330c52f736c5da
Status: Downloaded newer image for ocaml/opam@sha256:205ffe2ac8dc338ab4dcba29fc9ce214126d05d0f38523f731330c52f736c5da
2026-04-30 01:50.52 ---> using "b00d79ffec896707f573e61cab380185cf26d4626a0c1f703de7472daa0065a5" 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-04-30 01:50.52 ---> using "1d24fa75759aef78164da171a557d73ed276c8aa610d7204249c63a1f28b7409" 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-04-30 01:50.52 ---> using "cc06b9b46c334d3ef6e060841fc16f10da7113936ece7736ae6c9ef46c03bd14" 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=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.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-04-30 01:50.52 ---> using "9cd074f967240632ad5cccee71a3b9add1fae1346fb85b67b1e55d82b6bb94a1" 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-04-30 01:50.52 ---> using "b53a9d4945582a19d32ab428696eecd0611967f5932bdae05d4649e4d8d47858" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 01:51.00 ---> saved as "90c50f019c4add6d4def4bf59fe853d965e885f3b25bae0530d2c142563671c8"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 01:51.22 ---> saved as "eb9b7a6cdb466a1649c73b19829889fdff94b954f6a472dc552a9fe12826c309"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 95 kB/s | 14 kB 00:00
- CentOS Stream 9 - BaseOS 455 kB/s | 8.9 MB 00:20
- CentOS Stream 9 - AppStream 51 kB/s | 14 kB 00:00
- CentOS Stream 9 - AppStream 2.5 MB/s | 27 MB 00:10
- CentOS Stream 9 - CRB 98 kB/s | 14 kB 00:00
- CentOS Stream 9 - CRB 9.5 MB/s | 8.0 MB 00:00
- CentOS Stream 9 - Extras packages 118 kB/s | 16 kB 00:00
- Metadata cache created.
2026-04-30 01:52.08 ---> saved as "c6d4177a40e677952301e952d0789e48d0796b81b9c9baea0f833feecaa2f824"
/home/opam: (run (shell "opam pin add -k version -yn xdg.3.23.0~alpha2 3.23.0~alpha2"))
xdg is now pinned to version 3.23.0~alpha2
2026-04-30 01:52.09 ---> saved as "f9799ba7f52a5dedc985607420085c563759ca09266f7d32450a369697758420"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall xdg.3.23.0~alpha2;\
\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\" != 'xdg.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
xdg.3.23.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install dune 3.23.0~alpha2 [required by xdg]
- install xdg 3.23.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2, xdg.3.23.0~alpha2 (cached)
-> installed dune.3.23.0~alpha2
-> installed xdg.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 01:52.52 ---> saved as "ea3da06ec78bc6dd964cd7f938aa0c0eb76e219670ccba289d7d98d54eb71534"
Job succeeded
2026-04-30 01:53.11: Job succeeded