- github
- ocaml
- opam-repository
- 395113
- distributions,archlinux-ocaml-4.14,tezt.3.1.0,tests
(not at the head of any monitored branch or PR)
2026-03-17 10:25.59: New job: test tezt.3.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (395113449576622af70540fb22e5d90e18554bdc)
on archlinux-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/29530/head" && git reset --hard 39511344
git fetch origin master
git merge --no-edit e589be2bb3f3c3428c9c98a122428f3ad2d44845
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299
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 tezt.3.1.0 3.1.0
RUN opam reinstall tezt.3.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" != 'tezt.3.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 tezt.3.1.0) || true
RUN opam reinstall --with-test --verbose tezt.3.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" != 'tezt.3.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-17 10:25.59: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299-tezt.3.1.0-395113449576622af70540fb22e5d90e18554bdc"
2026-03-17 10:25.59: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299)
(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 tezt.3.1.0 3.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tezt.3.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\" != 'tezt.3.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 tezt.3.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose tezt.3.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\" != 'tezt.3.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-17 10:25.59: Waiting for resource in pool OCluster
2026-03-17 11:45.03: Waiting for worker…
2026-03-17 11:46.44: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at e589be2bb3 Merge pull request #29546 from johnwhitington/opam-publish-camlpdf.2.9
Merge made by the 'ort' strategy.
packages/bimage-lwt/bimage-lwt.0.3.0/opam | 6 +++++-
packages/bimage-lwt/bimage-lwt.0.3.1/opam | 6 +++++-
packages/bimage-lwt/bimage-lwt.0.4.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.0.11.0/opam | 4 +++-
packages/caqti-lwt/caqti-lwt.1.0.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.2.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.3.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.6.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.7.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.8.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.9.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.0.1/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.1.1/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.2.4/opam | 6 +++++-
packages/fuseau-lwt/fuseau-lwt.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.1.13/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.2/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.3/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.0.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.3.1.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.2.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.1/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.2/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.1.0/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.2.0/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.3.0/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.1/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.2/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.3/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.4/opam | 7 ++++++-
packages/lwt_eio/lwt_eio.0.5.1/opam | 7 ++++++-
packages/lwt_eio/lwt_eio.0.5/opam | 7 ++++++-
packages/lwt_glib/lwt_glib.1.0.1/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.1.0/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.1.1/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.0/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.1/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.0.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.0.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.1.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.3/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.4/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.3/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.1.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.8.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.8.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.3/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.6/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.7/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.8/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.9/opam | 6 +++++-
packages/mwt/mwt.0.1.0/opam | 6 +++++-
packages/nocrypto/nocrypto.0.5.4-1/opam | 6 +++++-
packages/nocrypto/nocrypto.0.5.4-2/opam | 6 +++++-
packages/ocluster/ocluster.0.1/opam | 4 +++-
packages/ocluster/ocluster.0.2.1/opam | 6 +++++-
packages/ocluster/ocluster.0.2/opam | 4 +++-
packages/ocluster/ocluster.0.3.0/opam | 6 +++++-
packages/picos/picos.0.3.0/opam | 6 +++++-
packages/picos/picos.0.4.0/opam | 6 +++++-
packages/picos_lwt/picos_lwt.0.5.0/opam | 6 +++++-
packages/picos_lwt/picos_lwt.0.6.0/opam | 6 +++++-
packages/tezt/tezt.2.0.0/opam | 6 +++++-
packages/tezt/tezt.3.0.0/opam | 4 +++-
packages/tezt/tezt.3.1.0/opam | 4 +++-
packages/tezt/tezt.3.1.1/opam | 4 +++-
packages/tezt/tezt.4.0.0/opam | 4 +++-
packages/tezt/tezt.4.1.0/opam | 4 +++-
packages/tezt/tezt.4.2.0/opam | 4 +++-
packages/tezt/tezt.4.3.0/opam | 4 +++-
84 files changed, 403 insertions(+), 84 deletions(-)
(from ocaml/opam:archlinux-ocaml-4.14@sha256:9d55497511eea9708d67ec77735398b11518279d1d04f8bfcbb12404f22c4299)
2026-03-17 11:46.49 ---> using "a466eae14070aec815f5a6ffa3db347a0e358a5fb79fdc6b3b6116aa3b4206b7" 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-03-17 11:46.49 ---> using "de8e3509b0887e428166ac0426de011b77defbed7fbffae35f3f6234dd304a96" 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-03-17 11:46.49 ---> using "07eeae27e857ac1a894a10ea873016463354dc0e35513a66fe1a537e374e6658" 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=arch os-version=20260308.0.497099
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# 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-03-17 11:46.49 ---> using "49e4f6621d764b0f376d2b8c1568a083f0a8e84498dd7ab03dbbec1c427bfe38" 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-03-17 11:46.49 ---> using "30067455dfbbca5df814db79ab3e8982ea7f7bf02bf20edfc7c229a0a1ed8cdd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 11:46.50 ---> using "52a3c3119f93e1f4e1ecd15cfdc0b0060d83bb2307a8cbe97109276e52212254" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 11:47.06 ---> saved as "eb204ea1d62b91ea3840f128c7f23892ae4214fe1ba3d8e84ca942a13677592a"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-03-17 11:47.06 ---> saved as "092a3eacc3edb756f309e8371a41febc489250b11e4945a49f1e86311fbf0811"
/home/opam: (run (shell "opam pin add -k version -yn tezt.3.1.0 3.1.0"))
tezt is now pinned to version 3.1.0
2026-03-17 11:47.08 ---> saved as "c297182895e3ec1de48c0c45b538b06add8f105ce490505bbbcc87371b8c9f0f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tezt.3.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\" != 'tezt.3.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"))
tezt.3.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 19 packages
∗ base-bytes base [required by ocplib-endian]
∗ cppo 1.8.0 [required by lwt]
∗ csexp 1.5.2 [required by dune-configurator]
∗ cstruct 6.2.0 [required by hex]
∗ dune 3.21.1 [required by tezt]
∗ dune-configurator 3.21.1 [required by lwt]
∗ ezjsonm 1.3.0 [required by tezt]
∗ fmt 0.11.0 [required by cstruct]
∗ hex 1.5.0 [required by ezjsonm]
∗ jsonm 1.0.2 [required by ezjsonm]
∗ lwt 5.9.2 [required by tezt]
∗ ocamlbuild 0.16.1 [required by jsonm]
∗ ocamlfind 1.9.8 [required by jsonm]
∗ ocplib-endian 1.2 [required by lwt]
∗ re 1.14.0 [required by tezt]
∗ sexplib0 v0.17.0 [required by ezjsonm]
∗ tezt 3.1.0 (pinned)
∗ topkg 1.1.1 [required by jsonm]
∗ uutf 1.0.4 [required by ezjsonm]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved csexp.1.5.2 (cached)
⬇ retrieved cstruct.6.2.0 (cached)
⬇ retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
⬇ retrieved ezjsonm.1.3.0 (cached)
⬇ retrieved fmt.0.11.0 (cached)
⬇ retrieved hex.1.5.0 (cached)
⬇ retrieved jsonm.1.0.2 (cached)
⬇ retrieved lwt.5.9.2 (cached)
⬇ retrieved ocamlbuild.0.16.1 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ocplib-endian.1.2 (cached)
⬇ retrieved re.1.14.0 (cached)
⬇ retrieved sexplib0.v0.17.0 (cached)
⬇ retrieved tezt.3.1.0 (cached)
⬇ retrieved topkg.1.1.1 (cached)
⬇ retrieved uutf.1.0.4 (cached)
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed ocamlbuild.0.16.1
∗ installed topkg.1.1.1
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed jsonm.1.0.2
∗ installed dune.3.21.1
∗ installed csexp.1.5.2
∗ installed cppo.1.8.0
∗ installed cstruct.6.2.0
∗ installed re.1.14.0
∗ installed sexplib0.v0.17.0
∗ installed hex.1.5.0
∗ installed ocplib-endian.1.2
∗ installed ezjsonm.1.3.0
∗ installed dune-configurator.3.21.1
∗ installed lwt.5.9.2
∗ installed tezt.3.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:47.45 ---> saved as "99fcfc9383062d3a8316bc81b2d80bc9aa453e67c8bdfc2f024f9206938761bd"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test tezt.3.1.0) || true"))
The following actions will be performed:
=== downgrade 3 packages
↘ dune 3.21.1 to 3.18.2 [required by tezt]
↘ dune-configurator 3.21.1 to 3.19.1 [uses dune]
↘ sexplib0 v0.17.0 to v0.16.0 [uses dune]
=== recompile 12 packages
↻ cppo 1.8.0 [uses dune]
↻ csexp 1.5.2 [uses dune]
↻ cstruct 6.2.0 [uses dune]
↻ ezjsonm 1.3.0 [uses dune]
↻ fmt 0.11.0 [uses cmdliner]
↻ hex 1.5.0 [uses dune]
↻ jsonm 1.0.2 [uses uutf]
↻ lwt 5.9.2 [uses dune]
↻ ocplib-endian 1.2 [uses dune]
↻ re 1.14.0 [uses dune]
↻ tezt 3.1.0 (pinned)
↻ uutf 1.0.4 [uses cmdliner]
=== install 34 packages
∗ astring 0.8.5 [required by fpath, odoc-parser]
∗ base v0.16.4 [required by ocamlformat]
∗ camlp-streams 5.0.1 [required by odoc-parser]
∗ cmdliner 1.3.0 [required by ocamlformat]
∗ conf-npm 1 [required by tezt]
∗ dune-build-info 3.19.1 [required by ocamlformat]
∗ either 1.0.0 [required by ocamlformat]
∗ fix 20250919 [required by ocamlformat]
∗ fpath 0.7.3 [required by ocamlformat]
∗ gen 1.1 [required by sedlex]
∗ js_of_ocaml 6.0.1 [required by tezt]
∗ js_of_ocaml-compiler 6.0.1 [required by js_of_ocaml]
∗ js_of_ocaml-lwt 6.0.1 [required by tezt]
∗ js_of_ocaml-ppx 6.0.1 [required by js_of_ocaml-lwt]
∗ menhir 20260209 [required by ocamlformat]
∗ menhirCST 20260209 [required by menhir]
∗ menhirGLR 20260209 [required by menhir]
∗ menhirLib 20260209 [required by ocamlformat]
∗ menhirSdk 20260209 [required by ocamlformat]
∗ ocaml-compiler-libs v0.12.4 [required by ppxlib]
∗ ocaml-version 3.5.0 [required by ocamlformat]
∗ ocamlformat 0.21.0 [required by tezt]
∗ ocp-indent 1.8.1 [required by ocamlformat]
∗ odoc-parser 1.0.1 [required by ocamlformat]
∗ ppx_derivers 1.2.1 [required by ppxlib]
∗ ppxlib 0.35.0 [required by js_of_ocaml]
∗ result 1.5 [required by odoc-parser]
∗ sedlex 3.7 [required by js_of_ocaml-compiler]
∗ seq base [required by gen]
∗ stdio v0.16.0 [required by ocamlformat]
∗ stdlib-shims 0.3.0 [required by ppxlib]
∗ uucp 17.0.0 [required by uuseg]
∗ uuseg 17.0.0 [required by ocamlformat]
∗ yojson 3.0.0 [required by js_of_ocaml-compiler]
The following system packages will first need to be installed:
npm
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/sbin/sudo "pacman" "-Su" "--noconfirm" "npm"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (9) New Version Net Change Download Size
-
- extra/ada 3.4.3-1 1.08 MiB 0.28 MiB
- extra/c-ares 1.34.6-1 0.51 MiB 0.22 MiB
- extra/libuv 1.52.1-1 0.64 MiB 0.26 MiB
- extra/node-gyp 12.2.0-1 7.84 MiB 1.15 MiB
- extra/nodejs 25.8.1-1 63.47 MiB 15.71 MiB
- extra/nodejs-nopt 8.1.0-1 0.03 MiB 0.01 MiB
- extra/semver 7.7.4-1 0.09 MiB 0.03 MiB
- extra/simdjson 1:4.4.0-1 7.49 MiB 0.29 MiB
- extra/npm 11.11.1-1 7.52 MiB 1.45 MiB
-
- Total Download Size: 19.40 MiB
- Total Installed Size: 88.67 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- nodejs-25.8.1-1-x86_64 downloading...
- npm-11.11.1-1-any downloading...
- node-gyp-12.2.0-1-any downloading...
- simdjson-1:4.4.0-1-x86_64 downloading...
- ada-3.4.3-1-x86_64 downloading...
- libuv-1.52.1-1-x86_64 downloading...
- c-ares-1.34.6-1-x86_64 downloading...
- semver-7.7.4-1-any downloading...
- nodejs-nopt-8.1.0-1-any downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing ada...
- installing c-ares...
- installing libuv...
- installing simdjson...
- installing nodejs...
- Optional dependencies for nodejs
- npm: nodejs package manager [pending]
- installing nodejs-nopt...
- installing semver...
- installing node-gyp...
- Optional dependencies for node-gyp
- gcc: to build C++ modules [installed]
- make: to build C++ modules [installed]
- python: to build C++ modules
- installing npm...
- Optional dependencies for npm
- git: for dependencies using Git URL's [installed]
- :: Running post-transaction hooks...
- (1/1) Arming ConditionNeedsUpdate...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
⬇ retrieved base.v0.16.4 (https://opam.ocaml.org/cache)
⬇ retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
⬇ retrieved cmdliner.1.3.0 (https://opam.ocaml.org/cache)
⬇ retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
⬇ retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
∗ installed conf-npm.1
⬇ retrieved cstruct.6.2.0 (https://opam.ocaml.org/cache)
⬇ retrieved dune.3.18.2 (https://opam.ocaml.org/cache)
∗ installed astring.0.8.5
∗ installed cmdliner.1.3.0
⬇ retrieved dune-build-info.3.19.1, dune-configurator.3.19.1 (https://opam.ocaml.org/cache)
⬇ retrieved either.1.0.0 (https://opam.ocaml.org/cache)
⬇ retrieved ezjsonm.1.3.0 (https://opam.ocaml.org/cache)
⬇ retrieved fix.20250919 (https://opam.ocaml.org/cache)
⬇ retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
⬇ retrieved fpath.0.7.3 (https://opam.ocaml.org/cache)
⬇ retrieved gen.1.1 (https://opam.ocaml.org/cache)
⬇ retrieved hex.1.5.0 (https://opam.ocaml.org/cache)
∗ installed fpath.0.7.3
⬇ retrieved js_of_ocaml.6.0.1, js_of_ocaml-compiler.6.0.1, js_of_ocaml-lwt.6.0.1, js_of_ocaml-ppx.6.0.1 (https://opam.ocaml.org/cache)
⬇ retrieved jsonm.1.0.2 (https://opam.ocaml.org/cache)
⬇ retrieved lwt.5.9.2 (https://opam.ocaml.org/cache)
⬇ retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (https://opam.ocaml.org/cache)
⬇ retrieved ocaml-compiler-libs.v0.12.4 (https://opam.ocaml.org/cache)
⬇ retrieved ocaml-version.3.5.0 (https://opam.ocaml.org/cache)
⬇ retrieved ocamlformat.0.21.0 (https://opam.ocaml.org/cache)
⬇ retrieved ocp-indent.1.8.1 (https://opam.ocaml.org/cache)
⬇ retrieved ocplib-endian.1.2 (https://opam.ocaml.org/cache)
⬇ retrieved odoc-parser.1.0.1 (https://opam.ocaml.org/cache)
⬇ retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
⬇ retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
⬇ retrieved re.1.14.0 (https://opam.ocaml.org/cache)
⬇ retrieved result.1.5 (https://opam.ocaml.org/cache)
⬇ retrieved sedlex.3.7 (https://opam.ocaml.org/cache)
⬇ retrieved seq.base (2 extra sources)
⬇ retrieved seq.base (2 extra sources)
∗ installed seq.base
⬇ retrieved sexplib0.v0.16.0 (https://opam.ocaml.org/cache)
⬇ retrieved stdio.v0.16.0 (https://opam.ocaml.org/cache)
⬇ retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
⬇ retrieved tezt.3.1.0 (https://opam.ocaml.org/cache)
⬇ retrieved uucp.17.0.0 (https://opam.ocaml.org/cache)
⬇ retrieved uuseg.17.0.0 (https://opam.ocaml.org/cache)
⬇ retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
⬇ retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
⊘ removed tezt.3.1.0
⊘ removed ezjsonm.1.3.0
⊘ removed hex.1.5.0
⊘ removed cstruct.6.2.0
⊘ removed fmt.0.11.0
⊘ removed jsonm.1.0.2
⊘ removed lwt.5.9.2
⊘ removed dune-configurator.3.21.1
⊘ removed csexp.1.5.2
⊘ removed ocplib-endian.1.2
⊘ removed cppo.1.8.0
⊘ removed re.1.14.0
⊘ removed sexplib0.v0.17.0
⊘ removed dune.3.21.1
⊘ removed uutf.1.0.4
∗ installed dune.3.18.2
∗ installed fmt.0.11.0
∗ installed uutf.1.0.4
∗ installed camlp-streams.5.0.1
∗ installed cppo.1.8.0
∗ installed csexp.1.5.2
∗ installed either.1.0.0
∗ installed fix.20250919
∗ installed gen.1.1
∗ installed menhirCST.20260209
∗ installed menhirGLR.20260209
∗ installed menhirLib.20260209
∗ installed menhirSdk.20260209
∗ installed ocaml-compiler-libs.v0.12.4
∗ installed ocaml-version.3.5.0
∗ installed ocp-indent.1.8.1
∗ installed ppx_derivers.1.2.1
∗ installed re.1.14.0
∗ installed result.1.5
∗ installed sexplib0.v0.16.0
∗ installed stdlib-shims.0.3.0
∗ installed yojson.3.0.0
∗ installed cstruct.6.2.0
∗ installed jsonm.1.0.2
∗ installed ocplib-endian.1.2
∗ installed hex.1.5.0
∗ installed odoc-parser.1.0.1
∗ installed ezjsonm.1.3.0
∗ installed dune-build-info.3.19.1
∗ installed dune-configurator.3.19.1
∗ installed lwt.5.9.2
∗ installed menhir.20260209
∗ installed base.v0.16.4
∗ installed stdio.v0.16.0
∗ installed ppxlib.0.35.0
∗ installed sedlex.3.7
∗ installed uucp.17.0.0
∗ installed uuseg.17.0.0
∗ installed js_of_ocaml-compiler.6.0.1
∗ installed ocamlformat.0.21.0
∗ installed js_of_ocaml.6.0.1
∗ installed js_of_ocaml-ppx.6.0.1
∗ installed js_of_ocaml-lwt.6.0.1
∗ installed tezt.3.1.0
Done.
<><> ocp-indent.1.8.1 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/4.14/share/emacs/site-lisp")
(require 'ocp-indent)
* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/4.14/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:49.21 ---> saved as "ac63389dc71bd78f9a45e0ef719e3c6826422632dc41db05c1000b52e74e7369"
/home/opam: (run (shell "opam reinstall --with-test --verbose tezt.3.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\" != 'tezt.3.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"))
The following actions will be performed:
=== recompile 1 package
↻ tezt 3.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [tezt.3.1.0: extract]
⬇ retrieved tezt.3.1.0 (cached)
Processing 2/4: [tezt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tezt" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tezt.3.1.0)
Processing 2/4: [tezt: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "tezt" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tezt.3.1.0)
- (cd _build/default/test/unix && ./main.exe)
- [11:49:26.646] [SUCCESS] (1/16) demo
- [11:49:26.646] [SUCCESS] (2/16) fixed seed
- [11:49:26.646] [SUCCESS] (3/16) random seed
- [11:49:26.646] [SUCCESS] (4/16) string_tree: mem_prefix_of
- [11:49:26.646] [SUCCESS] (5/16) diff: simple cases
- [11:49:26.668] [SUCCESS] (6/16) diff: random cases
- [11:49:26.668] [SUCCESS] (7/16) diff: log
- [11:49:26.668] [SUCCESS] (8/16) Check.(=)
- [11:49:26.668] [SUCCESS] (9/16) Check.(<>)
- [11:49:26.668] [SUCCESS] (10/16) Check.(<)
- [11:49:26.668] [SUCCESS] (11/16) Check.(<=)
- [11:49:26.669] [SUCCESS] (12/16) Check.(>)
- [11:49:26.669] [SUCCESS] (13/16) Check.(>=)
- [11:49:26.669] [SUCCESS] (14/16) Check.(=~)
- [11:49:26.669] [SUCCESS] (15/16) Check.(=~!)
- [11:49:27.670] [SUCCESS] (16/16) Process.terminate with timeout
- (cd _build/default/test/js && /usr/sbin/node main.bc.js)
- [11:49:28.474] [SUCCESS] (1/15) demo
- [11:49:28.476] [SUCCESS] (2/15) fixed seed
- [11:49:28.480] [SUCCESS] (3/15) random seed
- [11:49:28.483] [SUCCESS] (4/15) string_tree: mem_prefix_of
- [11:49:28.484] [SUCCESS] (5/15) diff: simple cases
- [11:49:28.611] [SUCCESS] (6/15) diff: random cases
- [11:49:28.615] [SUCCESS] (7/15) diff: log
- [11:49:28.615] [SUCCESS] (8/15) Check.(=)
- [11:49:28.617] [SUCCESS] (9/15) Check.(<>)
- [11:49:28.618] [SUCCESS] (10/15) Check.(<)
- [11:49:28.618] [SUCCESS] (11/15) Check.(<=)
- [11:49:28.618] [SUCCESS] (12/15) Check.(>)
- [11:49:28.619] [SUCCESS] (13/15) Check.(>=)
- [11:49:28.621] [SUCCESS] (14/15) Check.(=~)
- [11:49:28.621] [SUCCESS] (15/15) Check.(=~!)
λ compiled tezt.3.1.0
⊘ removed tezt.3.1.0
∗ installed tezt.3.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 11:49.28 ---> saved as "4ce2ecdf0b177ae70361f1a7d61817e74c08e510037357819c4833d32a832e52"
Job succeeded
2026-03-17 11:49.38: Job succeeded