Build: 
- 0
 
2025-10-31 23:24.15: New job: test yocaml_cmarkit.2.6.0 with cmarkit.0.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28811/head (980fdd86dd3031659f2129a0912acc3c0084f741)
                              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/28811/head" && git reset --hard 980fdd86
git fetch origin master
git merge --no-edit 8a528d6bb48e4be260fb670a1754df39a1192147
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4df6880702bc08a3607f8506c9b495c01ef82d7056adb27a661fb7f0e37115e1
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 cmarkit.0.4.0 0.4.0
RUN opam reinstall cmarkit.0.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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cmarkit.0.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall yocaml_cmarkit.2.6.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" != 'yocaml_cmarkit.2.6.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 yocaml_cmarkit.2.6.0) || true
RUN opam reinstall --with-test --verbose yocaml_cmarkit.2.6.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" != 'yocaml_cmarkit.2.6.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-10-31 23:24.15: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4df6880702bc08a3607f8506c9b495c01ef82d7056adb27a661fb7f0e37115e1-cmarkit.0.4.0-yocaml_cmarkit.2.6.0-980fdd86dd3031659f2129a0912acc3c0084f741"
2025-10-31 23:24.15: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4df6880702bc08a3607f8506c9b495c01ef82d7056adb27a661fb7f0e37115e1)
 (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 cmarkit.0.4.0 0.4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall cmarkit.0.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-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\" != 'cmarkit.0.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall yocaml_cmarkit.2.6.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\" != 'yocaml_cmarkit.2.6.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 yocaml_cmarkit.2.6.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose yocaml_cmarkit.2.6.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\" != 'yocaml_cmarkit.2.6.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-10-31 23:24.15: Waiting for resource in pool OCluster
2025-10-31 23:24.15: Waiting for worker…
2025-10-31 23:24.15: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  93% (17535/18667)
Updating files:  94% (17547/18667)
Updating files:  95% (17734/18667)
Updating files:  96% (17921/18667)
Updating files:  97% (18107/18667)
Updating files:  98% (18294/18667)
Updating files:  99% (18481/18667)
Updating files: 100% (18667/18667)
Updating files: 100% (18667/18667), done.
HEAD is now at 8a528d6bb4 Merge pull request #28792 from dbuenzli/odig
Updating 8a528d6bb4..980fdd86dd
Fast-forward
 packages/cmarkit/cmarkit.0.4.0/opam | 69 +++++++++++++++++++++++++++++++++++++
 1 file changed, 69 insertions(+)
 create mode 100644 packages/cmarkit/cmarkit.0.4.0/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4df6880702bc08a3607f8506c9b495c01ef82d7056adb27a661fb7f0e37115e1)
2025-10-31 23:24.18 ---> using "3860fc3afff07a9a9c1a63a09fbea6be05ebeed2a7fd434efc3902b6c93518e7" 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-10-31 23:24.18 ---> using "94723bc699672da76387626646b59aca0d2a291890d68e05bf4c3bc38cfc8a7c" 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-10-31 23:24.18 ---> using "c2c8ce32a781ae4021f1debe5603bcfa7acdde77c62a64a30e16b74405bf93da" 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~alpha1
# 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-10-31 23:24.18 ---> using "dd4db99438224fccb408795e64a5e62198ffea2accc474c81c08c39780268ea7" 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-10-31 23:24.18 ---> using "59aa5ec30138359b524267d684167d7098f83911dc9ad732e59ad8bc99b85012" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-10-31 23:24.26 ---> saved as "ffc72a4bb8b8b0518453e7df705b853c8b4ad549a1a217fa00c6b5f3135e6909"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-10-31 23:24.46 ---> saved as "9983f09c15cedb71511d0e18422cd3378f199513393418e3293d936a59759bb4"
/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 [69.0 kB]
- Fetched 160 kB in 0s (1876 kB/s)
- Reading package lists...
2025-10-31 23:24.47 ---> saved as "69717d3a442d124a7d9e23abaff60f37185fb717150c6739ebdd5fc77195dc51"
/home/opam: (run (shell "opam pin add -k version -yn cmarkit.0.4.0 0.4.0"))
cmarkit is now pinned to version 0.4.0
2025-10-31 23:24.48 ---> saved as "f612c43127e5b83f63de4093ed30eb9e02dd23f61abff61f8b983e429e8caa3f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall cmarkit.0.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-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\" != 'cmarkit.0.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"))
cmarkit.0.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
  - install cmarkit    0.4.0 (pinned)
  - install ocamlbuild 0.16.1         [required by cmarkit]
  - install ocamlfind  1.9.8          [required by cmarkit]
  - install topkg      1.1.0          [required by cmarkit]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmarkit.0.4.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved topkg.1.1.0  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed cmarkit.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-10-31 23:25.07 ---> saved as "d31e6c5400a69737f7993ac39e2875d2174bba9cfd4367f556d1ddbc0a907a9f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall yocaml_cmarkit.2.6.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\" != 'yocaml_cmarkit.2.6.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
