Build:
  1. 0
2026-05-01 11:04.04: New job: test wol-eio.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29831/head (f1eae11de07008ca8606bc341e1feacd5bb91c3c)
                              on ubuntu-24.04-ocaml-5.4/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/29831/head" && git reset --hard f1eae11d
git fetch origin master
git merge --no-edit 1e9db12c610aca8309a50e44fb4e11dd463eb8af
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4
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 wol-eio.1.0 1.0
RUN opam reinstall wol-eio.1.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" != 'wol-eio.1.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 wol-eio.1.0) || true
RUN opam reinstall --with-test --verbose wol-eio.1.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" != 'wol-eio.1.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 .

2026-05-01 11:04.04: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4-wol-eio.1.0-f1eae11de07008ca8606bc341e1feacd5bb91c3c"
2026-05-01 11:04.04: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4)
 (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 wol-eio.1.0 1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall wol-eio.1.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\" != 'wol-eio.1.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 wol-eio.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose wol-eio.1.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\" != 'wol-eio.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-05-01 11:04.04: Waiting for resource in pool OCluster
2026-05-01 11:04.04: Waiting for worker…
2026-05-01 11:13.54: Got resource from pool OCluster
Building on riscv-bm-04.sw.ci.dev
All commits already cached
Updating files:  14% (2710/18888)
Updating files:  15% (2834/18888)
Updating files:  16% (3023/18888)
Updating files:  17% (3211/18888)
Updating files:  18% (3400/18888)
Updating files:  19% (3589/18888)
Updating files:  20% (3778/18888)
Updating files:  21% (3967/18888)
Updating files:  22% (4156/18888)
Updating files:  23% (4345/18888)
Updating files:  24% (4534/18888)
Updating files:  25% (4722/18888)
Updating files:  26% (4911/18888)
Updating files:  27% (5100/18888)
Updating files:  27% (5266/18888)
Updating files:  28% (5289/18888)
Updating files:  29% (5478/18888)
Updating files:  30% (5667/18888)
Updating files:  31% (5856/18888)
Updating files:  32% (6045/18888)
Updating files:  33% (6234/18888)
Updating files:  34% (6422/18888)
Updating files:  35% (6611/18888)
Updating files:  36% (6800/18888)
Updating files:  37% (6989/18888)
Updating files:  38% (7178/18888)
Updating files:  39% (7367/18888)
Updating files:  40% (7556/18888)
Updating files:  41% (7745/18888)
Updating files:  41% (7800/18888)
Updating files:  42% (7933/18888)
Updating files:  43% (8122/18888)
Updating files:  44% (8311/18888)
Updating files:  45% (8500/18888)
Updating files:  46% (8689/18888)
Updating files:  47% (8878/18888)
Updating files:  48% (9067/18888)
Updating files:  49% (9256/18888)
Updating files:  50% (9444/18888)
Updating files:  51% (9633/18888)
Updating files:  52% (9822/18888)
Updating files:  52% (9934/18888)
Updating files:  53% (10011/18888)
Updating files:  54% (10200/18888)
Updating files:  55% (10389/18888)
Updating files:  56% (10578/18888)
Updating files:  57% (10767/18888)
Updating files:  58% (10956/18888)
Updating files:  59% (11144/18888)
Updating files:  60% (11333/18888)
Updating files:  61% (11522/18888)
Updating files:  62% (11711/18888)
Updating files:  63% (11900/18888)
Updating files:  64% (12089/18888)
Updating files:  65% (12278/18888)
Updating files:  65% (12326/18888)
Updating files:  66% (12467/18888)
Updating files:  67% (12655/18888)
Updating files:  68% (12844/18888)
Updating files:  69% (13033/18888)
Updating files:  70% (13222/18888)
Updating files:  71% (13411/18888)
Updating files:  72% (13600/18888)
Updating files:  73% (13789/18888)
Updating files:  74% (13978/18888)
Updating files:  75% (14166/18888)
Updating files:  76% (14355/18888)
Updating files:  77% (14544/18888)
Updating files:  77% (14633/18888)
Updating files:  78% (14733/18888)
Updating files:  79% (14922/18888)
Updating files:  80% (15111/18888)
Updating files:  81% (15300/18888)
Updating files:  82% (15489/18888)
Updating files:  83% (15678/18888)
Updating files:  84% (15866/18888)
Updating files:  85% (16055/18888)
Updating files:  86% (16244/18888)
Updating files:  87% (16433/18888)
Updating files:  88% (16622/18888)
Updating files:  89% (16811/18888)
Updating files:  90% (17000/18888)
Updating files:  90% (17061/18888)
Updating files:  91% (17189/18888)
Updating files:  92% (17377/18888)
Updating files:  93% (17566/18888)
Updating files:  94% (17755/18888)
Updating files:  95% (17944/18888)
Updating files:  96% (18133/18888)
Updating files:  97% (18322/18888)
Updating files:  98% (18511/18888)
Updating files:  99% (18700/18888)
Updating files: 100% (18888/18888)
Updating files: 100% (18888/18888), done.
HEAD is now at 1e9db12c61 Merge pull request #29833 from dinosaure/release-notty-miou-v0.0.1
Merge made by the 'ort' strategy.
 packages/wol-eio/wol-eio.1.0/opam       | 44 +++++++++++++++++++++++++++++++++
 packages/wol-mirage/wol-mirage.1.0/opam | 41 ++++++++++++++++++++++++++++++
 packages/wol/wol.1.0/opam               | 42 +++++++++++++++++++++++++++++++
 3 files changed, 127 insertions(+)
 create mode 100644 packages/wol-eio/wol-eio.1.0/opam
 create mode 100644 packages/wol-mirage/wol-mirage.1.0/opam
 create mode 100644 packages/wol/wol.1.0/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dc51e43301e96cd9f3cbb9165cfc2d504861bd7a1f7dbb213c49a6e9b70ae2e4)
