Build:
  1. 0
2026-03-12 11:19.25: New job: test smtml.0.10.0 with colibri2.0.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29484/head (1b330fadfbca45ff79eea30cec2cd15a1b2a42b9)
                              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/29484/head" && git reset --hard 1b330fad
git fetch origin master
git merge --no-edit 6d75ddf1d37818547f88125983edb2e55e55ed23
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 colibri2.0.5 0.5
RUN opam reinstall colibri2.0.5; \
    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" != 'colibri2.0.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall smtml.0.10.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" != 'smtml.0.10.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 smtml.0.10.0) || true
RUN opam reinstall --with-test --verbose smtml.0.10.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" != 'smtml.0.10.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 .

2026-03-12 11:19.25: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-colibri2.0.5-smtml.0.10.0-1b330fadfbca45ff79eea30cec2cd15a1b2a42b9"
2026-03-12 11:19.25: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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 colibri2.0.5 0.5"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall colibri2.0.5;\
             \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\" != 'colibri2.0.5' && 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 smtml.0.10.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\" != 'smtml.0.10.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 smtml.0.10.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose smtml.0.10.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\" != 'smtml.0.10.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-12 11:19.25: Waiting for resource in pool OCluster
2026-03-12 11:19.25: Waiting for worker…
2026-03-12 11:19.26: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  62% (11570/18436)
Updating files:  63% (11615/18436)
Updating files:  64% (11800/18436)
Updating files:  65% (11984/18436)
Updating files:  66% (12168/18436)
Updating files:  67% (12353/18436)
Updating files:  68% (12537/18436)
Updating files:  69% (12721/18436)
Updating files:  70% (12906/18436)
Updating files:  71% (13090/18436)
Updating files:  72% (13274/18436)
Updating files:  73% (13459/18436)
Updating files:  74% (13643/18436)
Updating files:  75% (13827/18436)
Updating files:  76% (14012/18436)
Updating files:  77% (14196/18436)
Updating files:  78% (14381/18436)
Updating files:  79% (14565/18436)
Updating files:  80% (14749/18436)
Updating files:  81% (14934/18436)
Updating files:  82% (15118/18436)
Updating files:  83% (15302/18436)
Updating files:  84% (15487/18436)
Updating files:  85% (15671/18436)
Updating files:  86% (15855/18436)
Updating files:  87% (16040/18436)
Updating files:  88% (16224/18436)
Updating files:  89% (16409/18436)
Updating files:  90% (16593/18436)
Updating files:  91% (16777/18436)
Updating files:  92% (16962/18436)
Updating files:  93% (17146/18436)
Updating files:  94% (17330/18436)
Updating files:  95% (17515/18436)
Updating files:  96% (17699/18436)
Updating files:  97% (17883/18436)
Updating files:  98% (18068/18436)
Updating files:  99% (18252/18436)
Updating files: 100% (18436/18436)
Updating files: 100% (18436/18436), done.
HEAD is now at 6d75ddf1d3 Merge pull request #29495 from toots/opam-publish-posix-bindings.4.0.2
Merge made by the 'ort' strategy.
 packages/colibri2/colibri2.0.5/opam               | 70 +++++++++++++++++++++++
 packages/colibrics/colibrics.0.5/opam             | 50 ++++++++++++++++
 packages/colibrilib-why3/colibrilib-why3.0.5/opam | 40 +++++++++++++
 packages/colibrilib/colibrilib.0.5/opam           | 40 +++++++++++++
 4 files changed, 200 insertions(+)
 create mode 100644 packages/colibri2/colibri2.0.5/opam
 create mode 100644 packages/colibrics/colibrics.0.5/opam
 create mode 100644 packages/colibrilib-why3/colibrilib-why3.0.5/opam
 create mode 100644 packages/colibrilib/colibrilib.0.5/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-12 11:19.35 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-12 11:19.35 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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
2026-03-12 11:19.35 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-12 11:19.35 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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/"))
2026-03-12 11:19.35 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-12 11:19.49 ---> saved as "37ec91bcb216f1a75d9fcfd727b64ff332bb1e5c8ad12036f26c67cdedf2eaf6"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-12 11:20.25 ---> saved as "2e0ba0e6e24a10a8f3df632bf869f9c65e2b03762b8068ccd64d35fc521e4c67"

