(for PR #27984)

2025-06-09 18:40.29: New job: test runtime_events_tools_bare.0.5.2, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27984/head (9e2b2f55a32eeb63c1566ddc5da11e048a0b45a9)
                              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/27984/head" && git reset --hard 9e2b2f55
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 runtime_events_tools_bare.0.5.2 0.5.2
RUN opam reinstall runtime_events_tools_bare.0.5.2; \
    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" != 'runtime_events_tools_bare.0.5.2' && 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 runtime_events_tools_bare.0.5.2) || true
RUN opam reinstall --with-test --verbose runtime_events_tools_bare.0.5.2; \
    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" != 'runtime_events_tools_bare.0.5.2' && 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-09 18:40.29: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:d9789eb9ef5db4d504b2acb38a381610d6f5098381edfccc5520fc100a9a4c07-runtime_events_tools_bare.0.5.2-9e2b2f55a32eeb63c1566ddc5da11e048a0b45a9"
2025-06-09 18:40.29: 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 runtime_events_tools_bare.0.5.2 0.5.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall runtime_events_tools_bare.0.5.2;\
             \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\" != 'runtime_events_tools_bare.0.5.2' && 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 runtime_events_tools_bare.0.5.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose runtime_events_tools_bare.0.5.2;\
             \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\" != 'runtime_events_tools_bare.0.5.2' && 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-09 18:40.29: Waiting for resource in pool OCluster
2025-06-09 18:40.29: Waiting for worker…
2025-06-09 18:40.29: Got resource from pool OCluster
Building on riscv-bm-04.sw.ci.dev
Updating files:  11% (2703/23232)
Updating files:  12% (2788/23232)
Updating files:  13% (3021/23232)
Updating files:  14% (3253/23232)
Updating files:  15% (3485/23232)
Updating files:  16% (3718/23232)
Updating files:  17% (3950/23232)
Updating files:  18% (4182/23232)
Updating files:  19% (4415/23232)
Updating files:  20% (4647/23232)
Updating files:  21% (4879/23232)
Updating files:  22% (5112/23232)
Updating files:  22% (5270/23232)
Updating files:  23% (5344/23232)
Updating files:  24% (5576/23232)
Updating files:  25% (5808/23232)
Updating files:  26% (6041/23232)
Updating files:  27% (6273/23232)
Updating files:  28% (6505/23232)
Updating files:  29% (6738/23232)
Updating files:  30% (6970/23232)
Updating files:  31% (7202/23232)
Updating files:  32% (7435/23232)
Updating files:  33% (7667/23232)
Updating files:  34% (7899/23232)
Updating files:  34% (8023/23232)
Updating files:  35% (8132/23232)
Updating files:  36% (8364/23232)
Updating files:  37% (8596/23232)
Updating files:  38% (8829/23232)
Updating files:  39% (9061/23232)
Updating files:  40% (9293/23232)
Updating files:  41% (9526/23232)
Updating files:  42% (9758/23232)
Updating files:  43% (9990/23232)
Updating files:  44% (10223/23232)
Updating files:  45% (10455/23232)
Updating files:  45% (10480/23232)
Updating files:  46% (10687/23232)
Updating files:  47% (10920/23232)
Updating files:  48% (11152/23232)
Updating files:  49% (11384/23232)
Updating files:  50% (11616/23232)
Updating files:  51% (11849/23232)
Updating files:  52% (12081/23232)
Updating files:  53% (12313/23232)
Updating files:  54% (12546/23232)
Updating files:  55% (12778/23232)
Updating files:  55% (12834/23232)
Updating files:  56% (13010/23232)
Updating files:  57% (13243/23232)
Updating files:  58% (13475/23232)
Updating files:  59% (13707/23232)
Updating files:  60% (13940/23232)
Updating files:  61% (14172/23232)
Updating files:  62% (14404/23232)
Updating files:  63% (14637/23232)
Updating files:  64% (14869/23232)
Updating files:  65% (15101/23232)
Updating files:  65% (15286/23232)
Updating files:  66% (15334/23232)
Updating files:  67% (15566/23232)
Updating files:  68% (15798/23232)
Updating files:  69% (16031/23232)
Updating files:  70% (16263/23232)
Updating files:  71% (16495/23232)
Updating files:  72% (16728/23232)
Updating files:  73% (16960/23232)
Updating files:  74% (17192/23232)
Updating files:  75% (17424/23232)
Updating files:  76% (17657/23232)
Updating files:  76% (17700/23232)
Updating files:  77% (17889/23232)
Updating files:  78% (18121/23232)
Updating files:  79% (18354/23232)
Updating files:  80% (18586/23232)
Updating files:  81% (18818/23232)
Updating files:  82% (19051/23232)
Updating files:  83% (19283/23232)
Updating files:  84% (19515/23232)
Updating files:  85% (19748/23232)
Updating files:  86% (19980/23232)
Updating files:  86% (20131/23232)
Updating files:  87% (20212/23232)
Updating files:  88% (20445/23232)
Updating files:  89% (20677/23232)
Updating files:  90% (20909/23232)
Updating files:  91% (21142/23232)
Updating files:  92% (21374/23232)
Updating files:  93% (21606/23232)
Updating files:  94% (21839/23232)
Updating files:  95% (22071/23232)
Updating files:  96% (22303/23232)
Updating files:  97% (22536/23232)
Updating files:  97% (22572/23232)
Updating files:  98% (22768/23232)
Updating files:  99% (23000/23232)
Updating files: 100% (23232/23232)
Updating files: 100% (23232/23232), done.
HEAD is now at 3844593231 [new release] sail (13 packages) (0.19.1)
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.
 .../runtime_events_tools.0.5.2/opam                | 44 ++++++++++++++++++++++
 .../runtime_events_tools_bare.0.5.2/opam           | 39 +++++++++++++++++++
 2 files changed, 83 insertions(+)
 create mode 100644 packages/runtime_events_tools/runtime_events_tools.0.5.2/opam
 create mode 100644 packages/runtime_events_tools_bare/runtime_events_tools_bare.0.5.2/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-09 18:46.20 ---> saved as "74834d15fa3624c49ba6bf511342992f186b46881fdeeb66e725523dda8ae613"

/: (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-09 18:46.21 ---> saved as "cf933a4b4fe5801182e9fda2cd1ba98ed9b225f136503b32e130377b7af83083"

/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-09 18:48.44 ---> saved as "e90adb15bd529e872b5dfa268dfa05b3b6b350fa7894a4f5b0f91442a6032297"

/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-09 18:48.47 ---> saved as "bc79f4958dc4fae8fdf12d124da229c9763418914b0fec21f166d7f49a9e99cb"

/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-09 18:49.27 ---> saved as "ad2745fb00440d287c6e7138e853c760156fd104f612f7f71ff3aa7e61dc814d"

/home/opam: (copy (src .) (dst opam-repository/))
2025-06-09 18:50.00 ---> saved as "609e21f4dc651bb963d07e4bfed596f1b8b2e7c89aa105199dbc088577e4c5ff"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-06-09 18:51.58 ---> saved as "526c6103d5fa617fc540fad3ec40c222df0852e7999e6250e79d48ab76debb42"

/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/main riscv64 Packages [750 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/restricted riscv64 Packages [6220 B]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1120 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 2s (1894 kB/s)
- Reading package lists...
- 
2025-06-09 18:52.06 ---> saved as "ef2c584675a6466e5cf1a7e896311d7a22097628ac57969937c412b929b36a3f"

/home/opam: (run (shell "opam pin add -k version -yn runtime_events_tools_bare.0.5.2 0.5.2"))
runtime_events_tools_bare is now pinned to version 0.5.2
2025-06-09 18:52.09 ---> saved as "f9767cba582c3ef92303a3c9f01e11849632b2cf13af2d9aebf9d17cfc21aa44"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall runtime_events_tools_bare.0.5.2;\
                        \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\" != 'runtime_events_tools_bare.0.5.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
runtime_events_tools_bare.0.5.2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 3 packages
  - install cmdliner                  1.3.0          [required by runtime_events_tools_bare]
  - install dune                      3.19.0         [required by runtime_events_tools_bare]
  - install runtime_events_tools_bare 0.5.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved dune.3.19.0  (cached)
-> retrieved runtime_events_tools_bare.0.5.2  (https://github.com/tarides/runtime_events_tools/releases/download/0.5.2/runtime_events_tools-0.5.2.tbz)
-> installed cmdliner.1.3.0
-> installed dune.3.19.0
-> installed runtime_events_tools_bare.0.5.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-09 18:56.23 ---> saved as "3c5cff3e12443997b1e19f4f4362cfd9758fad9cf87c79ebce0ccb7fd5b07998"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test runtime_events_tools_bare.0.5.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile runtime_events_tools_bare 0.5.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   runtime_events_tools_bare.0.5.2
-> installed runtime_events_tools_bare.0.5.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-09 18:56.49 ---> saved as "6634008086be7daf5aae21c2a6d9549b57f85772320264840d1a92c43ad9475d"

/home/opam: (run (shell  "opam reinstall --with-test --verbose runtime_events_tools_bare.0.5.2;\
                        \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\" != 'runtime_events_tools_bare.0.5.2' && 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 runtime_events_tools_bare 0.5.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [runtime_events_tools_bare: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "runtime_events_tools_bare" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/runtime_events_tools_bare.0.5.2)
-> compiled  runtime_events_tools_bare.0.5.2
-> removed   runtime_events_tools_bare.0.5.2
-> installed runtime_events_tools_bare.0.5.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-09 18:57.15 ---> saved as "eb44d410ffc0ca85a5be89e5c90ad882caad29284a63ef2471d6daf58a73b4dc"
Job succeeded
2025-06-09 18:57.57: Job succeeded