(for PR #29075)

2025-12-11 21:56.48: New job: test xapi-stdext-threads.4.24.0 with rpclib.10.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29075/head (2d04beee37100f8a8d89ef140421171f0eeb5625)
                              on debian-13-ocaml-5.4/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/29075/head" && git reset --hard 2d04beee
git fetch origin master
git merge --no-edit 46af9797bff3c8fad38f790f67b98c31d8a7ab8d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
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 rpclib.10.0.0 10.0.0
RUN opam reinstall rpclib.10.0.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'rpclib.10.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall xapi-stdext-threads.4.24.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'xapi-stdext-threads.4.24.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 xapi-stdext-threads.4.24.0) || true
RUN opam reinstall --with-test --verbose xapi-stdext-threads.4.24.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'xapi-stdext-threads.4.24.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-12-11 21:56.48: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-rpclib.10.0.0-xapi-stdext-threads.4.24.0-2d04beee37100f8a8d89ef140421171f0eeb5625"
2025-12-11 21:56.48: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
 (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 rpclib.10.0.0 10.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall rpclib.10.0.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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'rpclib.10.0.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall xapi-stdext-threads.4.24.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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'xapi-stdext-threads.4.24.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 xapi-stdext-threads.4.24.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose xapi-stdext-threads.4.24.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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'xapi-stdext-threads.4.24.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-12-11 21:56.48: Waiting for resource in pool OCluster
2025-12-11 21:56.49: Waiting for worker…
2025-12-11 21:56.55: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  96% (18251/19009)
Updating files:  97% (18439/19009)
Updating files:  98% (18629/19009)
Updating files:  99% (18819/19009)
Updating files: 100% (19009/19009)
Updating files: 100% (19009/19009), done.
HEAD is now at 46af9797bf Merge pull request #29053 from bobot/release-camlid-0.1
Merge made by the 'ort' strategy.
 .../ppx_deriving_rpc/ppx_deriving_rpc.10.0.0/opam  | 42 +++++++++++++++++++
 packages/rpclib-async/rpclib-async.10.0.0/opam     | 41 +++++++++++++++++++
 packages/rpclib-html/rpclib-html.10.0.0/opam       | 37 +++++++++++++++++
 packages/rpclib-js/rpclib-js.10.0.0/opam           | 38 +++++++++++++++++
 packages/rpclib-lwt/rpclib-lwt.10.0.0/opam         | 42 +++++++++++++++++++
 packages/rpclib/rpclib.10.0.0/opam                 | 47 ++++++++++++++++++++++
 6 files changed, 247 insertions(+)
 create mode 100644 packages/ppx_deriving_rpc/ppx_deriving_rpc.10.0.0/opam
 create mode 100644 packages/rpclib-async/rpclib-async.10.0.0/opam
 create mode 100644 packages/rpclib-html/rpclib-html.10.0.0/opam
 create mode 100644 packages/rpclib-js/rpclib-js.10.0.0/opam
 create mode 100644 packages/rpclib-lwt/rpclib-lwt.10.0.0/opam
 create mode 100644 packages/rpclib/rpclib.10.0.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
2025-12-11 21:57.05 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" 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-12-11 21:57.05 ---> using "f1296791f2d76481058db697105a569091a6b6345f05c94bbc5a650f1a364f9a" 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
2025-12-11 21:57.05 ---> using "0cac9a31b4750e6a46df8ed8d2f68352091a988199fdf62c52779549510cd6bf" 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.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, 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.0
2025-12-11 21:57.05 ---> using "1deb91dc3badca969976ed6f3bc5fe7c443d73a2cfa957be662fd6f93e30aa7b" 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-12-11 21:57.05 ---> using "1a02438c8753bf7228a9eb625e65b7af26778a022b9ce0b16be5ef4f294c58cd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-11 21:57.06 ---> saved as "6ab05087dabfe4309e136ba7b7f4f5cc81eb9bf1570f48a85bdc236c2e90a35b"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-11 21:57.29 ---> saved as "9215512f48feac0896df83a4d52f5aa5847df0bf895441673907202b73745d7d"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [82.1 kB]
- Fetched 173 kB in 0s (1502 kB/s)
- Reading package lists...
- 
2025-12-11 21:57.31 ---> saved as "e9e871d3d75c315eb285f81098a0bea55d1e3a5439c62762bd799ed3197645b8"

/home/opam: (run (shell "opam pin add -k version -yn rpclib.10.0.0 10.0.0"))
rpclib is now pinned to version 10.0.0
2025-12-11 21:57.33 ---> saved as "a7c9ce5d9c79e53fb9d742a806dac79733a28b679148b91b8c0c2469e711df1b"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall rpclib.10.0.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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'rpclib.10.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
rpclib.10.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
  - install base64     3.5.2           [required by rpclib]
  - install cmdliner   2.1.0           [required by rpclib]
  - install dune       3.20.2          [required by rpclib]
  - install ocamlbuild 0.16.1          [required by rresult, xmlm]
  - install ocamlfind  1.9.8           [required by rresult, xmlm]
  - install result     1.5             [required by rpclib]
  - install rpclib     10.0.0 (pinned)
  - install rresult    0.7.0           [required by rpclib]
  - install topkg      1.1.1           [required by rresult, xmlm]
  - install xmlm       1.4.0           [required by rpclib]
  - install yojson     3.0.0           [required by rpclib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved dune.3.20.2  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rpclib.10.0.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved xmlm.1.4.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed xmlm.1.4.0
-> installed dune.3.20.2
-> installed base64.3.5.2
-> installed result.1.5
-> installed yojson.3.0.0
-> installed rpclib.10.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 21:58.12 ---> saved as "c445cadc9abba86424e639f2c0a17e4c03ef63d06443f76f45834b92db9f93e4"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall xapi-stdext-threads.4.24.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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'xapi-stdext-threads.4.24.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
xapi-stdext-threads.4.24.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
  - install base                    v0.17.3 [required by ppx_sexp_conv]
  - install csexp                   1.5.2   [required by dune-configurator]
  - install dune-configurator       3.20.2  [required by base]
  - install logs                    0.10.0  [required by xapi-stdext-pervasives]
  - install ocaml-compiler-libs     v0.17.0 [required by ppxlib]
  - install ocaml_intrinsics_kernel v0.17.1 [required by base]
  - install ppx_derivers            1.2.1   [required by ppxlib]
  - install ppx_deriving_rpc        10.0.0  [required by xapi-backtrace]
  - install ppx_sexp_conv           v0.17.1 [required by xapi-backtrace]
  - install ppxlib                  0.37.0  [required by ppx_deriving_rpc, ppx_sexp_conv]
  - install ppxlib_jane             v0.17.4 [required by ppx_sexp_conv]
  - install sexplib0                v0.17.0 [required by ppx_sexp_conv]
  - install stdlib-shims            0.3.0   [required by ppxlib]
  - install xapi-backtrace          0.7     [required by xapi-stdext-pervasives]
  - install xapi-stdext-pervasives  4.24.0  [required by xapi-stdext-threads]
  - install xapi-stdext-threads     4.24.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.20.2  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving_rpc.10.0.0  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved xapi-backtrace.0.7  (cached)
-> retrieved xapi-stdext-pervasives.4.24.0, xapi-stdext-threads.4.24.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed logs.0.10.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed dune-configurator.3.20.2
-> installed base.v0.17.3
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_deriving_rpc.10.0.0
-> installed ppx_sexp_conv.v0.17.1
-> installed xapi-backtrace.0.7
-> installed xapi-stdext-pervasives.4.24.0
-> installed xapi-stdext-threads.4.24.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 21:59.27 ---> saved as "c8f2087a6905450a54a80850daa583b8a180369af876ffc06771a0211dbd2851"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved xapi-stdext-threads.4.24.0  (https://opam.ocaml.org/cache)
-> removed   xapi-stdext-threads.4.24.0
-> installed xapi-stdext-threads.4.24.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 21:59.35 ---> saved as "fd4b81bfa51895c3b49f1f8c7811e2d9f38127766b7a9dac91c4da82339171f2"

/home/opam: (run (shell  "opam reinstall --with-test --verbose xapi-stdext-threads.4.24.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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'xapi-stdext-threads.4.24.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 xapi-stdext-threads 4.24.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [xapi-stdext-threads.4.24.0: extract]
-> retrieved xapi-stdext-threads.4.24.0  (cached)
Processing  2/4: [xapi-stdext-threads: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "xapi-stdext-threads" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/xapi-stdext-threads.4.24.0)
-> compiled  xapi-stdext-threads.4.24.0
-> removed   xapi-stdext-threads.4.24.0
-> installed xapi-stdext-threads.4.24.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 21:59.42 ---> saved as "8af4e894a43201f28dfbd151431f5519346f322efb50f9303f32a0df4f8893bd"
Job succeeded
2025-12-11 22:00.21: Job succeeded