/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 [109 kB]
- Fetched 199 kB in 0s (1009 kB/s)
- Reading package lists...
- 
2026-03-12 11:20.27 ---> saved as "7a4131ff6fa11e9d081afbc704401ddf206f0993fcbec65f38b7d2ad7966981b"

/home/opam: (run (shell "opam pin add -k version -yn colibri2.0.5 0.5"))
colibri2 is now pinned to version 0.5
2026-03-12 11:20.29 ---> saved as "2b3f7cd7d2900bed94556ec797567db732fbbf03717ece8de4553fbe3af39718"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall colibri2.0.5;\
                        \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\" != 'colibri2.0.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
colibri2.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 71 packages
  - install base                    v0.17.3      [required by colibri2]
  - install camlidl                 1.13         [required by mlcuddidl]
  - install cmdliner                2.1.0        [required by colibri2]
  - install colibri2                0.5 (pinned)
  - install colibrilib              0.5          [required by colibri2]
  - install conf-flint              3.0          [required by flint]
  - install conf-gmp                5            [required by zarith, conf-mpfr]
  - install conf-m4                 1            [required by mlcuddidl]
  - install conf-mpfr               3            [required by flint]
  - install conf-pkg-config         4            [required by flint]
  - install containers              3.18         [required by colibri2]
  - install cppo                    1.8.0        [required by ppx_deriving]
  - install csexp                   1.5.2        [required by dune-configurator]
  - install ctypes                  0.24.0       [required by flint]
  - install dolmen                  0.10         [required by colibri2]
  - install dolmen_loop             0.10         [required by colibri2]
  - install dolmen_type             0.10         [required by colibri2]
  - install dune                    3.21.1       [required by colibri2]
  - install dune-build-info         3.21.1       [required by colibri2]
  - install dune-configurator       3.21.1       [required by containers, base, flint]
  - install either                  1.0.0        [required by containers]
  - install farith                  0.1          [required by colibri2]
  - install flint                   0.4.2        [required by colibri2]
  - install fmt                     0.11.0       [required by dolmen]
  - install gen                     1.1          [required by colibri2]
  - install hmap                    0.8.1        [required by dolmen]
  - install integers                0.7.0        [required by ctypes]
  - install jane-street-headers     v0.17.0      [required by time_now]
  - install jst-config              v0.17.0      [required by time_now]
  - install logs                    0.10.0       [required by ocplib-simplex]
  - install menhir                  20250912     [required by dolmen]
  - install menhirCST               20250912     [required by menhir]
  - install menhirLib               20250912     [required by menhir]
  - install menhirSdk               20250912     [required by menhir]
  - install mlcuddidl               3.0.8        [required by colibri2]
  - install mtime                   2.1.0        [required by trace, trace-tef]
  - install ocaml-compiler-libs     v0.17.0      [required by ppxlib]
  - install ocaml_intrinsics_kernel v0.17.1      [required by base]
  - install ocamlbuild              0.16.1       [required by mlcuddidl]
  - install ocamlfind               1.9.8        [required by mlcuddidl, ocplib-simplex]
  - install ocamlgraph              2.2.0        [required by colibri2]
  - install ocplib-simplex          0.5.1        [required by colibri2]
  - install pp_loc                  2.1.0        [required by dolmen_loop]
  - 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_hash]
  - install ppx_derivers            1.2.1        [required by ppx_deriving]
  - install ppx_deriving            6.1.1        [required by colibri2]
  - install ppx_enumerate           v0.17.0      [required by ppx_base]
  - install ppx_globalize           v0.17.2      [required by ppx_base]
  - install ppx_hash                v0.17.0      [required by colibri2]
  - install ppx_here                v0.17.0      [required by colibri2]
  - install ppx_inline_test         v0.17.1      [required by colibri2]
  - install ppx_optcomp             v0.17.1      [required by colibri2]
  - install ppx_sexp_conv           v0.17.1      [required by ppx_hash]
  - install ppxlib                  0.37.0       [required by ppx_here, ppx_inline_test]
  - install ppxlib_jane             v0.17.4      [required by ppx_hash]
  - install qcheck-core             0.91         [required by colibri2]
  - install re                      1.14.0       [required by colibri2]
  - install seq                     base         [required by dolmen]
  - install sexplib0                v0.17.0      [required by base]
  - install spelll                  0.4          [required by dolmen_type]
  - install stdio                   v0.17.0      [required by ppx_optcomp]
  - install stdlib-shims            0.3.0        [required by ppxlib, spelll, integers]
  - install time_now                v0.17.0      [required by ppx_inline_test]
  - install topkg                   1.1.1        [required by logs, fmt, hmap, mtime]
  - install trace                   0.12         [required by colibri2]
  - install trace-tef               0.12         [required by colibri2]
  - install uutf                    1.0.4        [required by dolmen_type]
  - install zarith                  1.14         [required by colibri2]

