Build:
  1. 0
2026-01-13 04:52.05: New job: test markdown_monolith.0.1.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29218/head (7cc188286c252047a59d304d3f06f2a5479b2750)
                              on fedora-43-ocaml-4.14/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/29218/head" && git reset --hard 7cc18828
git fetch origin master
git merge --no-edit 1c361fac36225534ee877701522e296785f9a9db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-43-ocaml-4.14@sha256:0d98b5bd64da31a7161b647fff5da49b72299cecc29dc48fee28a2942d80bcb3
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 markdown_monolith.0.1.1 0.1.1
RUN opam reinstall markdown_monolith.0.1.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 "\"fedora-43\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'markdown_monolith.0.1.1' && 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 markdown_monolith.0.1.1) || true
RUN opam reinstall --with-test --verbose markdown_monolith.0.1.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 "\"fedora-43\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'markdown_monolith.0.1.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-01-13 04:52.05: Using cache hint "ocaml/opam:fedora-43-ocaml-4.14@sha256:0d98b5bd64da31a7161b647fff5da49b72299cecc29dc48fee28a2942d80bcb3-markdown_monolith.0.1.1-7cc188286c252047a59d304d3f06f2a5479b2750"
2026-01-13 04:52.05: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-4.14@sha256:0d98b5bd64da31a7161b647fff5da49b72299cecc29dc48fee28a2942d80bcb3)
 (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 markdown_monolith.0.1.1 0.1.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall markdown_monolith.0.1.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 \"\\\"fedora-43\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'markdown_monolith.0.1.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 (network host)
      (shell "(opam reinstall --with-test markdown_monolith.0.1.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose markdown_monolith.0.1.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 \"\\\"fedora-43\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'markdown_monolith.0.1.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-13 04:52.05: Waiting for resource in pool OCluster
2026-01-13 20:05.25: Waiting for worker…
2026-01-13 20:08.06: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 1c361fac36 Merge pull request #29210 from dinosaure/release-miou-v0.5.1
Updating 1c361fac36..7cc188286c
Fast-forward
 .../markdown_monolith/markdown_monolith.0.1.1/opam | 48 ++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 packages/markdown_monolith/markdown_monolith.0.1.1/opam

(from ocaml/opam:fedora-43-ocaml-4.14@sha256:0d98b5bd64da31a7161b647fff5da49b72299cecc29dc48fee28a2942d80bcb3)
2026-01-13 20:31.19 ---> saved as "8b0adb6c2adc7fa4f4001b6b87da003491ed225d9bbd0f11a36381cd1af0a78a"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-13 20:31.20 ---> saved as "8f0f19a02f8ca6978fcd5ef4b2095f93cc24a98d2d55ea8318b98da270fe0c8a"

/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 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.

[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-13 20:31.42 ---> saved as "269930be3b54c7f676e8f11b299c9a6f218cab290f12dde1a3258a862d7328d3"

/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=fedora os-version=43
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-01-13 20:31.43 ---> saved as "a3a9b3c2d70064f7a246b06e16c6d6ab8937ef5faa4c6c16c2e012fd3d2c809d"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-13 20:31.52 ---> saved as "7586be709f82e76b730eb2a42f0ed48b94d0daa3f462bcbbd3e6c57d7f8d3a00"

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 20:32.01 ---> saved as "1673afccf81c518712bcb5cc186f3f0267f559c2a43858d9525f5770bf53a87e"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 20:32.23 ---> saved as "a37d357ba1f044ee11ac8675bc7e8294f2333c242f08164233411aec22dcb92f"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 43 - x86_64 - Updates           100% | 152.2 KiB/s |  21.8 KiB |  00m00s
- Repositories loaded.
- Metadata cache created.
2026-01-13 20:32.27 ---> saved as "761ebde9625110480f17eb57c268f16cfd880d0f8a556df10371ef9fe1614dbf"

/home/opam: (run (shell "opam pin add -k version -yn markdown_monolith.0.1.1 0.1.1"))
markdown_monolith is now pinned to version 0.1.1
2026-01-13 20:32.29 ---> saved as "78254051c9aca43e1d06beee8874c517962821cee19660500ad889ca2b651af0"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall markdown_monolith.0.1.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 \"\\\"fedora-43\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'markdown_monolith.0.1.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
markdown_monolith.0.1.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 67 packages
  - install angstrom            0.16.1         [required by uri]
  - install asn1-combinators    0.3.2          [required by x509]
  - install astring             0.8.5          [required by conduit]
  - install base                v0.16.4        [required by ppx_sexp_conv]
  - install base-bytes          base           [required by ocplib-endian]
  - install base64              3.5.2          [required by cohttp]
  - install bigstringaf         0.10.0         [required by angstrom]
  - install bos                 0.2.1          [required by ca-certs]
  - install ca-certs            1.0.1          [required by conduit-lwt-unix]
  - install cmarkit             0.4.0          [required by markdown_monolith]
  - install cmdliner            2.1.0          [required by markdown_monolith]
  - install cohttp              6.2.1          [required by cohttp-lwt-unix]
  - install cohttp-lwt          6.2.1          [required by cohttp-lwt-unix]
  - install cohttp-lwt-unix     6.2.1          [required by markdown_monolith]
  - install conduit             8.0.0          [required by conduit-lwt]
  - install conduit-lwt         8.0.0          [required by cohttp-lwt-unix]
  - install conduit-lwt-unix    8.0.0          [required by cohttp-lwt-unix]
  - install conf-gmp            5              [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec   4              [required by mirage-crypto-pk]
  - install conf-libssl         4              [required by ssl]
  - install conf-pkg-config     4              [required by conf-libssl]
  - install cppo                1.8.0          [required by lwt]
  - install csexp               1.5.2          [required by dune-configurator]
  - install digestif            1.3.0          [required by ca-certs]
  - install domain-name         0.5.0          [required by ipaddr]
  - install dune                3.20.2         [required by markdown_monolith]
  - install dune-configurator   3.20.2         [required by mirage-crypto, lwt, base, ssl]
  - install duration            0.2.1          [required by mirage-crypto-rng]
  - install eqaf                0.10           [required by digestif, mirage-crypto]
  - install fmt                 0.11.0         [required by cohttp-lwt-unix]
  - install fpath               0.7.3          [required by ca-certs]
  - install gmap                0.3.0          [required by x509]
  - install http                6.2.1          [required by cohttp-lwt-unix]
  - install ipaddr              5.6.1          [required by cohttp-lwt, cohttp, conduit-lwt-unix]
  - install ipaddr-sexp         5.6.1          [required by conduit-lwt-unix]
  - install kdf                 1.0.0          [required by x509]
  - install logs                0.10.0         [required by cohttp-lwt-unix]
  - install lwt                 6.0.0          [required by markdown_monolith]
  - install lwt_ssl             1.2.0          [required by markdown_monolith]
  - install macaddr             5.6.1          [required by ipaddr]
  - install magic-mime          1.3.1          [required by cohttp-lwt-unix]
  - install markdown_monolith   0.1.1 (pinned)
  - install mirage-crypto       2.0.2          [required by ca-certs]
  - install mirage-crypto-ec    2.0.2          [required by x509]
  - install mirage-crypto-pk    2.0.2          [required by x509]
  - install mirage-crypto-rng   2.0.2          [required by x509]
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0          [required by angstrom]
  - install ocamlbuild          0.16.1         [required by cmarkit]
  - install ocamlfind           1.9.8          [required by cmarkit]
  - install ocplib-endian       1.2            [required by lwt]
  - install ohex                0.2.0          [required by ca-certs]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppx_sexp_conv       v0.16.0        [required by cohttp-lwt-unix]
  - install ppxlib              0.35.0         [required by ppx_sexp_conv]
  - install ptime               1.2.0          [required by ca-certs]
  - install re                  1.14.0         [required by cohttp]
  - install rresult             0.7.0          [required by bos]
  - install sexplib0            v0.16.0        [required by cohttp-lwt, cohttp, conduit-lwt]
  - install ssl                 0.7.0          [required by lwt_ssl]
  - install stdlib-shims        0.3.0          [required by ppxlib]
  - install stringext           1.6.0          [required by cohttp]
  - install topkg               1.1.1          [required by cmarkit]
  - install uri                 4.4.0          [required by cohttp-lwt, cohttp, conduit-lwt-unix]
  - install uri-sexp            4.4.0          [required by cohttp]
  - install x509                1.0.6          [required by ca-certs]
  - install zarith              1.14           [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    gmp-devel openssl-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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/sbin/sudo "yum" "install" "-y" "gmp-devel" "openssl-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package        Arch   Version        Repository      Size
- Installing:
-  gmp-devel     x86_64 1:6.3.0-4.fc43 fedora     352.3 KiB
-  openssl-devel x86_64 1:3.5.4-1.fc43 updates      4.6 MiB
- Installing dependencies:
-  gmp-c++       x86_64 1:6.3.0-4.fc43 fedora      27.6 KiB
- 
- Transaction Summary:
-  Installing:         3 packages
- 
- Total size of inbound packages is 3 MiB. Need to download 3 MiB.
- After this operation, 5 MiB extra will be used (install 5 MiB, remove 0 B).
- [1/3] gmp-devel-1:6.3.0-4.fc43.x86_64   100% |   3.3 MiB/s | 174.3 KiB |  00m00s
- [2/3] gmp-c++-1:6.3.0-4.fc43.x86_64     100% | 347.2 KiB/s |  18.4 KiB |  00m00s
- [3/3] openssl-devel-1:3.5.4-1.fc43.x86_ 100% |  22.3 MiB/s |   3.0 MiB |  00m00s
- --------------------------------------------------------------------------------
- [3/3] Total                             100% |   6.2 MiB/s |   3.2 MiB |  00m01s
- Running transaction
- [1/5] Verify package files              100% | 157.0   B/s |   3.0   B |  00m00s
- [2/5] Prepare transaction               100% |  22.0   B/s |   3.0   B |  00m00s
- [3/5] Installing gmp-c++-1:6.3.0-4.fc43 100% |   7.0 MiB/s |  28.5 KiB |  00m00s
- [4/5] Installing gmp-devel-1:6.3.0-4.fc 100% |  19.2 MiB/s | 354.1 KiB |  00m00s
- [5/5] Installing openssl-devel-1:3.5.4- 100% |  32.7 MiB/s |   5.6 MiB |  00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel" "openssl-devel"
- gmp-devel-6.3.0-4.fc43.x86_64
- openssl-devel-3.5.4-1.fc43.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.1  (cached)
-> retrieved cmarkit.0.4.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1  (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved conf-libssl.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> installed conf-libssl.4
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.0.0  (cached)
-> retrieved lwt_ssl.1.2.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved markdown_monolith.0.1.1  (cached)
-> installed cmdliner.2.1.0
-> retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved ssl.0.7.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed cmarkit.0.4.0
-> installed dune.3.20.2
-> installed base64.3.5.2
-> installed gmap.0.3.0
-> installed duration.0.2.1
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed cppo.1.8.0
-> installed domain-name.0.5.0
-> installed eqaf.0.10
-> installed http.6.2.1
-> installed macaddr.5.6.1
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.1
-> installed digestif.1.3.0
-> installed dune-configurator.3.20.2
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed ssl.0.7.0
-> installed mirage-crypto.2.0.2
-> installed kdf.1.0.0
-> installed lwt.6.0.0
-> installed uri.4.4.0
-> installed lwt_ssl.1.2.0
-> installed logs.0.10.0
-> installed base.v0.16.4
-> installed mirage-crypto-rng.2.0.2
-> installed mirage-crypto-pk.2.0.2
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.2
-> installed ppxlib.0.35.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppx_sexp_conv.v0.16.0
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed conduit.8.0.0
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed markdown_monolith.0.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 20:33.47 ---> saved as "09f626e16179503bb1540569ac76daee731761b0b85601c518659ef0e1463673"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test markdown_monolith.0.1.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile markdown_monolith 0.1.1 (pinned)
=== install 2 packages
  - install   ounit2            2.2.7          [required by markdown_monolith]
  - install   seq               base           [required by ounit2]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> removed   markdown_monolith.0.1.1
-> installed seq.base
-> installed ounit2.2.2.7
-> installed markdown_monolith.0.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 20:33.54 ---> saved as "e9ee5577d3dfad38a45651bfe6656b27d0ab4a3f2e10a7e5abc4a01aa87519fc"

/home/opam: (run (shell  "opam reinstall --with-test --verbose markdown_monolith.0.1.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 \"\\\"fedora-43\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'markdown_monolith.0.1.1' && 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 markdown_monolith 0.1.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [markdown_monolith: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "markdown_monolith" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/markdown_monolith.0.1.1)
- (cd _build/default/test && ./test_bullet_ish_prefix.exe)
- ...........................
- Ran: 27 tests in: 0.13 seconds.
- OK
-> compiled  markdown_monolith.0.1.1
-> removed   markdown_monolith.0.1.1
-> installed markdown_monolith.0.1.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 20:33.58 ---> saved as "bd7de4d18f7b62181a8995355a191dbf1036409365425b0d49f3a0addeb06653"
Job succeeded
2026-01-13 20:34.10: Job succeeded