(not at the head of any monitored branch or PR)
2025-03-28 23:00.36: New job: test ppx_minidebug.2.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27691/head (9c24e95324cb107defe230a7da3f317766d15c21)
                              on ubuntu-20.04-ocaml-5.3/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/27691/head" && git reset --hard 9c24e953
git fetch origin master
git merge --no-edit a8a89f62d8abd2a9f0cbb04826bfec1ef6b563e7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-20.04-ocaml-5.3@sha256:eb6c14ab85b4ddebde3ae5444ccc7b3ec58566e2e0087d4c77c9abcd59aa5da9
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 ppx_minidebug.2.2.0 2.2.0
RUN opam reinstall ppx_minidebug.2.2.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-20.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_minidebug.2.2.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 ppx_minidebug.2.2.0) || true
RUN opam reinstall --with-test --verbose ppx_minidebug.2.2.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-20.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_minidebug.2.2.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-03-28 23:00.36: Using cache hint "ocaml/opam:ubuntu-20.04-ocaml-5.3@sha256:eb6c14ab85b4ddebde3ae5444ccc7b3ec58566e2e0087d4c77c9abcd59aa5da9-ppx_minidebug.2.2.0-9c24e95324cb107defe230a7da3f317766d15c21"
2025-03-28 23:00.36: Using OBuilder spec:
((from ocaml/opam:ubuntu-20.04-ocaml-5.3@sha256:eb6c14ab85b4ddebde3ae5444ccc7b3ec58566e2e0087d4c77c9abcd59aa5da9)
 (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 ppx_minidebug.2.2.0 2.2.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppx_minidebug.2.2.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-20.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\" != 'ppx_minidebug.2.2.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 ppx_minidebug.2.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_minidebug.2.2.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-20.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\" != 'ppx_minidebug.2.2.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-03-28 23:00.36: Waiting for resource in pool OCluster
2025-03-28 23:00.36: Waiting for worker…
2025-03-28 23:00.36: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  99% (22659/22765)
Updating files: 100% (22765/22765)
Updating files: 100% (22765/22765), done.
HEAD is now at a8a89f62d8 Merge pull request #27687 from codinuum/diffast-20250328
Updating a8a89f62d8..9c24e95324
Fast-forward
 packages/ppx_minidebug/ppx_minidebug.2.2.0/opam | 55 +++++++++++++++++++++++++
 1 file changed, 55 insertions(+)
 create mode 100644 packages/ppx_minidebug/ppx_minidebug.2.2.0/opam

(from ocaml/opam:ubuntu-20.04-ocaml-5.3@sha256:eb6c14ab85b4ddebde3ae5444ccc7b3ec58566e2e0087d4c77c9abcd59aa5da9)
2025-03-28 23:00.45 ---> using "c501aeef85046200b4b0b09ac93b7618cb5e8664aad0bc697db5003d1e2bb44c" 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-03-28 23:00.45 ---> using "be0b55283221e4a99f9708840bf172e6da7c4641a0b957269797482220725dc8" 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 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
[NOTE] The 'jobs' option was reset, its value was 31 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=31 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-28 23:00.45 ---> using "c4b8b26ee508cebe4da3b66ed6a597468ead9926284462dc0ce33288c80b537b" 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.4.0~alpha1~dev (fcce0c8d871702aabac0a216e45212ff004cfe79)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=ubuntu os-version=20.04
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (local), 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-03-28 23:00.45 ---> using "ba568c42659d827a9477ad43c2987152fa9de44111009076ff011cf15d96f9c2" 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-03-28 23:00.45 ---> using "e95424a69d68e0e316221acd2598761758dd560072fc3e10fee4db9cf922e4bf" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-03-28 23:00.52 ---> saved as "07a50b75453963474d2141167a1fdff45b754980494144fe4616636b4b63f993"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-28 23:01.30 ---> saved as "3c4bd9910c29df8c080f5702190396036f7e9a2199e085d2b9ce041685d38d08"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease
- Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB]
- Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB]
- Get:5 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [4491 kB]
- Get:6 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [36.8 kB]
- Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [4777 kB]
- Get:8 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [33.2 kB]
- Get:9 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [4291 kB]
- Get:10 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1304 kB]
- Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [4688 kB]
- Get:12 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1597 kB]
- Fetched 21.6 MB in 3s (8479 kB/s)
- Reading package lists...
- 
2025-03-28 23:01.35 ---> saved as "ad00f687ef46a0f9bcbe457867547669a6c635c4d794c06f148a6b74a2074c3e"

