Build:
- 0
2025-01-17 16:34.28: New job: test git.3.14.0, using opam dev from https://github.com/ocaml/opam-repository.git#refs/pull/27287/head (b6a5dd9919a7c05ec7d6f0b92249a786f12b0529) on ubuntu-24.04-ocaml-5.3/riscv64 To reproduce locally: cd $(mktemp -d) git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27287/head" && git reset --hard b6a5dd99 git fetch origin master git merge --no-edit 6ed188dd22d28b2edbd14ae841381abc9701ca42 cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:e58a9ea7eabb8076710781050ff0de9194e9c846c6b0dcfc71b879a1e9de8ae1 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 git.3.14.0 3.14.0 RUN opam reinstall git.3.14.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 "\"ubuntu-24.04\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'git.3.14.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 git.3.14.0) || true RUN opam reinstall --with-test --verbose git.3.14.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 "\"ubuntu-24.04\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'git.3.14.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 . 2025-01-17 16:34.28: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:e58a9ea7eabb8076710781050ff0de9194e9c846c6b0dcfc71b879a1e9de8ae1-git.3.14.0-b6a5dd9919a7c05ec7d6f0b92249a786f12b0529" 2025-01-17 16:34.28: Using OBuilder spec: ((from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:e58a9ea7eabb8076710781050ff0de9194e9c846c6b0dcfc71b879a1e9de8ae1) (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 git.3.14.0 3.14.0")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall git.3.14.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 \"\\\"ubuntu-24.04\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'git.3.14.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 git.3.14.0) || true")) (run (shell "opam reinstall --with-test --verbose git.3.14.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 \"\\\"ubuntu-24.04\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'git.3.14.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) ) 2025-01-17 16:34.28: Connecting to build cluster… 2025-01-17 16:34.28: Waiting for resource in pool OCluster 2025-01-17 16:34.33: Waiting for worker… 2025-01-18 03:11.27: Got resource from pool OCluster Building on riscv-bm-a2.sw.ocaml.org All commits already cached Updating files: 10% (2965/28950) Updating files: 11% (3185/28950) Updating files: 12% (3474/28950) Updating files: 13% (3764/28950) Updating files: 14% (4053/28950) Updating files: 15% (4343/28950) Updating files: 16% (4632/28950) Updating files: 17% (4922/28950) Updating files: 18% (5211/28950) Updating files: 19% (5501/28950) Updating files: 19% (5739/28950) Updating files: 20% (5790/28950) Updating files: 21% (6080/28950) Updating files: 22% (6369/28950) Updating files: 23% (6659/28950) Updating files: 24% (6948/28950) Updating files: 25% (7238/28950) Updating files: 26% (7527/28950) Updating files: 27% (7817/28950) Updating files: 28% (8106/28950) Updating files: 29% (8396/28950) Updating files: 29% (8560/28950) Updating files: 30% (8685/28950) Updating files: 31% (8975/28950) Updating files: 32% (9264/28950) Updating files: 33% (9554/28950) Updating files: 34% (9843/28950) Updating files: 35% (10133/28950) Updating files: 36% (10422/28950) Updating files: 37% (10712/28950) Updating files: 38% (11001/28950) Updating files: 38% (11166/28950) Updating files: 39% (11291/28950) Updating files: 40% (11580/28950) Updating files: 41% (11870/28950) Updating files: 42% (12159/28950) Updating files: 43% (12449/28950) Updating files: 44% (12738/28950) Updating files: 45% (13028/28950) Updating files: 46% (13317/28950) Updating files: 47% (13607/28950) Updating files: 47% (13744/28950) Updating files: 48% (13896/28950) Updating files: 49% (14186/28950) Updating files: 50% (14475/28950) Updating files: 51% (14765/28950) Updating files: 52% (15054/28950) Updating files: 53% (15344/28950) Updating files: 54% (15633/28950) Updating files: 55% (15923/28950) Updating files: 55% (15974/28950) Updating files: 56% (16212/28950) Updating files: 57% (16502/28950) Updating files: 58% (16791/28950) Updating files: 59% (17081/28950) Updating files: 60% (17370/28950) Updating files: 61% (17660/28950) Updating files: 62% (17949/28950) Updating files: 63% (18239/28950) Updating files: 64% (18528/28950) Updating files: 64% (18552/28950) Updating files: 65% (18818/28950) Updating files: 66% (19107/28950) Updating files: 67% (19397/28950) Updating files: 68% (19686/28950) Updating files: 69% (19976/28950) Updating files: 70% (20265/28950) Updating files: 71% (20555/28950) Updating files: 72% (20844/28950) Updating files: 72% (21061/28950) Updating files: 73% (21134/28950) Updating files: 74% (21423/28950) Updating files: 75% (21713/28950) Updating files: 76% (22002/28950) Updating files: 77% (22292/28950) Updating files: 78% (22581/28950) Updating files: 79% (22871/28950) Updating files: 80% (23160/28950) Updating files: 81% (23450/28950) Updating files: 81% (23662/28950) Updating files: 82% (23739/28950) Updating files: 83% (24029/28950) Updating files: 84% (24318/28950) Updating files: 85% (24608/28950) Updating files: 86% (24897/28950) Updating files: 87% (25187/28950) Updating files: 88% (25476/28950) Updating files: 89% (25766/28950) Updating files: 90% (26055/28950) Updating files: 90% (26187/28950) Updating files: 91% (26345/28950) Updating files: 92% (26634/28950) Updating files: 93% (26924/28950) Updating files: 94% (27213/28950) Updating files: 95% (27503/28950) Updating files: 96% (27792/28950) Updating files: 97% (28082/28950) Updating files: 98% (28371/28950) Updating files: 99% (28661/28950) Updating files: 99% (28692/28950) Updating files: 100% (28950/28950) Updating files: 100% (28950/28950), done. HEAD is now at 6ed188dd22 Merge pull request #27278 from proux01/coq_8_20_1 Merge made by the 'ort' strategy. packages/docteur-solo5/docteur-solo5.0.0.2/opam | 2 +- packages/docteur-solo5/docteur-solo5.0.0.3/opam | 2 +- packages/docteur-solo5/docteur-solo5.0.0.4/opam | 2 +- packages/docteur-solo5/docteur-solo5.0.0.5/opam | 2 +- packages/docteur-solo5/docteur-solo5.0.0.6/opam | 2 +- packages/docteur-solo5/docteur-solo5.0.0.7/opam | 2 +- packages/docteur-unix/docteur-unix.0.0.2/opam | 2 +- packages/docteur-unix/docteur-unix.0.0.3/opam | 2 +- packages/docteur-unix/docteur-unix.0.0.4/opam | 2 +- packages/docteur-unix/docteur-unix.0.0.5/opam | 2 +- packages/docteur-unix/docteur-unix.0.0.6/opam | 2 +- packages/docteur-unix/docteur-unix.0.0.7/opam | 2 +- packages/docteur/docteur.0.0.1/opam | 2 +- packages/docteur/docteur.0.0.2/opam | 2 +- packages/docteur/docteur.0.0.3/opam | 2 +- packages/docteur/docteur.0.0.4/opam | 2 +- packages/docteur/docteur.0.0.5/opam | 2 +- packages/docteur/docteur.0.0.6/opam | 2 +- packages/docteur/docteur.0.0.7/opam | 2 +- packages/git-kv/git-kv.0.0.1/opam | 2 +- packages/git-kv/git-kv.0.0.2/opam | 2 +- packages/git-kv/git-kv.0.0.3/opam | 2 +- packages/git-kv/git-kv.0.0.4/opam | 4 ++-- packages/git-kv/git-kv.0.0.5/opam | 4 ++-- packages/git-kv/git-kv.0.1.0/opam | 4 ++-- packages/git-kv/git-kv.0.1.1/opam | 4 ++-- packages/git-kv/git-kv.0.1.2/opam | 4 ++-- packages/git-unix/git-unix.3.16.1/opam | 2 +- packages/git-unix/git-unix.3.17.0/opam | 2 +- packages/git/git.3.10.0/opam | 4 ++-- packages/git/git.3.10.1/opam | 4 ++-- packages/git/git.3.11.0/opam | 4 ++-- packages/git/git.3.12.0/opam | 4 ++-- packages/git/git.3.13.0/opam | 4 ++-- packages/git/git.3.14.0/opam | 4 ++-- packages/git/git.3.15.0/opam | 4 ++-- packages/git/git.3.16.0/opam | 4 ++-- packages/git/git.3.16.1/opam | 4 ++-- packages/git/git.3.17.0/opam | 4 ++-- packages/git/git.3.2.0/opam | 6 +++--- packages/git/git.3.4.0/opam | 4 ++-- packages/git/git.3.5.0/opam | 4 ++-- packages/git/git.3.6.0/opam | 4 ++-- packages/git/git.3.7.0/opam | 4 ++-- packages/git/git.3.8.0/opam | 4 ++-- packages/git/git.3.9.0/opam | 4 ++-- packages/git/git.3.9.1/opam | 4 ++-- 47 files changed, 71 insertions(+), 71 deletions(-) (from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:e58a9ea7eabb8076710781050ff0de9194e9c846c6b0dcfc71b879a1e9de8ae1) 2025-01-18 03:11.44 ---> using "478cb9f68550239721db44f43a79af35839a6c7207e000115c864210bddcfc0d" 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-01-18 03:11.44 ---> using "3606c0afdfdf2d44665a647ab62d058adb8414c48b367c436155bc81fc5beab8" 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 Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from file:///home/opam/opam-repository 2025-01-18 03:11.44 ---> using "9419b3188a01c2a418be19d311c91eb13a58b3373bafcb2d3fbe1ea4dd88369a" 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.4.0~alpha1~dev (f36a1c8f9d8c18dc3651722f73864aad12f527a2) # self-upgrade no # system arch=riscv64 os=linux os-distribution=ubuntu os-version=24.04 # solver builtin-0install # install-criteria -changed,-count[avoid-version,solution] # upgrade-criteria -count[avoid-version,solution] # jobs 3 # repositories 1 (local) # 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-01-18 03:11.44 ---> using "3f39f6b65013800a1c7c0c14f9cfb6f79ba008d793946581992dac46fcd21aa0" 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-01-18 03:11.44 ---> using "dfd5a0604d20750aac52444952c41502cf3d3f19841a50f464d5dc7ef7f0d50c" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2025-01-18 03:11.52 ---> using "9c62a6f89261a27847528fb209bd3901991f8e84af453239f096eddc1c7a0f46" from cache /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-01-18 03:11.52 ---> using "709d442f258a48e1db40cf71c5a271c2ec021c8ef9549c6dc185161d656dc0f7" from cache /home/opam: (run (network host) (shell "opam update --depexts || true")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease - Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB] - Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB] - Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB] - Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1011 kB] - Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [597 kB] - Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [358 kB] - Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [800 kB] - Fetched 3144 kB in 2s (1900 kB/s) - Reading package lists... - 2025-01-18 03:11.52 ---> using "6da9db3a3afa0755511c68c0504c6e2f12354b7f9f2b97a223d0ad7327f77a6b" from cache /home/opam: (run (shell "opam pin add -k version -yn git.3.14.0 3.14.0")) git is now pinned to version 3.14.0 2025-01-18 03:11.56 ---> saved as "1f0a30f9a6b829301ab5f2b51959f6582344f58407ee951b2b58c7819dd41d20" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall git.3.14.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 \"\\\"ubuntu-24.04\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'git.3.14.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) git.3.14.0 is not installed. Install it? [Y/n] y The following actions will be performed: === install 50 packages - install angstrom 0.16.1 [required by git] - install astring 0.8.5 [required by git] - install base-bytes base [required by ocplib-endian] - install base64 3.5.1 [required by git] - install bigstringaf 0.10.0 [required by git] - install bos 0.2.1 [required by carton] - install carton 0.7.2 [required by git] - install carton-git 0.7.2 [required by git] - install carton-lwt 0.7.2 [required by git] - install checkseum 0.5.2 [required by git] - install cmdliner 1.3.0 [required by carton, emile] - install cppo 1.8.0 [required by lwt] - install csexp 1.5.2 [required by dune-configurator] - install cstruct 6.2.0 [required by git] - install decompress 1.5.3 [required by git] - install digestif 1.2.0 [required by git] - install domain-name 0.4.0 [required by git] - install duff 0.5 [required by carton] - install dune 3.17.1 [required by git] - install dune-configurator 3.17.1 [required by checkseum, bigstringaf, hxd] - install emile 1.1 [required by git] - install encore 0.8 [required by git] - install eqaf 0.10 [required by digestif] - install fmt 0.9.0 [required by git] - install fpath 0.7.3 [required by git] - install git 3.14.0 (pinned) - install hxd 0.3.3 [required by git] - install ipaddr 5.6.0 [required by git] - install ke 0.6 [required by git] - install logs 0.7.0 [required by git] - install lwt 5.9.0 [required by git] - install macaddr 5.6.0 [required by ipaddr] - install mimic 0.0.9 [required by git] - install mirage-flow 4.0.2 [required by git] - install ocaml-syntax-shims 1.0.0 [required by angstrom] - install ocamlbuild 0.15.0 [required by astring] - install ocamlfind 1.9.6 [required by astring] - install ocamlgraph 2.1.0 [required by git] - install ocplib-endian 1.2 [required by lwt] - install optint 0.3.0 [required by git] - install pecu 0.7 [required by emile] - install psq 0.2.1 [required by git] - install result 1.5 [required by git] - install rresult 0.7.0 [required by git] - install seq base [required by psq] - install stdlib-shims 0.3.0 [required by ocamlgraph] - install stringext 1.6.0 [required by uri] - install topkg 1.0.7 [required by astring] - install uri 4.4.0 [required by git] - install uutf 1.0.3 [required by emile] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved angstrom.0.16.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved base64.3.5.1 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved carton.0.7.2, carton-git.0.7.2, carton-lwt.0.7.2 (cached) -> retrieved checkseum.0.5.2 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved cppo.1.8.0 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved cstruct.6.2.0 (cached) -> retrieved decompress.1.5.3 (cached) -> retrieved digestif.1.2.0 (cached) -> retrieved domain-name.0.4.0 (cached) -> retrieved duff.0.5 (cached) -> retrieved dune.3.17.1, dune-configurator.3.17.1 (cached) -> retrieved emile.1.1 (cached) -> retrieved encore.0.8 (cached) -> retrieved eqaf.0.10 (cached) -> retrieved fmt.0.9.0 (cached) -> retrieved fpath.0.7.3 (cached) -> installed cmdliner.1.3.0 -> retrieved git.3.14.0 (cached) -> retrieved hxd.0.3.3 (cached) -> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached) -> retrieved ke.0.6 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved lwt.5.9.0 (cached) -> retrieved mimic.0.0.9 (cached) -> retrieved mirage-flow.4.0.2 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocamlbuild.0.15.0 (cached) -> retrieved ocamlfind.1.9.6 (cached) -> retrieved ocamlgraph.2.1.0 (cached) -> retrieved ocplib-endian.1.2 (cached) -> retrieved optint.0.3.0 (cached) -> retrieved pecu.0.7 (cached) -> retrieved psq.0.2.1 (cached) -> retrieved result.1.5 (cached) -> retrieved rresult.0.7.0 (cached) -> retrieved seq.base (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved stringext.1.6.0 (cached) -> retrieved topkg.1.0.7 (cached) -> retrieved uri.4.4.0 (cached) -> retrieved uutf.1.0.3 (cached) -> installed ocamlfind.1.9.6 -> installed base-bytes.base -> installed seq.base -> installed ocamlbuild.0.15.0 -> installed topkg.1.0.7 -> installed fmt.0.9.0 -> installed astring.0.8.5 -> installed rresult.0.7.0 -> installed fpath.0.7.3 -> installed uutf.1.0.3 -> installed dune.3.17.1 -> installed csexp.1.5.2 -> installed base64.3.5.1 -> installed cstruct.6.2.0 -> installed domain-name.0.4.0 -> installed cppo.1.8.0 -> installed duff.0.5 -> installed ke.0.6 -> installed eqaf.0.10 -> installed macaddr.5.6.0 -> installed dune-configurator.3.17.1 -> installed ocaml-syntax-shims.1.0.0 -> installed ipaddr.5.6.0 -> installed ocplib-endian.1.2 -> installed bigstringaf.0.10.0 -> installed optint.0.3.0 -> installed digestif.1.2.0 -> installed angstrom.0.16.1 -> installed pecu.0.7 -> installed checkseum.0.5.2 -> installed encore.0.8 -> installed emile.1.1 -> installed psq.0.2.1 -> installed result.1.5 -> installed stdlib-shims.0.3.0 -> installed stringext.1.6.0 -> installed decompress.1.5.3 -> installed uri.4.4.0 -> installed lwt.5.9.0 -> installed ocamlgraph.2.1.0 -> installed mirage-flow.4.0.2 -> installed logs.0.7.0 -> installed hxd.0.3.3 -> installed mimic.0.0.9 -> installed bos.0.2.1 -> installed carton.0.7.2 -> installed carton-lwt.0.7.2 -> installed carton-git.0.7.2 -> installed git.3.14.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-01-18 03:19.18 ---> saved as "62dfb39868a4cc9af1953b4e88e59c6efa382d93ee179fd6b9c401878b1381a4" /home/opam: (run (network host) (shell "(opam reinstall --with-test git.3.14.0) || true")) The following actions will be performed: === downgrade 1 package - downgrade eqaf 0.10 to 0.9 [required by mirage-crypto] === recompile 5 packages - recompile carton 0.7.2 [uses digestif] - recompile carton-git 0.7.2 [uses carton] - recompile carton-lwt 0.7.2 [uses carton] - recompile digestif 1.2.0 [uses eqaf] - recompile git 3.14.0 (pinned) === install 8 packages - install afl-persistent 1.4 [required by crowbar] - install alcotest 1.8.0 [required by git] - install alcotest-lwt 1.8.0 [required by git] - install crowbar 0.2.1 [required by git] - install duration 0.2.1 [required by mirage-crypto-rng] - install mirage-crypto 0.11.3 [required by mirage-crypto-rng] - install mirage-crypto-rng 0.11.3 [required by git] - install re 1.12.0 [required by alcotest] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved afl-persistent.1.4 (https://github.com/stedolan/ocaml-afl-persistent/archive/refs/tags/v1.4.tar.gz) -> retrieved alcotest.1.8.0, alcotest-lwt.1.8.0 (https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz) -> installed afl-persistent.1.4 -> retrieved carton.0.7.2, carton-git.0.7.2, carton-lwt.0.7.2 (https://github.com/robur-coop/carton/releases/download/0.7.2/carton-0.7.2.tbz) -> retrieved crowbar.0.2.1 (https://github.com/stedolan/crowbar/archive/v0.2.1.tar.gz) -> installed crowbar.0.2.1 -> retrieved digestif.1.2.0 (https://github.com/mirage/digestif/releases/download/v1.2.0/digestif-1.2.0.tbz) -> retrieved duration.0.2.1 (https://github.com/hannesm/duration/releases/download/v0.2.1/duration-0.2.1.tbz) -> installed duration.0.2.1 -> retrieved eqaf.0.9 (https://github.com/mirage/eqaf/releases/download/v0.9/eqaf-0.9.tbz) -> retrieved mirage-crypto.0.11.3, mirage-crypto-rng.0.11.3 (https://github.com/mirage/mirage-crypto/releases/download/v0.11.3/mirage-crypto-0.11.3.tbz) -> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz) -> removed git.3.14.0 -> removed carton-git.0.7.2 -> removed carton-lwt.0.7.2 -> removed carton.0.7.2 -> removed digestif.1.2.0 -> removed eqaf.0.10 -> installed eqaf.0.9 -> installed re.1.12.0 -> installed alcotest.1.8.0 -> installed alcotest-lwt.1.8.0 -> installed digestif.1.2.0 -> installed mirage-crypto.0.11.3 -> installed carton.0.7.2 -> installed mirage-crypto-rng.0.11.3 -> installed carton-lwt.0.7.2 -> installed carton-git.0.7.2 -> installed git.3.14.0 Done. <><> afl-persistent.1.4 installed successfully ><><><><><><><><><><><><><><><><> => afl-persistent is installed, but since the current OCaml compiler does not enable AFL instrumentation by default, most packages will not be instrumented and fuzzing with afl-fuzz may not be effective. To globally enable AFL instrumentation, create an OCaml switch like: opam switch create 5.3.0+afl ocaml-variants.5.3.0+options ocaml-option-afl # To update the current shell environment, run: eval $(opam env) 2025-01-18 03:21.28 ---> saved as "dd03e5a38fd02a3ec9f7397dd84d64290bf86aa75571bbcf52ca5225584bc10d" /home/opam: (run (shell "opam reinstall --with-test --verbose git.3.14.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 \"\\\"ubuntu-24.04\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'git.3.14.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 - recompile git 3.14.0 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 2/4: [git: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "git" "-j" "3" (CWD=/home/opam/.opam/5.3/.opam-switch/build/git.3.14.0) Processing 2/4: [git: dune runtest] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "git" (CWD=/home/opam/.opam/5.3/.opam-switch/build/git.3.14.0) - (cd _build/default/test/cstruct_append && ./test.exe --color=always) - Testing `cstruct_append'. - This run has ID `P6NEVE1R'. - - [OK] cstruct_append 0 simple use. - [OK] cstruct_append 1 two contents. - [OK] cstruct_append 2 three contents. - - Full test results in `~/.opam/5.3/.opam-switch/build/git.3.14.0/_build/default/test/cstruct_append/_build/_tests/cstruct_append'. - Test Successful in 0.054s. 3 tests run. - (cd _build/default/test/smart && ./test_edn.exe --color=always) - Testing `smart git endpoint'. - This run has ID `BJY9XF7I'. - - [OK] endpoint 0 edn01. - [OK] endpoint 1 edn02. - [OK] endpoint 2 edn03. - [OK] endpoint 3 edn04. - [OK] endpoint 4 edn05. - [OK] endpoint 5 edn06. - [OK] endpoint 6 edn07. - - Full test results in `~/.opam/5.3/.opam-switch/build/git.3.14.0/_build/default/test/smart/_build/_tests/smart git endpoint'. - Test Successful in 0.011s. 7 tests run. - (cd _build/default/test/tree && ./test.exe --color=always) - Random: [|57420; 41069; 54817; 64253; 63934; 64230; 4054; 6207; 34546; - 20369; 14111; 47443; 31090; 25122; 16285; 17015|]. - Testing `git-tree'. - This run has ID `96JMX0MN'. - - [OK] tree 0 order. - [OK] tree 1 large. - [OK] tree 2 larger. - - Full test results in `~/.opam/5.3/.opam-switch/build/git.3.14.0/_build/default/test/tree/_build/_tests/git-tree'. - Test Successful in 2.127s. 3 tests run. - (cd _build/default/test/value && ./test.exe --color=always) - Testing `git-value'. - This run has ID `FZLWVL7O'. - - [OK] raw 0 to_raw and of_raw_with_header roundtrip. - [OK] raw 1 of_raw when in middle of buffer. - [OK] value 0 lenght_with_header. - - Full test results in `~/.opam/5.3/.opam-switch/build/git.3.14.0/_build/default/test/value/_build/_tests/git-value'. - Test Successful in 0.005s. 3 tests run. - (cd _build/default/fuzz && ./smart.exe) - pkt-line: PASS - - advertised-refs: PASS - - (cd _build/default/test/mem && ./test.exe --color=always) - Random: [|57420; 41069; 54817; 64253; 63934; 64230; 4054; 6207; 34546; - 20369; 14111; 47443; 31090; 25122; 16285; 17015|]. - Testing `store'. - This run has ID `O7SDQWUH'. - - [OK] write 0 blobs. - [OK] write 1 trees. - [OK] write 2 commits. - [OK] write 3 tags. - [OK] find 0 find trees. - [OK] find 1 find commits. - [OK] find 2 find tags. - [OK] reference 0 references. - [OK] reference 1 cycle. - [OK] reference 2 atomic write. - [OK] search 0 search. - [OK] shallows 0 shallows. - - Full test results in `~/.opam/5.3/.opam-switch/build/git.3.14.0/_build/default/test/mem/_build/_tests/store'. - Test Successful in 0.693s. 12 tests run. -> compiled git.3.14.0 -> removed git.3.14.0 -> installed git.3.14.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-01-18 03:22.35 ---> saved as "2712bc9aec293470cedc78475c2c4b1ed9a400b2d932f77f0ab265a6cfaeff2f" Job succeeded 2025-01-18 03:23.23: Job succeeded