Build:
- 0
2026-03-15 08:59.25: New job: test parseff.0.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29526/head (00fc6039ea5006ac1d6a9cd671e025428e45c333)
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/29526/head" && git reset --hard 00fc6039
git fetch origin master
git merge --no-edit 8d34e0cf3c0ccacb6c8a26c24d0e5eb0b17fbf9d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
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 parseff.0.1.0 0.1.0
RUN opam reinstall parseff.0.1.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'parseff.0.1.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 parseff.0.1.0) || true
RUN opam reinstall --with-test --verbose parseff.0.1.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'parseff.0.1.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-03-15 08:59.25: Using cache hint "ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151-parseff.0.1.0-00fc6039ea5006ac1d6a9cd671e025428e45c333"
2026-03-15 08:59.25: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151)
(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 parseff.0.1.0 0.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall parseff.0.1.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 \"\\\"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\" != 'parseff.0.1.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 parseff.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose parseff.0.1.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 \"\\\"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\" != 'parseff.0.1.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-03-15 08:59.25: Waiting for resource in pool OCluster
2026-03-15 08:59.25: Waiting for worker…
2026-03-15 08:59.26: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at 8d34e0cf3c Merge pull request #29540 from davesnx/release-melange-fest-0.2.0
Updating 8d34e0cf3c..00fc6039ea
Fast-forward
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.
warning: There are too many unreachable loose objects; run 'git prune' to remove them.
packages/parseff/parseff.0.1.0/opam | 49 +++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
create mode 100644 packages/parseff/parseff.0.1.0/opam
(from ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151)
Unable to find image 'ocaml/opam:archlinux-ocaml-5.4@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151' locally
docker.io/ocaml/opam@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151: Pulling from ocaml/opam
30309458937a: Already exists
d6ec592b6ce7: Already exists
eb0cc4fae01f: Already exists
da907aea55a3: Already exists
41225181d62b: Already exists
99bbb95b040c: Already exists
ae03e2432f2e: Already exists
960a3688e50d: Already exists
12e572ae8d9e: Already exists
5d9b53919351: Already exists
613718b9dc5c: Already exists
20c50d6517d7: Already exists
318e41a81dac: Already exists
c8d0fbcceca0: Already exists
f18608e88c8a: Already exists
4f4fb700ef54: Already exists
53a25100385e: Already exists
cf8654ebee96: Already exists
57cdf8563f57: Already exists
ce24bbfe16f6: Already exists
5c9351c3921c: Already exists
4d8c9f844539: Already exists
765a1d524e16: Already exists
e9b60c2e279a: Already exists
35a412369c63: Already exists
26b4e7a0d54a: Already exists
13545a674236: Already exists
93a04f32ed48: Already exists
59e69b721f9d: Already exists
563d03393b08: Already exists
22f1353d2736: Already exists
bb9e869c408b: Already exists
edabeb8a4c11: Already exists
7efbe0d19f89: Already exists
da342da15a63: Already exists
f71f539d293c: Already exists
8d0e94db40bb: Already exists
a5e5b4f4a251: Already exists
9852f471784f: Already exists
Digest: sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
Status: Downloaded newer image for ocaml/opam@sha256:016d39bea6aa61ab2a80784d38d91d47199e3e3dc0fe1e007733bad430587151
2026-03-15 09:00.23 ---> saved as "983fb8fa27cec9a4a5d43f665c1205c6ea6e68ba17ec6c9143d76637febb22cc"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-15 09:00.24 ---> saved as "25752ddc5975f6e8996b264e3a3ca1fa7f145be5805ebd9514e16cb6aedde127"
/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-03-15 09:00.51 ---> saved as "d478ddf269bcf3535bded5e1daaace87d3f4b9d7de5f55a5b08e209b0fdca5d6"
/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=20260301.0.494762
# 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-03-15 09:00.52 ---> saved as "80b77dd44a92f7fb0130b934f34e0452f08989f0d0aa28c9d38f7ed342b7e091"
/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-03-15 09:01.02 ---> saved as "1a9b8ae6fcd1519c9165b7da2355952b637f11a47032131c1c34a8be2f2d6ad5"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-15 09:01.10 ---> saved as "b73cbbf749b921c78cdf49f03a3cd52142130a8aaacc7318f8be3558be3e9597"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-15 09:01.30 ---> saved as "08fd05463b6bd71906169d1a0ce1ef54306b9e030d3a5a5453bed907052833c9"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-03-15 09:01.31 ---> saved as "a81d12f047d8a6bcb903a7ed6e9b4b9cd0bdb44242a427e903bddcc241f117f1"
/home/opam: (run (shell "opam pin add -k version -yn parseff.0.1.0 0.1.0"))
parseff is now pinned to version 0.1.0
2026-03-15 09:01.32 ---> saved as "80b03938e7064d538d579c5bbec953f0ef83531a92c4e3b0a98fea6f89ba7574"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall parseff.0.1.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 \"\\\"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\" != 'parseff.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
parseff.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
∗ dune 3.21.1 [required by parseff]
∗ parseff 0.1.0 (pinned)
∗ re 1.14.0 [required by parseff]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved dune.3.21.1 (cached)
⬇ retrieved parseff.0.1.0 (https://github.com/davesnx/parseff/releases/download/0.1.0/parseff-0.1.0.tbz)
⬇ retrieved re.1.14.0 (cached)
∗ installed dune.3.21.1
∗ installed re.1.14.0
[ERROR] The compilation of parseff.0.1.0 failed at "dune build -p parseff -j 71 @install".
#=== ERROR while compiling parseff.0.1.0 ======================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | pinned(https://github.com/davesnx/parseff/releases/download/0.1.0/parseff-0.1.0.tbz)
# path ~/.opam/5.4/.opam-switch/build/parseff.0.1.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p parseff -j 71 @install
# exit-code 1
# env-file ~/.opam/log/parseff-7-921fa7.env
# output-file ~/.opam/log/parseff-7-921fa7.out
### output ###
# File "dune", lines 16-24, characters 0-355:
# 16 | (rule
# 17 | (alias generate-markdown)
# 18 | (mode
# 19 | (promote (until-clean)))
# 20 | (deps %{workspace_root}/_doc/_markdown/parseff/README.md)
# 21 | (targets README.md)
# 22 | (action
# 23 | (system
# 24 | "printf '<!-- Please do not edit this file directly. Update README.mld instead. -->\\n\\n' > %{targets} && tail -n +2 %{workspace_root}/_doc/_markdown/parseff/README.md >> %{targets}")))
# Error: No rule found for _doc/_markdown/parseff/README.md
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions failed
│ λ build parseff 0.1.0
└─
┌─ The following changes have been performed
│ ∗ install dune 3.21.1
│ ∗ install re 1.14.0
└─
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20260315090133.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall parseff.0.1.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 "\"archlinux\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'parseff.0.1.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 1
2026-03-15 09:02.12: Job failed: Failed: Build failed
2026-03-15 09:02.12: Log analysis:
2026-03-15 09:02.12: >>>
[ERROR] The compilation of parseff.0.1.0 failed at "dune build -p parseff -j 71 @install".
(score = 20)
2026-03-15 09:02.12: >>>
# Error: No rule found for _doc/_markdown/parseff/README.md
(score = 48)
2026-03-15 09:02.12: No rule found for _doc/_markdown/parseff/README.md