yocaml_cmarkit.2.6.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 30 packages
  - install base                    v0.17.3 [required by ppx_expect]
  - install csexp                   1.5.2   [required by dune-configurator]
  - install dune                    3.20.2  [required by yocaml_cmarkit]
  - install dune-configurator       3.20.2  [required by base]
  - install jane-street-headers     v0.17.0 [required by time_now]
  - install jst-config              v0.17.0 [required by time_now]
  - install logs                    0.9.0   [required by yocaml]
  - install ocaml-compiler-libs     v0.17.0 [required by ppxlib]
  - install ocaml_intrinsics_kernel v0.17.1 [required by base]
  - 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_derivers            1.2.1   [required by ppxlib]
  - install ppx_enumerate           v0.17.0 [required by ppx_base]
  - install ppx_expect              v0.17.3 [required by yocaml_cmarkit]
  - install ppx_globalize           v0.17.2 [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.1 [required by ppx_expect]
  - install ppx_optcomp             v0.17.1 [required by time_now]
  - install ppx_sexp_conv           v0.17.1 [required by ppx_base]
  - install ppxlib                  0.37.0  [required by ppx_expect]
  - install ppxlib_jane             v0.17.4 [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install sexplib0                v0.17.0 [required by base]
  - install stdio                   v0.17.0 [required by ppx_expect]
  - install stdlib-shims            0.3.0   [required by ppxlib]
  - install time_now                v0.17.0 [required by ppx_inline_test]
  - install yocaml                  2.6.0   [required by yocaml_cmarkit]
  - install yocaml_cmarkit          2.6.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved logs.0.9.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_expect.v0.17.3  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved yocaml.2.6.0, yocaml_cmarkit.2.6.0  (cached)
-> installed logs.0.9.0
-> installed dune.3.20.2
-> installed jane-street-headers.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.20.2
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed yocaml.2.6.0
-> installed yocaml_cmarkit.2.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-10-31 23:26.11 ---> saved as "314608e737815ee6d32759c6c97c5344ba3021a1babc5e690af6bdd952108eb6"
/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test yocaml_cmarkit.2.6.0) || true"))
The following actions will be performed:
=== recompile 4 packages
  - recompile cmarkit        0.4.0 (pinned) [uses cmdliner]
  - recompile logs           0.9.0          [uses cmdliner]
  - recompile yocaml         2.6.0          [uses logs]
  - recompile yocaml_cmarkit 2.6.0
=== install 9 packages
  - install   astring        0.8.5          [required by mdx]
  - install   camlp-streams  5.0.1          [required by mdx]
  - install   cmdliner       2.0.0          [required by mdx]
  - install   cppo           1.8.0          [required by mdx]
  - install   fmt            0.11.0         [required by mdx]
  - install   mdx            2.5.1          [required by yocaml_cmarkit]
  - install   ocaml-version  4.0.3          [required by mdx]
  - install   re             1.14.0         [required by mdx]
  - install   result         1.5            [required by mdx]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved logs.0.9.0  (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.3  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved result.1.5  (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> retrieved yocaml.2.6.0, yocaml_cmarkit.2.6.0  (https://opam.ocaml.org/cache)
-> installed result.1.5
-> installed cppo.1.8.0
-> installed astring.0.8.5
-> installed re.1.14.0
-> removed   yocaml_cmarkit.2.6.0
-> removed   cmarkit.0.4.0
-> removed   yocaml.2.6.0
-> removed   logs.0.9.0
-> installed cmdliner.2.0.0
-> installed fmt.0.11.0
-> installed logs.0.9.0
-> installed cmarkit.0.4.0
-> installed yocaml.2.6.0
-> installed mdx.2.5.1
-> installed yocaml_cmarkit.2.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-10-31 23:26.30 ---> saved as "3bc3669821db7a404a32e4afbf5fb16a2ad773a34fd27c3e8fe41d2e9975e0c0"
/home/opam: (run (shell  "opam reinstall --with-test --verbose yocaml_cmarkit.2.6.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\" != 'yocaml_cmarkit.2.6.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 yocaml_cmarkit 2.6.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [yocaml_cmarkit.2.6.0: extract]
-> retrieved yocaml_cmarkit.2.6.0  (cached)
Processing  2/4: [yocaml_cmarkit: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yocaml_cmarkit" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/yocaml_cmarkit.2.6.0)
-> compiled  yocaml_cmarkit.2.6.0
-> removed   yocaml_cmarkit.2.6.0
-> installed yocaml_cmarkit.2.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-10-31 23:26.37 ---> saved as "f16cbb01f778a1d184e32ee69c1c81fd49d1a8b453b8497e975c84df69b196d0"
Job succeeded
2025-10-31 23:26.47: Job succeeded