Build:
- 0
2026-02-09 13:39.43: New job: test ocp-index.1.4.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29358/head (14f521c27c932668d9140e0a3f7b1d69300fc7e9)
on archlinux-ocaml-5.4/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/29358/head" && git reset --hard 14f521c2
git fetch origin master
git merge --no-edit b1e43fa87b0c2363634d0eb4ae0aa36b9fcc622e
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.4@sha256:80b917b0d0f9bea38bf0b3aac775d90e736551e842807a004d9fd1665f1f9200
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 ocp-index.1.4.1 1.4.1
RUN opam reinstall ocp-index.1.4.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocp-index.1.4.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 ocp-index.1.4.1) || true
RUN opam reinstall --with-test --verbose ocp-index.1.4.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocp-index.1.4.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-09 13:39.43: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:80b917b0d0f9bea38bf0b3aac775d90e736551e842807a004d9fd1665f1f9200-ocp-index.1.4.1-14f521c27c932668d9140e0a3f7b1d69300fc7e9"
2026-02-09 13:39.43: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:80b917b0d0f9bea38bf0b3aac775d90e736551e842807a004d9fd1665f1f9200)
(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 ocp-index.1.4.1 1.4.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocp-index.1.4.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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocp-index.1.4.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 ocp-index.1.4.1) || true"))
(run (shell "opam reinstall --with-test --verbose ocp-index.1.4.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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocp-index.1.4.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-09 13:39.43: Waiting for resource in pool OCluster
2026-02-09 13:39.44: Waiting for worker…
2026-02-09 13:39.46: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at b1e43fa87b Merge pull request #29356 from redianthus/symex
Updating b1e43fa87b..14f521c27c
Fast-forward
packages/ocp-browser/ocp-browser.1.4.1/opam | 36 ++++++++++++++++++++
packages/ocp-index/ocp-index.1.4.1/opam | 51 +++++++++++++++++++++++++++++
2 files changed, 87 insertions(+)
create mode 100644 packages/ocp-browser/ocp-browser.1.4.1/opam
create mode 100644 packages/ocp-index/ocp-index.1.4.1/opam
(from ocaml/opam:archlinux-ocaml-5.4@sha256:80b917b0d0f9bea38bf0b3aac775d90e736551e842807a004d9fd1665f1f9200)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:80b917b0d0f9bea38bf0b3aac775d90e736551e842807a004d9fd1665f1f9200' locally
docker.io/ocaml/opam@sha256:80b917b0d0f9bea38bf0b3aac775d90e736551e842807a004d9fd1665f1f9200: Pulling from ocaml/opam
d45715cfc670: Already exists
10f753da1c2e: Pulling fs layer
09e49f3a8cc5: Pulling fs layer
0ccf348cfa80: Pulling fs layer
2b84575e1f9b: Pulling fs layer
09e49f3a8cc5: Waiting
10f753da1c2e: Waiting
a00a666bf469: Pulling fs layer
0ccf348cfa80: Waiting
10f753da1c2e: Verifying Checksum
10f753da1c2e: Download complete
10f753da1c2e: Pull complete
0ccf348cfa80: Verifying Checksum
0ccf348cfa80: Download complete
2b84575e1f9b: Verifying Checksum
2b84575e1f9b: Download complete
a00a666bf469: Download complete
09e49f3a8cc5: Verifying Checksum
09e49f3a8cc5: Download complete
09e49f3a8cc5: Pull complete
0ccf348cfa80: Pull complete
2b84575e1f9b: Pull complete
a00a666bf469: Pull complete
Digest: sha256:80b917b0d0f9bea38bf0b3aac775d90e736551e842807a004d9fd1665f1f9200
Status: Downloaded newer image for ocaml/opam@sha256:80b917b0d0f9bea38bf0b3aac775d90e736551e842807a004d9fd1665f1f9200
2026-02-09 13:43.52 ---> saved as "b9bf9523154c3dca53ff5dbb1a074bb319e92ad8e0fd427e7ecedbdb7949b579"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-09 13:43.52 ---> saved as "25f8589d616c7093e353de3b97c14a0333bc0665d7f3f5aeeb02d0826eb06277"
/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.
Continue? [Y/n] y
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.
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-09 13:44.22 ---> saved as "d49e739d82385a17c54001b3777d7d7db6823a323b8c89ede29cf23730d068e5"
/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=arch os-version=20260201.0.486523
# 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 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-02-09 13:44.23 ---> saved as "71e6cad460a0f7ac42a3347436c368fe1f94bb054fa7068f65a14213176bed7d"
/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-09 13:44.29 ---> saved as "175e6df681f00a29f7ab90803eb307806871ee6c21fe81be79a48c8be09d57c1"
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-09 13:44.37 ---> saved as "a91159672d1f4ad4672d65285ff2b4f85fb410b5d1c7a008ab515ed517e2c437"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-09 13:44.59 ---> saved as "8fb0a5941b5dfdfb11b3d17236ac4c99737fb604e283c168fc1c5fbd1e72b660"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-02-09 13:45.17 ---> saved as "b6594ad2911398f08fb63d90e4ecaf0eeadcf03f7354e90a83d376bd83d2214f"
/home/opam: (run (shell "opam pin add -k version -yn ocp-index.1.4.1 1.4.1"))
ocp-index is now pinned to version 1.4.1
2026-02-09 13:45.18 ---> saved as "05af5097a25b40b7d63ea62e22e0ac877f61d596eb000fe7c9a0a4a737b7791d"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocp-index.1.4.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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocp-index.1.4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocp-index.1.4.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
∗ cmdliner 2.1.0 [required by ocp-index]
∗ cppo 1.8.0 [required by ocp-index]
∗ dune 3.21.0 [required by ocp-index]
∗ ocamlfind 1.9.8 [required by ocp-indent]
∗ ocp-indent 1.9.0 [required by ocp-index]
∗ ocp-index 1.4.1 (pinned)
∗ re 1.14.0 [required by ocp-index]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved cmdliner.2.1.0 (cached)
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved dune.3.21.0 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ocp-indent.1.9.0 (cached)
⬇ retrieved ocp-index.1.4.1 (cached)
⬇ retrieved re.1.14.0 (cached)
∗ installed cmdliner.2.1.0
∗ installed ocamlfind.1.9.8
∗ installed dune.3.21.0
∗ installed re.1.14.0
∗ installed cppo.1.8.0
∗ installed ocp-indent.1.9.0
∗ installed ocp-index.1.4.1
Done.
<><> ocp-index.1.4.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Either install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/5.4/share/emacs/site-lisp")
(require 'ocp-index)
* for Vim, add the following line to ~/.vimrc:
set rtp+=/home/opam/.opam/5.4/share/ocp-index/vim
<><> ocp-indent.1.9.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/5.4/share/emacs/site-lisp")
(require 'ocp-indent)
* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/5.4/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2026-02-09 13:45.57 ---> saved as "cbc0ad53e4d6b33107aebe7f492461ac18ae2e0bed77293efa4cb387d269b592"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocp-index.1.4.1) || true"))
The following actions will be performed:
=== recompile 1 package
↻ ocp-index 1.4.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⊘ removed ocp-index.1.4.1
∗ installed ocp-index.1.4.1
Done.
<><> ocp-index.1.4.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Either install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/5.4/share/emacs/site-lisp")
(require 'ocp-index)
* for Vim, add the following line to ~/.vimrc:
set rtp+=/home/opam/.opam/5.4/share/ocp-index/vim
# To update the current shell environment, run: eval $(opam env)
2026-02-09 13:46.03 ---> saved as "74d142825adfb8c71d08786b728f7973615f477cbc33e31c90f10fdc9f2e9c39"
/home/opam: (run (shell "opam reinstall --with-test --verbose ocp-index.1.4.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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocp-index.1.4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
↻ ocp-index 1.4.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ocp-index: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocp-index" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ocp-index.1.4.1)
λ compiled ocp-index.1.4.1
⊘ removed ocp-index.1.4.1
∗ installed ocp-index.1.4.1
Done.
<><> ocp-index.1.4.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Either install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/5.4/share/emacs/site-lisp")
(require 'ocp-index)
* for Vim, add the following line to ~/.vimrc:
set rtp+=/home/opam/.opam/5.4/share/ocp-index/vim
# To update the current shell environment, run: eval $(opam env)
2026-02-09 13:46.09 ---> saved as "c3630057e3dd266b65253731cd987ccb67979b30125132be508bee5663e9ecf1"
Job succeeded
2026-02-09 13:46.13: Job succeeded