(not at the head of any monitored branch or PR)
2024-10-31 07:09.51: New job: test mirage-runtime.4.4.0 with conf-m4.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/26814/head (4650d39b5f7558220fc3c5468aed419e1b79a9c8)
                              on debian-12-ocaml-5.2/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/26814/head" && git reset --hard 4650d39b
git fetch origin master
git merge --no-edit d872638bdf37acf7cefd81b20dfcad3e584c3153
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.2@sha256:7583e4dd1dcf84d502c2ee3f0a60c6b4136ab93b64de197b2071c7a5fae38483
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
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 conf-m4.1 1
RUN opam reinstall conf-m4.1; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'conf-m4.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN opam reinstall mirage-runtime.4.4.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mirage-runtime.4.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN (opam reinstall --with-test mirage-runtime.4.4.0) || true
RUN opam reinstall --with-test --verbose mirage-runtime.4.4.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mirage-runtime.4.4.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 .

2024-10-31 07:09.51: Using cache hint "ocaml/opam:debian-12-ocaml-5.2@sha256:7583e4dd1dcf84d502c2ee3f0a60c6b4136ab93b64de197b2071c7a5fae38483-conf-m4.1-mirage-runtime.4.4.0-4650d39b5f7558220fc3c5468aed419e1b79a9c8"
2024-10-31 07:09.51: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.2@sha256:7583e4dd1dcf84d502c2ee3f0a60c6b4136ab93b64de197b2071c7a5fae38483)
 (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 "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 1000)
 (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 conf-m4.1 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-m4.1;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall mirage-runtime.4.4.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'mirage-runtime.4.4.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 (shell "opam option solver=builtin-0install"))
 (run (network host)
      (shell "(opam reinstall --with-test mirage-runtime.4.4.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose mirage-runtime.4.4.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'mirage-runtime.4.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-10-31 07:09.51: Waiting for resource in pool OCluster
2024-10-31 21:42.50: Waiting for worker…
2024-10-31 21:44.39: Got resource from pool OCluster
Building on x86-bm-c11.sw.ocaml.org
All commits already cached
Updating files:  63% (20680/32563)
Updating files:  64% (20841/32563)
Updating files:  65% (21166/32563)
Updating files:  66% (21492/32563)
Updating files:  67% (21818/32563)
Updating files:  68% (22143/32563)
Updating files:  69% (22469/32563)
Updating files:  70% (22795/32563)
Updating files:  71% (23120/32563)
Updating files:  72% (23446/32563)
Updating files:  73% (23771/32563)
Updating files:  74% (24097/32563)
Updating files:  75% (24423/32563)
Updating files:  76% (24748/32563)
Updating files:  77% (25074/32563)
Updating files:  78% (25400/32563)
Updating files:  79% (25725/32563)
Updating files:  80% (26051/32563)
Updating files:  81% (26377/32563)
Updating files:  82% (26702/32563)
Updating files:  83% (27028/32563)
Updating files:  84% (27353/32563)
Updating files:  85% (27679/32563)
Updating files:  86% (28005/32563)
Updating files:  87% (28330/32563)
Updating files:  88% (28656/32563)
Updating files:  89% (28982/32563)
Updating files:  90% (29307/32563)
Updating files:  91% (29633/32563)
Updating files:  92% (29958/32563)
Updating files:  93% (30284/32563)
Updating files:  94% (30610/32563)
Updating files:  95% (30935/32563)
Updating files:  96% (31261/32563)
Updating files:  97% (31587/32563)
Updating files:  98% (31912/32563)
Updating files:  99% (32238/32563)
Updating files: 100% (32563/32563)
Updating files: 100% (32563/32563), done.
HEAD is now at d872638bdf Merge pull request #26806 from toots/opam-publish-ffmpeg.1.2.1
Merge made by the 'ort' strategy.
 packages/conf-m4/conf-m4.1/opam | 1 +
 1 file changed, 1 insertion(+)

(from ocaml/opam:debian-12-ocaml-5.2@sha256:7583e4dd1dcf84d502c2ee3f0a60c6b4136ab93b64de197b2071c7a5fae38483)
2024-10-31 21:44.43 ---> using "de4ab85ca5cfc22a2a4f21bd4f6b9515f9667a22e96e3fb26f6b86d857c9f229" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-10-31 21:44.43 ---> using "ddd891e39c42278f26250f3aec6c5b2fcf3f0d001f86bad76c3acacff8fdedfe" 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] synchronised from file:///home/opam/opam-repository
2024-10-31 21:44.43 ---> using "51366f05edc098feeef6899b0aecb8c70e1446c4dbbce761415aa7638ae9e1fc" from cache

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-122-generic
The OCaml toplevel, version 5.2.0
2.4.0~alpha1~dev
2024-10-31 21:44.43 ---> using "2409ce19a2d5931cead9c4d4d7bcb73bf6e6fb93578363afdc436202cc4692e5" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 1000)

/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/"))
2024-10-31 21:44.43 ---> using "be8cbda9fea7d04cf7c3d17556dfdda14af463ed12896cb36b979fd62f655a1a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-10-31 21:44.46 ---> using "efd45abfd5fc61b6ee801b96f00b17adb6d0a7378e7786d4b1f335f75ba22471" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-10-31 21:44.46 ---> using "a6c9b7dade7e16cc0c4099a9a7269ee68359150efe140129b006536623c4fcfb" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [190 kB]
- Fetched 293 kB in 0s (1061 kB/s)
- Reading package lists...
2024-10-31 21:44.46 ---> using "630198e6e769a1a16a004eca67788e5c396a9eae156287c9ac70aa1c58985ed6" from cache

/home/opam: (run (shell "opam pin add -k version -yn conf-m4.1 1"))
conf-m4 is now pinned to version 1
2024-10-31 21:44.46 ---> using "ba020edeb1aa5a7884aec82af0519e5af9a31f0214fd4a698995059f8a13c912" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conf-m4.1;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
conf-m4.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install conf-m4 1 (pinned)

The following system packages will first need to be installed:
    m4

<><> 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" "m4"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package m4.
- (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 ... 18776 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Setting up m4 (1.4.19-3) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-m4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2024-10-31 21:44.46 ---> using "d8193f19581979fa267a4ce5c814856e8035c736857b096d6ac05ef7adf1dca0" from cache

/home/opam: (run (shell "opam option solver=builtin-0install"))
Set to 'builtin-0install' the field solver in global configuration
2024-10-31 21:44.46 ---> using "f530b8c72cbd60368fab58f2ade53e74923caaf13c4540a481cc65abca855b00" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mirage-runtime.4.4.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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'mirage-runtime.4.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
mirage-runtime.4.4.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 17 packages
  - install base-bytes        base   [required by ocplib-endian]
  - install cmdliner          1.3.0  [required by functoria-runtime, logs]
  - install cppo              1.7.0  [required by lwt]
  - install csexp             1.5.2  [required by dune-configurator]
  - install domain-name       0.4.0  [required by ipaddr]
  - install dune              3.16.0 [required by mirage-runtime]
  - install dune-configurator 3.16.0 [required by lwt]
  - install functoria-runtime 4.4.0  [required by mirage-runtime]
  - install ipaddr            5.6.0  [required by mirage-runtime]
  - install logs              0.7.0  [required by mirage-runtime]
  - install lwt               5.8.0  [required by mirage-runtime]
  - install macaddr           5.6.0  [required by ipaddr]
  - install mirage-runtime    4.4.0
  - install ocamlbuild        0.15.0 [required by logs]
  - install ocamlfind         1.9.6  [required by logs]
  - install ocplib-endian     1.2    [required by lwt]
  - install topkg             1.0.7  [required by logs]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cppo.1.7.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved domain-name.0.4.0  (cached)
-> retrieved dune.3.16.0, dune-configurator.3.16.0  (cached)
-> retrieved functoria-runtime.4.4.0, mirage-runtime.4.4.0  (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0  (cached)
-> retrieved logs.0.7.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved lwt.5.8.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved topkg.1.0.7  (cached)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed dune.3.16.0
-> installed functoria-runtime.4.4.0
-> installed csexp.1.5.2
-> installed cppo.1.7.0
-> installed domain-name.0.4.0
-> installed macaddr.5.6.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.0
-> installed dune-configurator.3.16.0
-> installed lwt.5.8.0
-> installed logs.0.7.0
-> installed mirage-runtime.4.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-10-31 21:45.51 ---> saved as "cd29c14d93687f708ef9a9e2ae6a680b5f4dc3a689e9838073d632fd455c1e09"

/home/opam: (run (shell "opam option solver=builtin-0install"))
No modification in global configuration
2024-10-31 21:45.51 ---> saved as "ff7b331d489e21986fec667ca82ea8ac3df53294d6657aa8ee182ec1da3f4a76"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test mirage-runtime.4.4.0) || true"))
The following actions will be performed:
=== recompile 2 packages
  - recompile logs               0.7.0  [uses fmt]
  - recompile mirage-runtime     4.4.0
=== install 8 packages
  - install   alcotest           1.8.0  [required by mirage-runtime]
  - install   astring            0.8.5  [required by alcotest]
  - install   fmt                0.9.0  [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   re                 1.12.0 [required by alcotest]
  - install   seq                base   [required by re]
  - install   stdlib-shims       0.3.0  [required by alcotest]
  - install   uutf               1.0.3  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.8.0  (https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz)
-> retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved fmt.0.9.0  (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> retrieved logs.0.7.0  (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> retrieved mirage-runtime.4.4.0  (https://github.com/mirage/mirage/releases/download/v4.4.0/mirage-4.4.0.tbz)
-> installed fmt.0.9.0
-> installed astring.0.8.5
-> retrieved ocaml-syntax-shims.1.0.0  (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved re.1.12.0  (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> retrieved uutf.1.0.3  (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.12.0
-> removed   mirage-runtime.4.4.0
-> removed   logs.0.7.0
-> installed logs.0.7.0
-> installed uutf.1.0.3
-> installed alcotest.1.8.0
-> installed mirage-runtime.4.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-10-31 21:46.08 ---> saved as "0d3a0765fe3348f2e88143c8560ce58da3a402e52eacd451ae7dfd6697c58e3c"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [mirage-runtime.4.4.0: extract]
-> retrieved mirage-runtime.4.4.0  (cached)
Processing  2/4: [mirage-runtime: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-runtime" "-j" "39" (CWD=/home/opam/.opam/5.2/.opam-switch/build/mirage-runtime.4.4.0)
Processing  2/4: [mirage-runtime: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mirage-runtime" "-j" "39" (CWD=/home/opam/.opam/5.2/.opam-switch/build/mirage-runtime.4.4.0)
- (cd _build/default/test/mirage-runtime && ./test.exe)
- Testing `mirage'.
- This run has ID `PJUWLHY4'.
- 
-   [OK]          basic          0   info.
- 
- Full test results in `~/.opam/5.2/.opam-switch/build/mirage-runtime.4.4.0/_build/default/test/mirage-runtime/_build/_tests/mirage'.
- Test Successful in 0.000s. 1 test run.
-> compiled  mirage-runtime.4.4.0
-> removed   mirage-runtime.4.4.0
-> installed mirage-runtime.4.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-10-31 21:46.19 ---> saved as "59647729c822cc281926e2539969ae9069f9e879d4b7210625ae8614abe118d6"
Job succeeded
2024-10-31 21:46.29: Job succeeded