2026-05-01 11:14.05 ---> using "707560050ad9b0c890bcc6f4f60bff3716d19cd6fc50da95384e605427042ee0" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-05-01 11:14.05 ---> using "54a222fde3a35ed3830f2550127260c43e5d3222a9d19ad31eb59a62a3359fbe" 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 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
2026-05-01 11:14.05 ---> using "b410e0a59cf0b6fb3cf627ffc1548411b886fc95769f6d6799d474ea2c01c4b0" 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.5.1
# 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.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-05-01 11:14.05 ---> using "c1b6d6c078ed991d77fdf240239d89ef60a7309ac383e0e5d756993bb7fe7ffb" 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/"))
2026-05-01 11:14.05 ---> using "7a7266bf0fe225a081e2b141090fc8188699daf03cd6a0e7dcf9b36fbe220f5f" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-05-01 11:14.11 ---> using "442cbdc66624fbe3df153c9e0079543746140a4a9063ced885f62163c736059c" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-01 11:14.11 ---> using "638f91d0067318337ab3203e5a015bb6f0b4bd08df2189a96a7338a6dad9a638" 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 [1596 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/restricted riscv64 Packages [11.5 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [958 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-backports/universe riscv64 Packages [33.6 kB]
- Get:9 http://ports.ubuntu.com/ubuntu-ports noble-backports/main riscv64 Packages [77.7 kB]
- Get:10 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [639 kB]
- Get:11 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [1119 kB]
- Fetched 4813 kB in 3s (1913 kB/s)
- Reading package lists...
- 
2026-05-01 11:14.11 ---> using "38e6fa9489ae1bfc8114b7a1dd2a2fcdd0eeb8f31c0659b373a1fecb7aed6d46" from cache

/home/opam: (run (shell "opam pin add -k version -yn wol-eio.1.0 1.0"))
wol-eio is now pinned to version 1.0
2026-05-01 11:14.11 ---> using "9242a6a8574199bb4b7f7ed9153d4ab941c81d84b75effb164c6b15ad2782a2d" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall wol-eio.1.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\" != 'wol-eio.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
wol-eio.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 29 packages
  - install bigstringaf        0.10.0       [required by eio]
  - install cmdliner           2.1.1        [required by wol-eio]
  - install csexp              1.5.2        [required by dune-configurator]
  - install cstruct            6.2.0        [required by eio, wol]
  - install domain-local-await 1.0.1        [required by eio]
  - install domain-name        0.5.0        [required by ipaddr]
  - install dune               3.22.2       [required by wol-eio]
  - install dune-configurator  3.22.2       [required by bigstringaf]
  - install eio                1.3          [required by wol-eio]
  - install eio_linux          1.3          [required by eio_main]
  - install eio_main           1.3          [required by wol-eio]
  - install eio_posix          1.3          [required by wol-eio]
  - install fmt                0.11.0       [required by eio]
  - install hmap               0.8.1        [required by eio]
  - install iomux              0.4          [required by eio_posix]
  - install ipaddr             5.6.2        [required by wol]
  - install lwt-dllist         1.1.0        [required by eio]
  - install macaddr            5.6.2        [required by wol]
  - install mtime              2.1.0        [required by eio]
  - install ocamlbuild         0.16.1       [required by hmap, mtime]
  - install ocamlfind          1.9.8        [required by hmap, mtime]
  - install optint             0.3.0        [required by eio]
  - install psq                0.2.1        [required by eio]
  - install seq                base         [required by psq]
  - install thread-table       1.0.0        [required by domain-local-await]
  - install topkg              1.1.1        [required by hmap, mtime]
  - install uring              0.9          [required by eio_linux]
  - install wol                1.0          [required by wol-eio]
  - install wol-eio            1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cmdliner.2.1.1  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved domain-local-await.1.0.1  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.22.2, dune-configurator.3.22.2  (cached)
-> retrieved eio.1.3, eio_linux.1.3, eio_main.1.3, eio_posix.1.3  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved iomux.0.4  (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2  (cached)
-> installed cmdliner.2.1.1
-> retrieved lwt-dllist.1.1.0  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved seq.base  (cached)
-> retrieved thread-table.1.0.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uring.0.9  (cached)
-> retrieved wol.1.0, wol-eio.1.0  (cached)
-> installed ocamlfind.1.9.8
-> installed seq.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed cstruct.6.2.0
-> installed lwt-dllist.1.1.0
-> installed macaddr.5.6.2
-> installed optint.0.3.0
-> installed psq.0.2.1
-> installed ipaddr.5.6.2
-> installed thread-table.1.0.0
-> installed wol.1.0
-> installed domain-local-await.1.0.1
-> installed dune-configurator.3.22.2
-> installed bigstringaf.0.10.0
-> installed iomux.0.4
-> installed uring.0.9
-> installed eio.1.3
-> installed eio_linux.1.3
-> installed eio_posix.1.3
-> installed eio_main.1.3
-> installed wol-eio.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-01 11:14.11 ---> using "13bf71d7aeca9698c72545e3842d99d3d32ec15422970dce8410e110df273eb9" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved wol-eio.1.0  (https://tangled.org/ryan.freumh.org/ocaml-wake-on-lan/archive/1.0.tar.gz)
-> removed   wol-eio.1.0
-> installed wol-eio.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-01 11:14.37 ---> saved as "ea0621ecdd8b08f623a09e735e0af5dcab4a4630ff29934560c2b05eb0b93eda"

/home/opam: (run (shell  "opam reinstall --with-test --verbose wol-eio.1.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\" != 'wol-eio.1.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 wol-eio 1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [wol-eio.1.0: extract]
-> retrieved wol-eio.1.0  (cached)
Processing  2/4: [wol-eio: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "wol-eio" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/wol-eio.1.0)
-> compiled  wol-eio.1.0
-> removed   wol-eio.1.0
-> installed wol-eio.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-01 11:15.02 ---> saved as "1b36d363579cff409fd678ffc0f130ca50c0d23f704f7f4bb43b5a9738bb29d3"
Job succeeded
2026-05-01 11:15.33: Job succeeded