The following system packages will first need to be installed:
    libflint-dev libgmp-dev libmpfr-dev m4 pkg-config

<><> 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" "libflint-dev" "libgmp-dev" "libmpfr-dev" "m4" "pkg-config"
- Selecting previously unselected package libflint19:amd64.
- (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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libflint19_3.1.3-2_amd64.deb ...
- Unpacking libflint19:amd64 (3.1.3-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../1-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../2-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libmpfr-dev:amd64.
- Preparing to unpack .../3-libmpfr-dev_4.2.2-1_amd64.deb ...
- Unpacking libmpfr-dev:amd64 (4.2.2-1) ...
- Selecting previously unselected package libflint-dev.
- Preparing to unpack .../4-libflint-dev_3.1.3-2_amd64.deb ...
- Unpacking libflint-dev (3.1.3-2) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../5-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../6-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up m4 (1.4.19-8) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libflint19:amd64 (3.1.3-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libmpfr-dev:amd64 (4.2.2-1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libflint-dev (3.1.3-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (cached)
-> retrieved camlidl.1.13  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved colibri2.0.5, colibrilib.0.5  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-mpfr.3  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> installed conf-m4.1
-> retrieved containers.3.18  (cached)
-> installed conf-flint.3.0
-> installed conf-mpfr.3
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> installed camlidl.1.13
-> retrieved dolmen.0.10, dolmen_loop.0.10, dolmen_type.0.10  (cached)
-> retrieved dune.3.21.1, dune-build-info.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved farith.0.1  (cached)
-> retrieved flint.0.4.2  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> installed cmdliner.2.1.0
-> retrieved mlcuddidl.3.0.8  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocplib-simplex.0.5.1  (cached)
-> retrieved pp_loc.2.1.0  (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_deriving.6.1.1  (cached)
-> retrieved ppx_enumerate.v0.17.0  (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 qcheck-core.0.91  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved spelll.0.4  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved trace.0.12, trace-tef.0.12  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed mtime.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed mlcuddidl.3.0.8
-> installed dune.3.21.1
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed gen.1.1
-> installed jane-street-headers.v0.17.0
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocplib-simplex.0.5.1
-> installed pp_loc.2.1.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed qcheck-core.0.91
-> installed stdlib-shims.0.3.0
-> installed colibrilib.0.5
-> installed trace.0.12
-> installed ocamlgraph.2.2.0
-> installed spelll.0.4
-> installed integers.0.7.0
-> installed trace-tef.0.12
-> installed dune-build-info.3.21.1
-> installed dune-configurator.3.21.1
-> installed containers.3.18
-> installed ctypes.0.24.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed flint.0.4.2
-> installed menhir.20250912
-> 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_globalize.v0.17.2
-> installed ppx_enumerate.v0.17.0
-> installed ppx_deriving.6.1.1
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed dolmen.0.10
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed farith.0.1
-> installed dolmen_type.0.10
-> installed jst-config.v0.17.0
-> installed dolmen_loop.0.10
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed colibri2.0.5
Done.

<><> mlcuddidl.3.0.8 installed successfully <><><><><><><><><><><><><><><><><><>
=> For supporting ocaml 5 some modules are removed compared to the release
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:23.05 ---> saved as "9467ba3d8ccaaebe61f9748db419a5bc002f57cb09a10c8140035414ee7e43cf"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall smtml.0.10.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\" != 'smtml.0.10.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
smtml.0.10.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install astring          0.8.5   [required by bos]
  - install bos              0.2.1   [required by smtml]
  - install dolmen_model     0.10    [required by smtml]
  - install fpath            0.7.3   [required by smtml]
  - install hc               0.5     [required by smtml]
  - install ocaml_intrinsics v0.17.0 [required by smtml]
  - install patricia-tree    0.12.0  [required by smtml]
  - install prelude          0.5     [required by smtml]
  - install rresult          0.7.0   [required by bos]
  - install rusage           1.0.0   [required by smtml]
  - install scfg             0.5     [required by smtml]
  - install sedlex           3.7     [required by scfg]
  - install smtml            0.10.0
  - install yojson           3.0.0   [required by smtml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved dolmen_model.0.10  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved hc.0.5  (cached)
-> retrieved ocaml_intrinsics.v0.17.0  (cached)
-> retrieved patricia-tree.0.12.0  (cached)
-> retrieved prelude.0.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved rusage.1.0.0  (cached)
-> retrieved scfg.0.5  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved smtml.0.10.0  (cached)
-> installed hc.0.5
-> retrieved yojson.3.0.0  (cached)
-> installed rusage.1.0.0
-> installed prelude.0.5
-> installed rresult.0.7.0
-> installed astring.0.8.5
-> installed dolmen_model.0.10
-> installed ocaml_intrinsics.v0.17.0
-> installed patricia-tree.0.12.0
-> installed fpath.0.7.3
-> installed yojson.3.0.0
-> installed sedlex.3.7
-> installed bos.0.2.1
-> installed scfg.0.5
-> installed smtml.0.10.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 11:23.30 ---> saved as "a2f5337f95a673aaa879c141265db7a06b78cfdc503789240ad283d57b783783"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test smtml.0.10.0) || true"))
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 5.4.0
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0 -> ocaml < 4.13 -> dkml-base-compiler
    You can temporarily relax the switch invariant with `--update-invariant'
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 5.4.0
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0 -> ocaml < 4.11 -> ocaml-variants
  * Missing dependency:
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> ocaml-base-compiler (<= 3.07+1 | = 3.07+2 | = 3.08.0 | = 3.08.1 | = 3.08.2 | = 3.08.3 | = 3.08.4 | = 3.09.0) | ocaml-system (<= 3.07+1 | = 3.07+2 | >= 3.08.0) | ocaml-variants < 3.09.1~
    not available because the package is pinned to version 5.4.0
    unmet availability conditions, e.g. 'sys-ocaml-version = "5.4.1" & (os != "win32" | sys-ocaml-libc = "msvc")'
    no matching version
  * Missing dependency:
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0 -> ocaml < 4.11 -> ocaml-variants -> ocaml-beta
    unmet availability conditions: 'enable-ocaml-beta-repository'
  * Missing dependency:
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0 -> ocaml < 4.11 -> ocaml-variants -> system-msvc
    unmet availability conditions: 'os = "win32"'

No solution found, exiting
2026-03-12 11:23.43 ---> saved as "9daa71284c6cd3fa2e7a7c9d68724e274d3ce3ebd1f343e6941aa83a20bae945"

/home/opam: (run (shell  "opam reinstall --with-test --verbose smtml.0.10.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\" != 'smtml.0.10.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 5.4.0
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0 -> ocaml < 4.13 -> dkml-base-compiler
    You can temporarily relax the switch invariant with `--update-invariant'
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 5.4.0
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0 -> ocaml < 4.11 -> ocaml-variants
  * Missing dependency:
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> ocaml-base-compiler (<= 3.07+1 | = 3.07+2 | = 3.08.0 | = 3.08.1 | = 3.08.2 | = 3.08.3 | = 3.08.4 | = 3.09.0) | ocaml-system (<= 3.07+1 | = 3.07+2 | >= 3.08.0) | ocaml-variants < 3.09.1~
    not available because the package is pinned to version 5.4.0
    unmet availability conditions, e.g. 'sys-ocaml-version = "5.4.1" & (os != "win32" | sys-ocaml-libc = "msvc")'
    no matching version
  * Missing dependency:
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0 -> ocaml < 4.11 -> ocaml-variants -> ocaml-beta
    unmet availability conditions: 'enable-ocaml-beta-repository'
  * Missing dependency:
    - smtml = 0.10.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0 -> ocaml < 4.11 -> ocaml-variants -> system-msvc
    unmet availability conditions: 'os = "win32"'

No solution found, exiting
'opam reinstall --with-test --verbose smtml.0.10.0' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose smtml.0.10.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" != 'smtml.0.10.0' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 20
2026-03-12 11:24.10: Job failed: Failed: Build failed
2026-03-12 11:24.10: Log analysis:
2026-03-12 11:24.10: >>> 
No solution found, exiting
 (score = 100)
2026-03-12 11:24.10: >>> 
No solution found, exiting
 (score = 100)
2026-03-12 11:24.10: [SKIP] Package not available