(for PR #27502)
2025-02-27 14:38.47: New job: test archive-lwt.3.7.2+5, using opam dev from https://github.com/ocaml/opam-repository.git#refs/pull/27502/head (e90d7362f65e9013b405e2247c943bdfccc0ac1e) on fedora-41-ocaml-5.3/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/27502/head" && git reset --hard e90d7362 git fetch origin master git merge --no-edit d9f0c12e04db180fadfffbfec66be4d5e8b39965 cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:fedora-41-ocaml-5.3@sha256:0089e33e132e880bebe6d51036d0279837ae157c271a905470fc51ce6dc663d7 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+5 3.7.2+5 RUN opam reinstall archive-lwt.3.7.2+5; \ 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 "\"fedora-41\""; 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+5' && 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+5) || true RUN opam reinstall --with-test --verbose archive-lwt.3.7.2+5; \ 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 "\"fedora-41\""; 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+5' && 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-02-27 14:38.47: Using cache hint "ocaml/opam:fedora-41-ocaml-5.3@sha256:0089e33e132e880bebe6d51036d0279837ae157c271a905470fc51ce6dc663d7-archive-lwt.3.7.2+5-e90d7362f65e9013b405e2247c943bdfccc0ac1e" 2025-02-27 14:38.47: Using OBuilder spec: ((from ocaml/opam:fedora-41-ocaml-5.3@sha256:0089e33e132e880bebe6d51036d0279837ae157c271a905470fc51ce6dc663d7) (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+5 3.7.2+5")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall archive-lwt.3.7.2+5;\ \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 \"\\\"fedora-41\\\"\"; 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+5' && 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+5) || true")) (run (shell "opam reinstall --with-test --verbose archive-lwt.3.7.2+5;\ \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 \"\\\"fedora-41\\\"\"; 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+5' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) ) 2025-02-27 14:38.47: Waiting for resource in pool OCluster 2025-02-27 14:38.48: Waiting for worker… 2025-02-27 14:42.29: Got resource from pool OCluster Building on x86-bm-c2.sw.ocaml.org All commits already cached HEAD is now at d9f0c12e04 Merge pull request #27490 from gildor478/release-ocamlify-v0.1.0 Merge made by the 'ort' strategy. packages/archive-lwt/archive-lwt.3.7.2+5/opam | 52 ++++++++++++++++++++ packages/archive/archive.3.7.2+5/opam | 68 +++++++++++++++++++++++++++ 2 files changed, 120 insertions(+) create mode 100644 packages/archive-lwt/archive-lwt.3.7.2+5/opam create mode 100644 packages/archive/archive.3.7.2+5/opam (from ocaml/opam:fedora-41-ocaml-5.3@sha256:0089e33e132e880bebe6d51036d0279837ae157c271a905470fc51ce6dc663d7) 2025-02-27 14:43.16 ---> saved as "126afa77955ce3881c1d8ca99611ab423774472a88727507152ea60338088f22" /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam")) 2025-02-27 14:43.17 ---> saved as "999658701644049fee8efa61f2c54a37950de8770915195d86f4166245aae911" /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 ><><><><><><><><><><><><><><><><><><><><><><><><><><> [opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive [default] synchronised from file:///home/opam/opam-repository 2025-02-27 14:44.37 ---> saved as "21e2f5306d837a9973ed45a93bdc902b678ad5a45eee6a8ca2aaa9cf5f27a548" /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.4.0~alpha1~dev (34b7b4ec4af0ebd3c8fc4aee8088471be2ad48c7) # self-upgrade no # system arch=x86_64 os=linux os-distribution=fedora os-version=41 # solver builtin-0install # install-criteria -changed,-count[avoid-version,solution] # upgrade-criteria -count[avoid-version,solution] # jobs 39 # repositories 1 (local), 1 (version-controlled) # pinned 1 (version) # current-switch 5.3 # invariant ["ocaml-base-compiler" {>= "5.3.0"}] # compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1 # ocaml:native true # ocaml:native-tools true # ocaml:native-dynlink true # ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml # ocaml:preinstalled false # ocaml:compiler 5.3.0 2025-02-27 14:44.38 ---> saved as "d4cff4d34fde95d62cb9932edbea83f46d3adabaede559faad3b0b2f413628c4" /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-02-27 14:44.44 ---> saved as "b2a395ce541d003c5ce13ea81bbad3f49676aeb99353db5b617389486ca12ebe" /home/opam: (copy (src .) (dst opam-repository/)) 2025-02-27 14:44.55 ---> saved as "cfc8f037df0161bb9882c345c64cdafe55407d033140efb96dbc1d52af2e13d6" /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-02-27 14:45.34 ---> saved as "c492d055fb9b844ce4340d0ed9ac62dc55bfb1b2e9524982a4fdbc87ec0b9111" /home/opam: (run (network host) (shell "opam update --depexts || true")) + /usr/bin/sudo "yum" "makecache" - Updating and loading repositories: - Fedora 41 - x86_64 100% | 298.1 KiB/s | 26.8 KiB | 00m00s - Fedora 41 - x86_64 - Updates 100% | 249.2 KiB/s | 22.2 KiB | 00m00s - Fedora 41 - x86_64 - Updates 100% | 5.0 MiB/s | 4.3 MiB | 00m01s - Repositories loaded. - Metadata cache created. 2025-02-27 14:45.39 ---> saved as "d73bdcc5ed6aa39ec07492470874331a8220e6330641429350b9acfcae730a83" /home/opam: (run (shell "opam pin add -k version -yn archive-lwt.3.7.2+5 3.7.2+5")) archive-lwt is now pinned to version 3.7.2+5 2025-02-27 14:45.40 ---> saved as "7276393b7aebf4e76e4707b53d4c083c4a28e2346ba1413b1b03727620ad097d" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall archive-lwt.3.7.2+5;\ \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 \"\\\"fedora-41\\\"\"; 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+5' && 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+5 is not installed. Install it? [Y/n] y The following actions will be performed: === install 12 packages - install archive 3.7.2+5 [required by archive-lwt] - install archive-lwt 3.7.2+5 (pinned) - install base-bytes base [required by ocplib-endian] - install conf-pkg-config 4 [required by archive] - install cppo 1.8.0 [required by lwt] - install csexp 1.5.2 [required by dune-configurator] - install dune 3.17.2 [required by archive-lwt] - install dune-configurator 3.17.2 [required by archive, lwt] - install fileutils 0.6.6 [required by archive] - install lwt 5.9.0 [required by archive-lwt] - install ocamlfind 1.9.8 [required by base-bytes] - install ocplib-endian 1.2 [required by lwt] The following system packages will first need to be installed: libarchive-devel <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> opam believes some required external dependencies are missing. opam can: > 1. Run yum to install them (may need root/sudo access) 2. Display the recommended yum 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 "yum" "install" "-y" "libarchive-devel" - Updating and loading repositories: - Repositories loaded. - Package Arch Version Repository Size - Installing: - libarchive-devel x86_64 3.7.4-4.fc41 updates 178.9 KiB - Installing dependencies: - openssl-devel x86_64 1:3.2.4-1.fc41 updates 4.3 MiB - - Transaction Summary: - Installing: 2 packages - - Total size of inbound packages is 3 MiB. Need to download 3 MiB. - After this operation, 4 MiB extra will be used (install 4 MiB, remove 0 B). - [1/2] libarchive-devel-0:3.7.4-4.fc41.x 100% | 808.4 KiB/s | 133.4 KiB | 00m00s - [2/2] openssl-devel-1:3.2.4-1.fc41.x86_ 100% | 8.5 MiB/s | 2.8 MiB | 00m00s - -------------------------------------------------------------------------------- - [2/2] Total 100% | 6.9 MiB/s | 2.9 MiB | 00m00s - Running transaction - [1/4] Verify package files 100% | 71.0 B/s | 2.0 B | 00m00s - [2/4] Prepare transaction 100% | 21.0 B/s | 2.0 B | 00m00s - [3/4] Installing openssl-devel-1:3.2.4- 100% | 105.9 MiB/s | 5.2 MiB | 00m00s - [4/4] Installing libarchive-devel-0:3.7 100% | 3.0 MiB/s | 185.5 KiB | 00m00s - Complete! + /usr/bin/rpm "-q" "--whatprovides" "libarchive-devel" - libarchive-devel-3.7.4-4.fc41.x86_64 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved archive.3.7.2+5, archive-lwt.3.7.2+5 (cached) -> retrieved cppo.1.8.0 (cached) -> retrieved csexp.1.5.2 (cached) -> installed conf-pkg-config.4 -> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached) -> retrieved fileutils.0.6.6 (cached) -> retrieved lwt.5.9.0 (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.17.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.17.2 -> installed archive.3.7.2+5 -> installed lwt.5.9.0 -> installed archive-lwt.3.7.2+5 Done. # To update the current shell environment, run: eval $(opam env) 2025-02-27 14:46.29 ---> saved as "b6e669a2438435cf2791e73e140ca84674ce33d31908b3c848014ff585aaa1ea" /home/opam: (run (network host) (shell "(opam reinstall --with-test archive-lwt.3.7.2+5) || true")) The following actions will be performed: === recompile 1 package - recompile archive-lwt 3.7.2+5 (pinned) === install 4 packages - install extlib 1.8.0 [required by archive-lwt] - install ounit2 2.2.7 [required by archive-lwt] - install seq base [required by ounit2] - install stdlib-shims 0.3.0 [required by ounit2] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved extlib.1.8.0 (https://github.com/ygrek/ocaml-extlib/releases/download/1.8.0/extlib-1.8.0.tar.gz) -> retrieved ounit2.2.2.7 (https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz) -> retrieved seq.base (2 extra sources) -> retrieved seq.base (2 extra sources) -> installed seq.base -> installed extlib.1.8.0 -> retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz) -> removed archive-lwt.3.7.2+5 -> installed stdlib-shims.0.3.0 -> installed ounit2.2.2.7 -> installed archive-lwt.3.7.2+5 Done. # To update the current shell environment, run: eval $(opam env) 2025-02-27 14:46.45 ---> saved as "5caeba144a904610dc7543d991d69245b0bbbcc3f2499f5a5f0056299920e4f7" /home/opam: (run (shell "opam reinstall --with-test --verbose archive-lwt.3.7.2+5;\ \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 \"\\\"fedora-41\\\"\"; 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+5' && 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 - recompile archive-lwt 3.7.2+5 (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" "39" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/archive-lwt.3.7.2+5) - (cd _build/default/test && ./test.exe) - .... - Ran: 4 tests in: 0.01 seconds. - OK -> compiled archive-lwt.3.7.2+5 -> removed archive-lwt.3.7.2+5 -> installed archive-lwt.3.7.2+5 Done. # To update the current shell environment, run: eval $(opam env) 2025-02-27 14:46.55 ---> saved as "6193db64e033332cf8ce25cc557dcea002de35793252665b46bbd48c5a7fe7e3" Job succeeded 2025-02-27 14:47.03: Job succeeded