/home/opam: (run (shell "opam pin add -k version -yn ppx_minidebug.2.2.0 2.2.0"))
ppx_minidebug is now pinned to version 2.2.0
2025-03-28 23:01.36 ---> saved as "a520d83fcd9165ba9ac7a4b949f7675aa7b791f6192b9256cd3e37ac356e638c"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppx_minidebug.2.2.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-20.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\" != 'ppx_minidebug.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ppx_minidebug.2.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 38 packages
  - install astring                 0.8.5          [required by mdx]
  - install base                    v0.17.1        [required by ppx_sexp_conv]
  - install camlp-streams           5.0.1          [required by mdx]
  - install cmdliner                1.3.0          [required by mdx]
  - install cppo                    1.8.0          [required by mdx, ppx_deriving]
  - install csexp                   1.5.2          [required by mdx]
  - install dune                    3.17.2         [required by ppx_minidebug]
  - install dune-configurator       3.17.2         [required by base]
  - install fmt                     0.10.0         [required by mdx]
  - install logs                    0.8.0          [required by mdx]
  - install mdx                     2.5.0          [required by ppx_minidebug]
  - install mtime                   2.1.0          [required by ppx_minidebug]
  - install ocaml-compiler-libs     v0.17.0        [required by ppxlib]
  - install ocaml-version           4.0.0          [required by mdx]
  - install ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install ocamlbuild              0.16.1         [required by mtime, ptime]
  - install ocamlfind               1.9.8          [required by ppx_deriving, mdx, mtime, ptime]
  - install ppx_derivers            1.2.1          [required by ppx_deriving]
  - install ppx_deriving            6.0.3          [required by ppx_minidebug]
  - install ppx_minidebug           2.2.0 (pinned)
  - install ppx_sexp_conv           v0.17.0        [required by ppx_minidebug]
  - install ppxlib                  0.35.0         [required by ppx_minidebug]
  - install ppxlib_jane             v0.17.2        [required by ppx_sexp_conv]
  - install printbox                0.12           [required by ppx_minidebug]
  - install printbox-html           0.12           [required by ppx_minidebug]
  - install printbox-md             0.12           [required by ppx_minidebug]
  - install printbox-text           0.12           [required by ppx_minidebug]
  - install ptime                   1.2.0          [required by ppx_minidebug]
  - install re                      1.12.0         [required by ppx_minidebug]
  - install result                  1.5            [required by mdx]
  - install seq                     base           [required by re, tyxml]
  - install sexplib0                v0.17.0        [required by ppx_minidebug]
  - install stdlib-shims            0.3.0          [required by ppxlib]
  - install thread-local-storage    0.2            [required by ppx_minidebug]
  - install topkg                   1.0.8          [required by mtime, ptime]
  - install tyxml                   4.6.0          [required by printbox-html]
  - install uucp                    16.0.0         [required by printbox-text]
  - install uutf                    1.0.4          [required by tyxml, printbox-text]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.17.1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2  (cached)
