(for PR #28291)
2025-11-10 16:57.15: New job: test archive-lwt.3.7.2+6, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28291/head (3e46e7fdc64d91bd792acd6d282116b1fe84d312)
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/28291/head" && git reset --hard 3e46e7fd
git fetch origin master
git merge --no-edit b6a264c784afa1e19f7a926fc10d49010ad12be4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961
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 archive-lwt.3.7.2+6 3.7.2+6
RUN opam reinstall archive-lwt.3.7.2+6; \
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" != 'archive-lwt.3.7.2+6' && 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 archive-lwt.3.7.2+6) || true
RUN opam reinstall --with-test --verbose archive-lwt.3.7.2+6; \
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" != 'archive-lwt.3.7.2+6' && 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 .
2025-11-10 16:57.15: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961-archive-lwt.3.7.2+6-3e46e7fdc64d91bd792acd6d282116b1fe84d312"
2025-11-10 16:57.15: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961)
(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 archive-lwt.3.7.2+6 3.7.2+6"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall archive-lwt.3.7.2+6;\
\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\" != 'archive-lwt.3.7.2+6' && 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 archive-lwt.3.7.2+6) || true"))
(run (shell "opam reinstall --with-test --verbose archive-lwt.3.7.2+6;\
\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\" != 'archive-lwt.3.7.2+6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-11-10 16:57.15: Waiting for resource in pool OCluster
2025-11-10 21:59.01: Waiting for worker…
2025-11-10 22:02.48: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 92% (17313/18707)
Updating files: 93% (17398/18707)
Updating files: 94% (17585/18707)
Updating files: 95% (17772/18707)
Updating files: 96% (17959/18707)
Updating files: 97% (18146/18707)
Updating files: 98% (18333/18707)
Updating files: 99% (18520/18707)
Updating files: 100% (18707/18707)
Updating files: 100% (18707/18707), done.
HEAD is now at b6a264c784 Merge pull request #28853 from AltGr/catala100
Merge made by the 'ort' strategy.
packages/archive-lwt/archive-lwt.3.7.2+6/opam | 52 ++++++++++++++++++++
packages/archive/archive.3.7.2+6/opam | 69 +++++++++++++++++++++++++++
2 files changed, 121 insertions(+)
create mode 100644 packages/archive-lwt/archive-lwt.3.7.2+6/opam
create mode 100644 packages/archive/archive.3.7.2+6/opam
(from ocaml/opam:archlinux-ocaml-4.14@sha256:9c0b0d6b501ad6eaf9feacb656328b4671fc7009d9cd33655143239663251961)
2025-11-10 22:02.53 ---> using "90e6ad271d6cff4d2d84b95e7df48355be7a23830eeb095c4f58a5dc3b57ca64" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-10 22:02.53 ---> using "15f45865a083c7cfab55ba0775e9565b1a55687dc62b58bb4492b19a84e419b3" 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
2025-11-10 22:02.53 ---> using "1110c0a39239d6f102cc7f418ebb881ec1acb8fbf65e53c27ad27a49b180e2e2" 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~alpha1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=arch os-version=20251019.0.436919
# 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
2025-11-10 22:02.53 ---> using "c12e5e7d23b60796935938a0eb27d41a4f17be86238b92ad3510b26a3c1f0f4e" 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/"))
2025-11-10 22:02.53 ---> using "b6eb5f9a486e65c54b887bec0bc1e59355c26361baecfe32d07029df9f3285b5" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 22:02.58 ---> saved as "0af4168ff7279c385153289901f91c16a865e43350911266a5303ea461fd2a89"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 22:03.19 ---> saved as "875968871fa1727568f7fe25a583b391d641b18a2049e8e03d7666ae9b78cc75"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2025-11-10 22:03.20 ---> saved as "deb82c5a4e4b5b3dd7f3719c4b8f2d8b0274481a1dfea4ebc2407086573730cb"
/home/opam: (run (shell "opam pin add -k version -yn archive-lwt.3.7.2+6 3.7.2+6"))
archive-lwt is now pinned to version 3.7.2+6
2025-11-10 22:03.21 ---> saved as "b2fbe36dbdcecc509eef6f260919888340660893b4f9b154cd3f01a69787b13b"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall archive-lwt.3.7.2+6;\
\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\" != 'archive-lwt.3.7.2+6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
archive-lwt.3.7.2+6 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
∗ archive 3.7.2+6 [required by archive-lwt]
∗ archive-lwt 3.7.2+6 (pinned)
∗ base-bytes base [required by ocplib-endian]
∗ conf-pkg-config 4 [required by archive]
∗ cppo 1.8.0 [required by lwt]
∗ csexp 1.5.2 [required by dune-configurator]
∗ dune 3.20.2 [required by archive-lwt]
∗ dune-configurator 3.20.2 [required by archive, lwt]
∗ fileutils 0.6.6 [required by archive]
∗ lwt 5.9.2 [required by archive-lwt]
∗ ocamlfind 1.9.8 [required by base-bytes]
∗ ocplib-endian 1.2 [required by lwt]
The following system packages will first need to be installed:
pkgconf
<><> 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" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (7) Old Version New Version Net Change Download Size
-
- core/icu 76.1-1 78.1-1 1.47 MiB 11.71 MiB
- core/libxcrypt 4.5.0-1 4.5.1-1 0.00 MiB 0.09 MiB
- core/libxml2 2.15.1-1 2.15.1-3 0.00 MiB 0.75 MiB
- core/systemd 258.1-1 258.2-2 0.01 MiB 9.23 MiB
- core/systemd-libs 258.1-1 258.2-2 0.00 MiB 1.24 MiB
- core/systemd-sysvcompat 258.1-1 258.2-2 0.00 MiB 0.01 MiB
- core/pkgconf 2.5.1-1 0.20 MiB 0.07 MiB
-
- Total Download Size: 23.09 MiB
- Total Installed Size: 85.09 MiB
- Net Upgrade Size: 1.68 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- icu-78.1-1-x86_64 downloading...
- systemd-258.2-2-x86_64 downloading...
- systemd-libs-258.2-2-x86_64 downloading...
- libxml2-2.15.1-3-x86_64 downloading...
- libxcrypt-4.5.1-1-x86_64 downloading...
- pkgconf-2.5.1-1-x86_64 downloading...
- systemd-sysvcompat-258.2-2-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing pkgconf...
- upgrading icu...
- upgrading libxcrypt...
- upgrading libxml2...
- upgrading systemd-libs...
- upgrading systemd...
- upgrading systemd-sysvcompat...
- :: Running post-transaction hooks...
- ( 1/11) Creating system user accounts...
- ( 2/11) Updating journal message catalog...
- ( 3/11) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 4/11) Reloading user manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 5/11) Updating udev hardware database...
- ( 6/11) Restarting marked services...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 7/11) Applying kernel sysctl settings...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- ( 8/11) Creating temporary files...
- /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
- All rules containing unresolvable specifiers will be skipped.
- ( 9/11) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (10/11) Arming ConditionNeedsUpdate...
- (11/11) Reloading system bus configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved archive.3.7.2+6, archive-lwt.3.7.2+6 (cached)
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved csexp.1.5.2 (cached)
∗ installed conf-pkg-config.4
⬇ retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
⬇ retrieved fileutils.0.6.6 (cached)
⬇ retrieved lwt.5.9.2 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ocplib-endian.1.2 (cached)
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed dune.3.20.2
∗ installed csexp.1.5.2
∗ installed cppo.1.8.0
∗ installed fileutils.0.6.6
∗ installed ocplib-endian.1.2
∗ installed dune-configurator.3.20.2
∗ installed archive.3.7.2+6
∗ installed lwt.5.9.2
∗ installed archive-lwt.3.7.2+6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:04.06 ---> saved as "30f30ec44517f5e45346698d29dd844973f45d4e270805f7e887b52ab04f0295"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test archive-lwt.3.7.2+6) || true"))
The following actions will be performed:
=== recompile 1 package
↻ archive-lwt 3.7.2+6 (pinned)
=== install 4 packages
∗ extlib 1.8.0 [required by archive-lwt]
∗ ounit2 2.2.7 [required by archive-lwt]
∗ seq base [required by ounit2]
∗ stdlib-shims 0.3.0 [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved extlib.1.8.0 (https://opam.ocaml.org/cache)
⬇ retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
⬇ retrieved seq.base (2 extra sources)
⬇ retrieved seq.base (2 extra sources)
∗ installed seq.base
⬇ retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
∗ installed stdlib-shims.0.3.0
⊘ removed archive-lwt.3.7.2+6
∗ installed extlib.1.8.0
∗ installed ounit2.2.2.7
∗ installed archive-lwt.3.7.2+6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:04.13 ---> saved as "6c0e80c37a46025cbc5f34daff33619fdcfa69a7d8fb0942a989c16eda7dfd98"
/home/opam: (run (shell "opam reinstall --with-test --verbose archive-lwt.3.7.2+6;\
\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\" != 'archive-lwt.3.7.2+6' && 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
↻ archive-lwt 3.7.2+6 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [archive-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "archive-lwt" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/archive-lwt.3.7.2+6)
- (cd _build/default/test && ./test.exe)
- ....
- Ran: 4 tests in: 0.01 seconds.
- OK
λ compiled archive-lwt.3.7.2+6
⊘ removed archive-lwt.3.7.2+6
∗ installed archive-lwt.3.7.2+6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 22:04.18 ---> saved as "77ee864ccf865bcfe4117569c6a8294ab8c3ea4d3f87ea330bafe068eb727fc0"
Job succeeded
2025-11-10 22:04.27: Job succeeded