(not at the head of any monitored branch or PR)
2025-06-10 05:13.04: 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 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/27974/head" && git reset --hard 7e483968
git fetch origin master
git merge --no-edit 6db96b377f993aa0c7ffb5c06737929e583f3305
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-11-ocaml-4.14@sha256:4684c57166618e89ea12bfbb6ac13004d3ba00891d4fd402628f333ca6b15b51
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 "\"debian-11\""; 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 "\"debian-11\""; 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.04: Using cache hint "ocaml/opam:debian-11-ocaml-4.14@sha256:4684c57166618e89ea12bfbb6ac13004d3ba00891d4fd402628f333ca6b15b51-echo.0.0.5-7e483968a51c396f77b33e9bc30973b129f4facf"
2025-06-10 05:13.04: Using OBuilder spec:
((from ocaml/opam:debian-11-ocaml-4.14@sha256:4684c57166618e89ea12bfbb6ac13004d3ba00891d4fd402628f333ca6b15b51)
 (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 \"\\\"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\" != '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 \"\\\"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\" != '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.04: Waiting for resource in pool OCluster
2025-06-10 05:13.04: Waiting for worker…
2025-06-10 05:13.04: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
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.
Auto packing the repository in background for optimum performance.
See "git help gc" for manual housekeeping.
 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:debian-11-ocaml-4.14@sha256:4684c57166618e89ea12bfbb6ac13004d3ba00891d4fd402628f333ca6b15b51)
Unable to find image 'ocaml/opam:debian-11-ocaml-4.14@sha256:4684c57166618e89ea12bfbb6ac13004d3ba00891d4fd402628f333ca6b15b51' locally
docker.io/ocaml/opam@sha256:4684c57166618e89ea12bfbb6ac13004d3ba00891d4fd402628f333ca6b15b51: Pulling from ocaml/opam
056895620c2b: Already exists
8c4f97747515: Pulling fs layer
cb7bf4d2e6b5: Pulling fs layer
49b9c6b00620: Pulling fs layer
165c90299891: Pulling fs layer
49b9c6b00620: Waiting
8c4f97747515: Waiting
165c90299891: Waiting
cb7bf4d2e6b5: Waiting
cb7bf4d2e6b5: Verifying Checksum
cb7bf4d2e6b5: Download complete
49b9c6b00620: Download complete
165c90299891: Download complete
8c4f97747515: Verifying Checksum
8c4f97747515: Download complete
8c4f97747515: Pull complete
cb7bf4d2e6b5: Pull complete
49b9c6b00620: Pull complete
165c90299891: Pull complete
Digest: sha256:4684c57166618e89ea12bfbb6ac13004d3ba00891d4fd402628f333ca6b15b51
Status: Downloaded newer image for ocaml/opam@sha256:4684c57166618e89ea12bfbb6ac13004d3ba00891d4fd402628f333ca6b15b51
2025-06-10 05:13.14 ---> using "63ebbb4c9cfe46108293eedab5c92bffd6e57b0847dcb038a183f52fe606997f" 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 05:13.14 ---> using "f3410df69399d24f8200c279574ba025cb79db902c0c27369cb81e7015a3ea9a" 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.

Continue? [y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-06-10 05:13.14 ---> using "fe64a1ad395090e8e0572ab0b1388b7759f1fd14b2c739f9c39916307ad431a4" 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                 255
# 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-06-10 05:13.14 ---> using "5059c8b3ca841064a26ef798210b64d561d314fc93ac41f8fa32207865fc2ce1" 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 05:13.14 ---> using "9addbac811d8317b242db40ac120349141b2bd5eb45809a698b82daf27d6d310" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-06-10 05:13.28 ---> saved as "abda0076555647aa3aa76711997d4148703edb4d06daf9d2cb2dde562fc1147e"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-06-10 05:13.50 ---> saved as "9d1d0d4fb9a33322c1bde262ce84b6e198a735febec303c4b218bdb9131ea9d7"

/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.1 kB]
- Get:4 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [380 kB]
- Fetched 452 kB in 1s (735 kB/s)
- Reading package lists...
- 
2025-06-10 05:13.52 ---> saved as "825f5e0b86441dbe3d4860669bbee317d2ecb91f3c0aaced60f0bdf40c3bceca"

/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 05:13.53 ---> saved as "5ff42ceeda9ac0ae95c486093ee697a744f50177e2eb1b8d8fa269f5a228ce75"

/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 \"\\\"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\" != '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 25 packages
  - install alcotest           1.9.0          [required by echo]
  - install astring            0.8.5          [required by alcotest]
  - install base               v0.16.4        [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 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.16.0        [required by base]
  - install stdio              v0.16.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 libffi-dev: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-libffi-dev_3.3-6_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.3-6) ...
- Selecting previously unselected package libglib2.0-0:amd64.
- Preparing to unpack .../1-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 .../2-libglib2.0-data_2.66.8-1+deb11u6_all.deb ...
- Unpacking libglib2.0-data (2.66.8-1+deb11u6) ...
- Selecting previously unselected package libicu67:amd64.
- Preparing to unpack .../3-libicu67_67.1-7_amd64.deb ...
- Unpacking libicu67:amd64 (67.1-7) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../4-libxml2_2.9.10+dfsg-6.7+deb11u7_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u7) ...
- Selecting previously unselected package pkg-config.
- Preparing to unpack .../5-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 .../6-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 .../7-xdg-user-dirs_0.17-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.17-2) ...
- Setting up libicu67:amd64 (67.1-7) ...
- 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 libffi-dev:amd64 (3.3-6) ...
- 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+deb11u7) ...
- Setting up shared-mime-info (2.0-1) ...
- Processing triggers for libc-bin (2.31-13+deb11u13) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0  (cached)
-> installed conf-pkg-config.4
-> 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 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)
-> installed seq.base
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdio.v0.16.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 ocamlbuild.0.16.1
-> installed topkg.1.0.8
-> installed uutf.1.0.4
-> installed fmt.0.10.0
-> installed astring.0.8.5
-> installed dune.3.19.0
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.12.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed alcotest.1.9.0
-> installed dune-configurator.3.19.0
-> installed base.v0.16.4
-> installed ctypes.0.23.0
-> installed stdio.v0.16.0
-> installed ctypes-foreign.0.23.0
-> installed echo.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 05:14.34 ---> saved as "4bffba23c4dcd30ff424b08c8522b3102766cdc3dfce8d6905b2cf40c63044f7"

/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 05:14.39 ---> saved as "b3c2128db719887eaf8826309547723fac957bf4b7eeaf1323390f73d1b224b9"

/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 \"\\\"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\" != '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" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/echo.0.0.5)
- (cd _build/default/test && ./test_echo.exe)
- Testing `Echo tests'.
- This run has ID `734RBXD0'.
- 
-   [OK]          OCaml Logging          0   Echo.xxx from OCaml side.
-   [OK]          C Logging              0   echo_xxx from C side.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/echo.0.0.5/_build/default/test/_build/_tests/Echo tests'.
- Test Successful in 0.001s. 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 05:14.44 ---> saved as "df89e587215eae1d1c4506f7e363f774f5b4db6c04af3a1e3a0a71a5686ce4f9"
Job succeeded
2025-06-10 05:14.50: Job succeeded