-> retrieved fmt.0.10.0  (cached)
-> retrieved logs.0.8.0  (cached)
-> retrieved mdx.2.5.0  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-version.4.0.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed cmdliner.1.3.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_minidebug.2.2.0  (https://github.com/lukstafi/ppx_minidebug/archive/refs/tags/2.2.0.tar.gz)
-> retrieved ppx_sexp_conv.v0.17.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved ppxlib_jane.v0.17.2  (cached)
-> retrieved printbox.0.12, printbox-html.0.12, printbox-md.0.12, printbox-text.0.12  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.12.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved thread-local-storage.0.2  (cached)
-> retrieved topkg.1.0.8  (cached)
-> retrieved tyxml.4.6.0  (cached)
-> retrieved uucp.16.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.8
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.10.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed logs.0.8.0
-> installed dune.3.17.2
-> installed ppx_derivers.1.2.1
-> installed printbox.0.12
-> installed csexp.1.5.2
-> installed camlp-streams.5.0.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed cppo.1.8.0
-> installed ocaml-version.4.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed re.1.12.0
-> installed result.1.5
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed thread-local-storage.0.2
-> installed dune-configurator.3.17.2
-> installed mdx.2.5.0
-> installed tyxml.4.6.0
-> installed printbox-html.0.12
-> installed base.v0.17.1
-> installed ppxlib.0.35.0
-> installed uucp.16.0.0
-> installed printbox-text.0.12
-> installed printbox-md.0.12
-> installed ppxlib_jane.v0.17.2
-> installed ppx_deriving.6.0.3
-> installed ppx_sexp_conv.v0.17.0
-> installed ppx_minidebug.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-28 23:02.41 ---> saved as "d55ec31d475276cded253b3b091e11e5ce0bbf08f84d28c04c8b85e59ce7aa3d"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ppx_minidebug.2.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ppx_minidebug       2.2.0 (pinned)
=== install 15 packages
  - install   jane-street-headers v0.17.0        [required by time_now]
  - install   jst-config          v0.17.0        [required by time_now]
  - install   ppx_assert          v0.17.0        [required by jst-config]
  - install   ppx_base            v0.17.0        [required by time_now]
  - install   ppx_cold            v0.17.0        [required by ppx_base]
  - install   ppx_compare         v0.17.0        [required by ppx_base]
  - install   ppx_enumerate       v0.17.0        [required by ppx_base]
  - install   ppx_expect          v0.17.2        [required by ppx_minidebug]
  - install   ppx_globalize       v0.17.0        [required by ppx_base]
  - install   ppx_hash            v0.17.0        [required by ppx_base]
  - install   ppx_here            v0.17.0        [required by ppx_expect]
  - install   ppx_inline_test     v0.17.0        [required by ppx_expect]
  - install   ppx_optcomp         v0.17.0        [required by time_now]
  - install   stdio               v0.17.0        [required by ppx_expect]
  - install   time_now            v0.17.0        [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved jane-street-headers.v0.17.0  (https://github.com/janestreet/jane-street-headers/archive/refs/tags/v0.17.0.tar.gz)
-> installed jane-street-headers.v0.17.0
-> retrieved jst-config.v0.17.0  (https://github.com/janestreet/jst-config/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_assert.v0.17.0  (https://github.com/janestreet/ppx_assert/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_base.v0.17.0  (https://github.com/janestreet/ppx_base/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_cold.v0.17.0  (https://github.com/janestreet/ppx_cold/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_compare.v0.17.0  (https://github.com/janestreet/ppx_compare/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_enumerate.v0.17.0  (https://github.com/janestreet/ppx_enumerate/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_expect.v0.17.2  (https://github.com/janestreet/ppx_expect/archive/refs/tags/v0.17.2.tar.gz)
-> retrieved ppx_globalize.v0.17.0  (https://github.com/janestreet/ppx_globalize/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_hash.v0.17.0  (https://github.com/janestreet/ppx_hash/archive/refs/tags/v0.17.0.tar.gz)
-> installed ppx_cold.v0.17.0
-> retrieved ppx_here.v0.17.0  (https://github.com/janestreet/ppx_here/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_inline_test.v0.17.0  (https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.17.0.tar.gz)
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> retrieved ppx_optcomp.v0.17.0  (https://github.com/janestreet/ppx_optcomp/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved stdio.v0.17.0  (https://github.com/janestreet/stdio/archive/refs/tags/v0.17.0.tar.gz)
-> installed ppx_globalize.v0.17.0
-> retrieved time_now.v0.17.0  (https://github.com/janestreet/time_now/archive/refs/tags/v0.17.0.tar.gz)
-> installed stdio.v0.17.0
-> removed   ppx_minidebug.2.2.0
-> installed ppx_here.v0.17.0
-> installed ppx_hash.v0.17.0
-> installed ppx_optcomp.v0.17.0
-> installed ppx_base.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.0
-> installed ppx_expect.v0.17.2
-> installed ppx_minidebug.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-28 23:03.25 ---> saved as "06291262d4d1eca89663d42d6d511c885b4d9f7601f39f2fd9d7bf1650190da9"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ppx_minidebug.2.2.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-20.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\" != 'ppx_minidebug.2.2.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 ppx_minidebug 2.2.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ppx_minidebug: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_minidebug" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/ppx_minidebug.2.2.0)
- (cd _build/default/test && ./test_debug_generate_nothing.exe)
- 64
- (cd _build/default/test && ./test_debug_multithread_files.exe)
- Starting multi-threaded test...
- Multi-threaded test completed successfully.
- (cd _build/default/test && ./test_debug_log_nothing.exe)
- 64
- (cd _build/default/test && ./test_debug_interrupts.exe)
- Raised exception.
- Raised exception.
- (cd _build/default/test && ./test_debug_log_prefixed.exe)
- 9
- (cd _build/default/doc && ./sync_to_md.exe)
- level 2level 3
- (cd _build/default/test && ./test_debug_large_diffs.exe)
- Starting test_debug_large_diffs...
- About to run debug_run1...
- Running debug_run1...
- debug_run1 completed.
- About to run debug_run2...
- Running debug_run2...
- debug_run2 completed.
- About to run debug_run3...
- Running debug_run3...
- debug_run3 completed.
- All debug runs completed successfully.
-> compiled  ppx_minidebug.2.2.0
-> removed   ppx_minidebug.2.2.0
-> installed ppx_minidebug.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-28 23:03.46 ---> saved as "bc0785cbf7e7c89cd2ae07b7d6c0866d1e93bef585beea6069c02d7f93c76e56"
Job succeeded
2025-03-28 23:03.51: Job succeeded