(for PR #27974)
2025-06-10 05:13.06: New job: test echo.0.0.5, using opam 2.3 from https://github.com/ocaml/opam-repository.git#refs/pull/27974/head (7e483968a51c396f77b33e9bc30973b129f4facf) 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/27974/head" && git reset --hard 7e483968 git fetch origin master git merge --no-edit 6db96b377f993aa0c7ffb5c06737929e583f3305 cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07 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 echo.0.0.5 0.0.5 RUN opam reinstall echo.0.0.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 "\"ubuntu-24.04\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'echo.0.0.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 echo.0.0.5) || true RUN opam reinstall --with-test --verbose echo.0.0.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 "\"ubuntu-24.04\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'echo.0.0.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-06-10 05:13.06: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07-echo.0.0.5-7e483968a51c396f77b33e9bc30973b129f4facf" 2025-06-10 05:13.06: Using OBuilder spec: ((from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07) (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 echo.0.0.5 0.0.5")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall echo.0.0.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 \"\\\"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\" != 'echo.0.0.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 echo.0.0.5) || true")) (run (shell "opam reinstall --with-test --verbose echo.0.0.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 \"\\\"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\" != 'echo.0.0.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-06-10 05:13.06: Waiting for resource in pool OCluster 2025-06-10 05:13.06: Waiting for worker… 2025-06-10 06:29.10: Got resource from pool OCluster Building on riscv-bm-04.sw.ci.dev All commits already cached Updating files: 11% (2738/23221) Updating files: 12% (2787/23221) Updating files: 13% (3019/23221) Updating files: 14% (3251/23221) Updating files: 15% (3484/23221) Updating files: 16% (3716/23221) Updating files: 17% (3948/23221) Updating files: 18% (4180/23221) Updating files: 19% (4412/23221) Updating files: 20% (4645/23221) Updating files: 21% (4877/23221) Updating files: 22% (5109/23221) Updating files: 22% (5312/23221) Updating files: 23% (5341/23221) Updating files: 24% (5574/23221) Updating files: 25% (5806/23221) Updating files: 26% (6038/23221) Updating files: 27% (6270/23221) Updating files: 28% (6502/23221) Updating files: 29% (6735/23221) Updating files: 30% (6967/23221) Updating files: 31% (7199/23221) Updating files: 32% (7431/23221) Updating files: 33% (7663/23221) Updating files: 34% (7896/23221) Updating files: 34% (8106/23221) Updating files: 35% (8128/23221) Updating files: 36% (8360/23221) Updating files: 37% (8592/23221) Updating files: 38% (8824/23221) Updating files: 39% (9057/23221) Updating files: 40% (9289/23221) Updating files: 41% (9521/23221) Updating files: 42% (9753/23221) Updating files: 43% (9986/23221) Updating files: 44% (10218/23221) Updating files: 45% (10450/23221) Updating files: 45% (10607/23221) Updating files: 46% (10682/23221) Updating files: 47% (10914/23221) Updating files: 48% (11147/23221) Updating files: 49% (11379/23221) Updating files: 50% (11611/23221) Updating files: 51% (11843/23221) Updating files: 52% (12075/23221) Updating files: 53% (12308/23221) Updating files: 54% (12540/23221) Updating files: 55% (12772/23221) Updating files: 55% (12905/23221) Updating files: 56% (13004/23221) Updating files: 57% (13236/23221) Updating files: 58% (13469/23221) Updating files: 59% (13701/23221) Updating files: 60% (13933/23221) Updating files: 61% (14165/23221) Updating files: 62% (14398/23221) Updating files: 63% (14630/23221) Updating files: 64% (14862/23221) Updating files: 65% (15094/23221) Updating files: 65% (15249/23221) Updating files: 66% (15326/23221) Updating files: 67% (15559/23221) Updating files: 68% (15791/23221) Updating files: 69% (16023/23221) Updating files: 70% (16255/23221) Updating files: 71% (16487/23221) Updating files: 72% (16720/23221) Updating files: 73% (16952/23221) Updating files: 74% (17184/23221) Updating files: 75% (17416/23221) Updating files: 75% (17572/23221) Updating files: 76% (17648/23221) Updating files: 77% (17881/23221) Updating files: 78% (18113/23221) Updating files: 79% (18345/23221) Updating files: 80% (18577/23221) Updating files: 81% (18810/23221) Updating files: 82% (19042/23221) Updating files: 83% (19274/23221) Updating files: 84% (19506/23221) Updating files: 85% (19738/23221) Updating files: 86% (19971/23221) Updating files: 86% (20039/23221) Updating files: 87% (20203/23221) Updating files: 88% (20435/23221) Updating files: 89% (20667/23221) Updating files: 90% (20899/23221) Updating files: 91% (21132/23221) Updating files: 92% (21364/23221) Updating files: 93% (21596/23221) Updating files: 94% (21828/23221) Updating files: 95% (22060/23221) Updating files: 96% (22293/23221) Updating files: 96% (22329/23221) Updating files: 97% (22525/23221) Updating files: 98% (22757/23221) Updating files: 99% (22989/23221) Updating files: 100% (23221/23221) Updating files: 100% (23221/23221), done. HEAD is now at 6db96b377f Merge pull request #28003 from punchagan/opam-publish-opam-ci-check-lint.0.1 Merge made by the 'ort' strategy. packages/echo/echo.0.0.5/opam | 53 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 packages/echo/echo.0.0.5/opam (from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07) Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07' locally docker.io/ocaml/opam@sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07: Pulling from ocaml/opam 4ac2db62b9f8: Already exists b9ee46ae4ae0: Already exists fbdb72b776c8: Already exists 28ef53269cc3: Already exists ff9c89d8a812: Already exists e9737cd0d6eb: Already exists 621f7e944f70: Already exists f59bfe8cdaa8: Already exists cc47d5eae396: Already exists 43363c902afe: Already exists 067372ae5826: Already exists 23c0977dbbe0: Already exists cbff9217640d: Already exists 9b5c001f59bd: Already exists dff66bb092aa: Already exists dff66bb092aa: Already exists ef3b04dff481: Already exists ff0a101f83c5: Already exists 926b8f9e6e42: Already exists 9c2c4ca9f40d: Already exists 4f4fb700ef54: Already exists 5aa5e9627347: Already exists 0c6959e4e176: Already exists 0e3a4a9603e1: Already exists 3d6126860658: Already exists bc35ac5eb1fe: Already exists 7e42788d21ac: Already exists 7d1a3933f4c6: Already exists bd652b10152f: Already exists 727992588493: Already exists b188ac72dcca: Already exists bed6ec1794e7: Already exists 5fae3fd9e7e5: Already exists 72c3b5da2f3a: Already exists e77f657f92b8: Already exists 2b32b209c4e2: Already exists ae4e954f3d82: Already exists 26652bad2bc7: Already exists e09a77078a76: Already exists 7ad44d6e659b: Pulling fs layer dd893b576426: Pulling fs layer c78b773f4f5f: Pulling fs layer 90ff65a45687: Pulling fs layer b9d1baff6406: Pulling fs layer 3c0f78a14197: Pulling fs layer 40ff287d15e6: Pulling fs layer 90ff65a45687: Waiting b9d1baff6406: Waiting 3c0f78a14197: Waiting 40ff287d15e6: Waiting dd893b576426: Verifying Checksum dd893b576426: Download complete 7ad44d6e659b: Download complete 7ad44d6e659b: Pull complete dd893b576426: Pull complete c78b773f4f5f: Verifying Checksum c78b773f4f5f: Download complete b9d1baff6406: Download complete c78b773f4f5f: Pull complete 40ff287d15e6: Verifying Checksum 40ff287d15e6: Download complete 3c0f78a14197: Verifying Checksum 3c0f78a14197: Download complete 90ff65a45687: Verifying Checksum 90ff65a45687: Download complete 90ff65a45687: Pull complete b9d1baff6406: Pull complete 3c0f78a14197: Pull complete 40ff287d15e6: Pull complete Digest: sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07 Status: Downloaded newer image for ocaml/opam@sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07 2025-06-10 06:29.24 ---> using "74834d15fa3624c49ba6bf511342992f186b46881fdeeb66e725523dda8ae613" 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-06-10 06:29.24 ---> using "cf933a4b4fe5801182e9fda2cd1ba98ed9b225f136503b32e130377b7af83083" 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] Initialised 2025-06-10 06:29.24 ---> using "e90adb15bd529e872b5dfa268dfa05b3b6b350fa7894a4f5b0f91442a6032297" 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=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 (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-06-10 06:29.24 ---> using "bc79f4958dc4fae8fdf12d124da229c9763418914b0fec21f166d7f49a9e99cb" 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-06-10 06:29.24 ---> using "ad2745fb00440d287c6e7138e853c760156fd104f612f7f71ff3aa7e61dc814d" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2025-06-10 06:29.31 ---> using "57dfea394234562b903d6ee92c27d80f798da6159d7bec4365f1379a60b4c08f" from cache /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-06-10 06:29.31 ---> using "7bf281f4ce83620f0b06fd78c670d3ebb4cea85bcc819ff7ea93181177fd5f41" 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/restricted riscv64 Packages [6220 B] - Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1120 kB] - Get:7 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [750 kB] - Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [844 kB] - Get:9 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [452 kB] - Fetched 3552 kB in 3s (1408 kB/s) - Reading package lists... - 2025-06-10 06:29.31 ---> using "319af6e6b13b98c1ae310f287af77bd6f894461904e00a0f51a35d0a86a32793" from cache /home/opam: (run (shell "opam pin add -k version -yn echo.0.0.5 0.0.5")) echo is now pinned to version 0.0.5 2025-06-10 06:29.31 ---> using "1f133834d31cfc10c009e7bf9f0f8940e22f26b15ca29ce46f35fa8c6e4243bb" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall echo.0.0.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 \"\\\"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\" != 'echo.0.0.5' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) echo.0.0.5 is not installed. Install it? [y/n] y The following actions will be performed: === install 26 packages - install alcotest 1.9.0 [required by echo] - install astring 0.8.5 [required by alcotest] - install base v0.17.2 [required by echo] - install bigarray-compat 1.1.0 [required by ctypes] - install cmdliner 1.3.0 [required by alcotest] - install conf-libffi 2.0.0 [required by ctypes-foreign] - install conf-pkg-config 4 [required by ctypes-foreign] - install csexp 1.5.2 [required by dune-configurator] - install ctypes 0.23.0 [required by echo] - install ctypes-foreign 0.23.0 [required by echo] - install dune 3.19.0 [required by echo] - install dune-configurator 3.19.0 [required by ctypes, base, ctypes-foreign] - install echo 0.0.5 (pinned) - install fmt 0.10.0 [required by echo] - install integers 0.7.0 [required by ctypes] - install ocaml-syntax-shims 1.0.0 [required by alcotest] - install ocaml_intrinsics_kernel v0.17.1 [required by base] - install ocamlbuild 0.16.1 [required by fmt, astring, uutf] - install ocamlfind 1.9.8 [required by fmt, astring, uutf] - install re 1.12.0 [required by alcotest] - install seq base [required by re] - install sexplib0 v0.17.0 [required by base] - install stdio v0.17.0 [required by echo] - install stdlib-shims 0.3.0 [required by alcotest] - install topkg 1.0.8 [required by fmt, astring, uutf] - install uutf 1.0.4 [required by alcotest] The following system packages will first need to be installed: libffi-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" "libffi-dev" "pkg-config" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libpkgconf3:riscv64. - (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 ... 16279 files and directories currently installed.) - Preparing to unpack .../libpkgconf3_1.8.1-2build1_riscv64.deb ... - Unpacking libpkgconf3:riscv64 (1.8.1-2build1) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../pkgconf-bin_1.8.1-2build1_riscv64.deb ... - Unpacking pkgconf-bin (1.8.1-2build1) ... - Selecting previously unselected package pkgconf:riscv64. - Preparing to unpack .../pkgconf_1.8.1-2build1_riscv64.deb ... - Unpacking pkgconf:riscv64 (1.8.1-2build1) ... - Selecting previously unselected package pkg-config:riscv64. - Preparing to unpack .../pkg-config_1.8.1-2build1_riscv64.deb ... - Unpacking pkg-config:riscv64 (1.8.1-2build1) ... - Selecting previously unselected package libffi-dev:riscv64. - Preparing to unpack .../libffi-dev_3.4.6-1build1_riscv64.deb ... - Unpacking libffi-dev:riscv64 (3.4.6-1build1) ... - Setting up libffi-dev:riscv64 (3.4.6-1build1) ... - Setting up libpkgconf3:riscv64 (1.8.1-2build1) ... - Setting up pkgconf-bin (1.8.1-2build1) ... - Setting up pkgconf:riscv64 (1.8.1-2build1) ... - Setting up pkg-config:riscv64 (1.8.1-2build1) ... - Processing triggers for libc-bin (2.39-0ubuntu8.4) ... <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved alcotest.1.9.0 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved base.v0.17.2 (cached) -> retrieved bigarray-compat.1.1.0 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved csexp.1.5.2 (cached) -> installed conf-pkg-config.4 -> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0 (cached) -> installed conf-libffi.2.0.0 -> retrieved dune.3.19.0, dune-configurator.3.19.0 (cached) -> retrieved echo.0.0.5 (cached) -> retrieved fmt.0.10.0 (cached) -> retrieved integers.0.7.0 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> installed cmdliner.1.3.0 -> retrieved ocamlfind.1.9.8 (cached) -> retrieved re.1.12.0 (cached) -> retrieved seq.base (cached) -> retrieved sexplib0.v0.17.0 (cached) -> retrieved stdio.v0.17.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved topkg.1.0.8 (cached) -> retrieved uutf.1.0.4 (cached) -> installed ocamlfind.1.9.8 -> installed seq.base -> installed ocamlbuild.0.16.1 -> installed topkg.1.0.8 -> installed fmt.0.10.0 -> installed astring.0.8.5 -> installed uutf.1.0.4 -> installed dune.3.19.0 -> installed csexp.1.5.2 -> installed bigarray-compat.1.1.0 -> installed ocaml_intrinsics_kernel.v0.17.1 -> installed ocaml-syntax-shims.1.0.0 -> installed sexplib0.v0.17.0 -> installed stdlib-shims.0.3.0 -> installed re.1.12.0 -> installed dune-configurator.3.19.0 -> installed integers.0.7.0 -> installed alcotest.1.9.0 -> installed ctypes.0.23.0 -> installed ctypes-foreign.0.23.0 -> installed base.v0.17.2 -> installed stdio.v0.17.0 -> installed echo.0.0.5 Done. # To update the current shell environment, run: eval $(opam env) 2025-06-10 06:29.31 ---> using "6e78b97f7649885ac4a2e123c0ef1850fcde5a5e39e71f6bc50eec1948a09700" from cache /home/opam: (run (network host) (shell "(opam reinstall --with-test echo.0.0.5) || true")) The following actions will be performed: === recompile 1 package - recompile echo 0.0.5 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> removed echo.0.0.5 -> installed echo.0.0.5 Done. # To update the current shell environment, run: eval $(opam env) 2025-06-10 06:30.02 ---> saved as "8865c0771f7e8d4fc37de79523067feb712de2086e1e02cd2e87ab53fb4c6267" /home/opam: (run (shell "opam reinstall --with-test --verbose echo.0.0.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 \"\\\"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\" != 'echo.0.0.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 echo 0.0.5 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 2/4: [echo: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "echo" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/echo.0.0.5) - (cd _build/default/test && ./test_echo.exe) - Testing `Echo tests'. - This run has ID `VODNCS20'. - - [OK] OCaml Logging 0 Echo.xxx from OCaml side. - [OK] C Logging 0 echo_xxx from C side. - - Full test results in `~/.opam/5.3/.opam-switch/build/echo.0.0.5/_build/default/test/_build/_tests/Echo tests'. - Test Successful in 0.008s. 2 tests run. -> compiled echo.0.0.5 -> removed echo.0.0.5 -> installed echo.0.0.5 Done. # To update the current shell environment, run: eval $(opam env) 2025-06-10 06:30.32 ---> saved as "07356497f59cfabb990be3c65df359619506492fde60fd36e2679cde85d53385" Job succeeded 2025-06-10 06:31.14: Job succeeded