(for PR #28291)
2025-08-05 10:42.00: New job: test archive.3.7.2+6, using opam 2.3 from https://github.com/ocaml/opam-repository.git#refs/pull/28291/head (3e46e7fdc64d91bd792acd6d282116b1fe84d312) on debian-11-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 0b62dc9c3c8e5f6da32ee7f298eb968ef86189ed cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-11-ocaml-4.14@sha256:760237a7415173dbb23f10d97adb1d12f0aa6dfae254e8f865f5fcfbfeb07bfb USER 1000:1000 WORKDIR /home/opam RUN sudo ln -f /usr/bin/opam-2.3 /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.3.7.2+6 3.7.2+6 RUN opam reinstall archive.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 "\"debian-11\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'archive.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.3.7.2+6) || true RUN opam reinstall --with-test --verbose archive.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 "\"debian-11\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'archive.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-08-05 10:42.00: Using cache hint "ocaml/opam:debian-11-ocaml-4.14@sha256:760237a7415173dbb23f10d97adb1d12f0aa6dfae254e8f865f5fcfbfeb07bfb-archive.3.7.2+6-3e46e7fdc64d91bd792acd6d282116b1fe84d312" 2025-08-05 10:42.00: Using OBuilder spec: ((from ocaml/opam:debian-11-ocaml-4.14@sha256:760237a7415173dbb23f10d97adb1d12f0aa6dfae254e8f865f5fcfbfeb07bfb) (user (uid 1000) (gid 1000)) (workdir /home/opam) (run (shell "sudo ln -f /usr/bin/opam-2.3 /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.3.7.2+6 3.7.2+6")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall archive.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 \"\\\"debian-11\\\"\"; 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.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.3.7.2+6) || true")) (run (shell "opam reinstall --with-test --verbose archive.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 \"\\\"debian-11\\\"\"; 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.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-08-05 10:42.00: Waiting for resource in pool OCluster 2025-08-05 10:42.01: Waiting for worker… 2025-08-05 10:42.03: Got resource from pool OCluster Building on phoebe All commits already cached HEAD is now at 0b62dc9c3c conf-clang: update alpine depext (#28290) 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:debian-11-ocaml-4.14@sha256:760237a7415173dbb23f10d97adb1d12f0aa6dfae254e8f865f5fcfbfeb07bfb) Unable to find image 'ocaml/opam:debian-11-ocaml-4.14@sha256:760237a7415173dbb23f10d97adb1d12f0aa6dfae254e8f865f5fcfbfeb07bfb' locally docker.io/ocaml/opam@sha256:760237a7415173dbb23f10d97adb1d12f0aa6dfae254e8f865f5fcfbfeb07bfb: Pulling from ocaml/opam Digest: sha256:760237a7415173dbb23f10d97adb1d12f0aa6dfae254e8f865f5fcfbfeb07bfb Status: Downloaded newer image for ocaml/opam@sha256:760237a7415173dbb23f10d97adb1d12f0aa6dfae254e8f865f5fcfbfeb07bfb 2025-08-05 10:43.00 ---> using "a6abb9c3607a180caddadf75f5fa9f12ee675b57f14e041837a1d980f78051ce" from cache /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-08-05 10:43.00 ---> using "5deea28d6a347583da9a644791767a55746a12e5e28b96bcac44dde1f3c43be5" 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 development 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 2025-08-05 10:43.00 ---> using "16a9773e5ae47c264d70ad3d43c0b5691761d06ec4ebeabcdb8d0e3525116aa5" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724) # self-upgrade no # system arch=x86_64 os=linux os-distribution=debian os-version=11 # 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-08-05 10:43.00 ---> using "d64651f5c9c590db54b0d18a3570a9bb3a7c318ef3039c4ca8395f11f86deca2" 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-08-05 10:43.00 ---> using "34c0a7bb536c09c0d51c55b8bde17a11230f9393bdc90cbb58fe623e98269d65" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2025-08-05 10:43.09 ---> saved as "15dedf94a003cf5cde73398e1e7310f14f504d92a128f0953b7c0348d6aac1ca" /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-08-05 10:43.28 ---> saved as "5909d64073718d119ad2562c0b55f81d14b4f3ea0bbc523bbca9d52715845a24" /home/opam: (run (network host) (shell "opam update --depexts || true")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian bullseye InRelease - Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [27.2 kB] - Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.0 kB] - Get:4 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [389 kB] - Fetched 461 kB in 1s (521 kB/s) - Reading package lists... - 2025-08-05 10:43.30 ---> saved as "0ceae4fc2dd5d0c95a86bedc28fc8b5447ae4f2f0aaa7061d796d41dcde73dab" /home/opam: (run (shell "opam pin add -k version -yn archive.3.7.2+6 3.7.2+6")) archive is now pinned to version 3.7.2+6 2025-08-05 10:43.31 ---> saved as "68cc3ea12e75fc72c832b50426ba43d3580885c1b31e63d90ce8b4bfb241a983" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall archive.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 \"\\\"debian-11\\\"\"; 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.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.3.7.2+6 is not installed. Install it? [y/n] y The following actions will be performed: === install 6 packages - install archive 3.7.2+6 (pinned) - install conf-pkg-config 4 [required by archive] - install csexp 1.5.2 [required by dune-configurator] - install dune 3.19.1 [required by archive] - install dune-configurator 3.19.1 [required by archive] - install fileutils 0.6.6 [required by archive] The following system packages will first need to be installed: libarchive-dev pkg-config <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> opam believes some required external dependencies are missing. opam can: > 1. Run apt-get to install them (may need root/sudo access) 2. Display the recommended apt-get 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/bin/sudo "apt-get" "install" "-qq" "-yy" "libarchive-dev" "pkg-config" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libicu67:amd64. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18342 files and directories currently installed.) - Preparing to unpack .../0-libicu67_67.1-7+deb11u1_amd64.deb ... - Unpacking libicu67:amd64 (67.1-7+deb11u1) ... - Selecting previously unselected package libxml2:amd64. - Preparing to unpack .../1-libxml2_2.9.10+dfsg-6.7+deb11u8_amd64.deb ... - Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u8) ... - Selecting previously unselected package libarchive13:amd64. - Preparing to unpack .../2-libarchive13_3.4.3-2+deb11u2_amd64.deb ... - Unpacking libarchive13:amd64 (3.4.3-2+deb11u2) ... - Selecting previously unselected package libarchive-dev:amd64. - Preparing to unpack .../3-libarchive-dev_3.4.3-2+deb11u2_amd64.deb ... - Unpacking libarchive-dev:amd64 (3.4.3-2+deb11u2) ... - Selecting previously unselected package libglib2.0-0:amd64. - Preparing to unpack .../4-libglib2.0-0_2.66.8-1+deb11u6_amd64.deb ... - Unpacking libglib2.0-0:amd64 (2.66.8-1+deb11u6) ... - Selecting previously unselected package libglib2.0-data. - Preparing to unpack .../5-libglib2.0-data_2.66.8-1+deb11u6_all.deb ... - Unpacking libglib2.0-data (2.66.8-1+deb11u6) ... - Selecting previously unselected package pkg-config. - Preparing to unpack .../6-pkg-config_0.29.2-1_amd64.deb ... - Unpacking pkg-config (0.29.2-1) ... - Selecting previously unselected package shared-mime-info. - Preparing to unpack .../7-shared-mime-info_2.0-1_amd64.deb ... - Unpacking shared-mime-info (2.0-1) ... - Selecting previously unselected package xdg-user-dirs. - Preparing to unpack .../8-xdg-user-dirs_0.17-2_amd64.deb ... - Unpacking xdg-user-dirs (0.17-2) ... - Setting up libicu67:amd64 (67.1-7+deb11u1) ... - Setting up xdg-user-dirs (0.17-2) ... - Setting up libglib2.0-0:amd64 (2.66.8-1+deb11u6) ... - No schema files found: doing nothing. - Setting up libglib2.0-data (2.66.8-1+deb11u6) ... - Setting up pkg-config (0.29.2-1) ... - Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u8) ... - Setting up libarchive13:amd64 (3.4.3-2+deb11u2) ... - Setting up shared-mime-info (2.0-1) ... - Setting up libarchive-dev:amd64 (3.4.3-2+deb11u2) ... - Processing triggers for libc-bin (2.31-13+deb11u13) ... <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved archive.3.7.2+6 (cached) -> retrieved csexp.1.5.2 (cached) -> installed conf-pkg-config.4 -> retrieved dune.3.19.1, dune-configurator.3.19.1 (cached) -> retrieved fileutils.0.6.6 (cached) -> installed dune.3.19.1 -> installed csexp.1.5.2 -> installed fileutils.0.6.6 -> installed dune-configurator.3.19.1 -> installed archive.3.7.2+6 Done. # To update the current shell environment, run: eval $(opam env) 2025-08-05 10:45.10 ---> saved as "9c7e7a46c9262ccd6aba47b0c33a97c4a448e4e0f728e4537c90e321f9432490" /home/opam: (run (network host) (shell "(opam reinstall --with-test archive.3.7.2+6) || true")) The following actions will be performed: === recompile 1 package - recompile archive 3.7.2+6 (pinned) === install 10 packages - install archive-lwt 3.7.2+6 - install base-bytes base - install cppo 1.8.0 [required by extlib] - install extlib 1.8.0 [required by archive] - install lwt 5.9.1 - install ocamlfind 1.9.8 - install ocplib-endian 1.2 - install ounit2 2.2.7 [required by archive] - install seq base [required by ounit2] - install stdlib-shims 0.3.0 [required by ounit2] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved archive.3.7.2+6, archive-lwt.3.7.2+6 (https://github.com/gildor478/ocaml-archive/releases/download/v3.7.2%2B6/archive-3.7.2.6.tbz) -> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache) -> retrieved extlib.1.8.0 (https://opam.ocaml.org/cache) -> retrieved lwt.5.9.1 (https://opam.ocaml.org/cache) -> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache) -> retrieved ocplib-endian.1.2 (https://opam.ocaml.org/cache) -> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache) -> installed cppo.1.8.0 -> 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) -> removed archive.3.7.2+6 -> installed stdlib-shims.0.3.0 -> installed extlib.1.8.0 -> installed ounit2.2.2.7 [ERROR] The compilation of archive.3.7.2+6 failed at "dune build -p archive -j 71 @install @runtest". -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed ocplib-endian.1.2 -> installed lwt.5.9.1 #=== ERROR while compiling archive.3.7.2+6 ====================================# # context 2.3.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/gildor478/ocaml-archive/releases/download/v3.7.2%2B6/archive-3.7.2.6.tbz) # path ~/.opam/4.14/.opam-switch/build/archive.3.7.2+6 # command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p archive -j 71 @install @runtest # exit-code 1 # env-file ~/.opam/log/archive-7-6fd95f.env # output-file ~/.opam/log/archive-7-6fd95f.out ### output ### # File "test/dune", line 4, characters 20-31: # 4 | (libraries archive archive-lwt ounit2 extlib)) # ^^^^^^^^^^^ # Error: Library "archive-lwt" not found. # -> required by _build/default/test/test.exe # -> required by alias test/runtest in test/dune:2 <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - build archive 3.7.2+6 +- +- The following changes have been performed (the rest was aborted) | - remove archive 3.7.2+6 | - install base-bytes base | - install cppo 1.8.0 | - install extlib 1.8.0 | - install lwt 5.9.1 | - install ocamlfind 1.9.8 | - install ocplib-endian 1.2 | - install ounit2 2.2.7 | - install seq base | - install stdlib-shims 0.3.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/4.14/.opam-switch/backup/state-20250805104510.export" Or you can retry to install your package selection with: /usr/bin/opam install --restore 2025-08-05 10:45.25 ---> saved as "f89e70090d665364873177a9b2896450f902489ec332bcd8cb9035579c5ebeae" /home/opam: (run (shell "opam reinstall --with-test --verbose archive.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 \"\\\"debian-11\\\"\"; 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.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.3.7.2+6 is not installed. Install it? [y/n] y The following actions will be performed: === install 2 packages - install archive 3.7.2+6 (pinned) - install archive-lwt 3.7.2+6 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/5: [archive-lwt.3.7.2+6: extract] -> retrieved archive.3.7.2+6, archive-lwt.3.7.2+6 (cached) Processing 2/5: [archive: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "archive" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/archive.3.7.2+6) - File "test/dune", line 4, characters 20-31: - 4 | (libraries archive archive-lwt ounit2 extlib)) - ^^^^^^^^^^^ - Error: Library "archive-lwt" not found. - -> required by _build/default/test/test.exe - -> required by alias test/runtest in test/dune:2 [ERROR] The compilation of archive.3.7.2+6 failed at "dune build -p archive -j 71 @install @runtest". #=== ERROR while compiling archive.3.7.2+6 ====================================# # context 2.3.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/gildor478/ocaml-archive/releases/download/v3.7.2%2B6/archive-3.7.2.6.tbz) # path ~/.opam/4.14/.opam-switch/build/archive.3.7.2+6 # command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p archive -j 71 @install @runtest # exit-code 1 # env-file ~/.opam/log/archive-7-8e0447.env # output-file ~/.opam/log/archive-7-8e0447.out ### output ### # File "test/dune", line 4, characters 20-31: # 4 | (libraries archive archive-lwt ounit2 extlib)) # ^^^^^^^^^^^ # Error: Library "archive-lwt" not found. # -> required by _build/default/test/test.exe # -> required by alias test/runtest in test/dune:2 <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions were aborted | - install archive-lwt 3.7.2+6 +- +- The following actions failed | - build archive 3.7.2+6 +- - No changes have been performed # To update the current shell environment, run: eval $(opam env) 'opam reinstall --with-test --verbose archive.3.7.2+6' failed. [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 --with-test --verbose archive.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 "\"debian-11\""; then echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; fi; test "$pkg" != 'archive.3.7.2+6' && 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 2025-08-05 10:45.35: Job failed: Failed: Build failed 2025-08-05 10:45.35: Log analysis: 2025-08-05 10:45.35: >>> [ERROR] The compilation of archive.3.7.2+6 failed at "dune build -p archive -j 71 @install @runtest". (score = 20) 2025-08-05 10:45.35: >>> # Error: Library "archive-lwt" not found. (score = 48) 2025-08-05 10:45.35: >>> [ERROR] The compilation of archive.3.7.2+6 failed at "dune build -p archive -j 71 @install @runtest". (score = 20) 2025-08-05 10:45.35: >>> # Error: Library "archive-lwt" not found. (score = 48) 2025-08-05 10:45.35: Library "archive-lwt" not found.