Build:
  1. 0
2026-04-27 23:58.46: New job: test smtml.0.26.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29812/head (160a71b79d3c8c528ed7c43eaca2f0e96fb4a7ee)
                              on debian-13-ocaml-5.4-flambda/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/29812/head" && git reset --hard 160a71b7
git fetch origin master
git merge --no-edit b42638729679a783548cfa342ca0a1f890310ac0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:0e1a7d231fc0dd5fd8124960d95ee18fb5740863b891f1273b49cfa1fa920658
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 smtml.0.26.0 0.26.0
RUN opam reinstall smtml.0.26.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.26.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.26.0) || true
RUN opam reinstall --with-test --verbose smtml.0.26.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.26.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-04-27 23:58.46: Using cache hint "ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:0e1a7d231fc0dd5fd8124960d95ee18fb5740863b891f1273b49cfa1fa920658-smtml.0.26.0-160a71b79d3c8c528ed7c43eaca2f0e96fb4a7ee"
2026-04-27 23:58.46: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:0e1a7d231fc0dd5fd8124960d95ee18fb5740863b891f1273b49cfa1fa920658)
 (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 smtml.0.26.0 0.26.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall smtml.0.26.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.26.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.26.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose smtml.0.26.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.26.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-04-27 23:58.46: Waiting for resource in pool OCluster
2026-04-27 23:58.46: Waiting for worker…
2026-04-27 23:58.47: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
HEAD is now at b426387296 Merge pull request #29811 from Julow/release-ciao_lwt-0.2
Updating b426387296..160a71b79d
Fast-forward
 packages/smtml/smtml.0.26.0/opam | 98 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 98 insertions(+)
 create mode 100644 packages/smtml/smtml.0.26.0/opam

(from ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:0e1a7d231fc0dd5fd8124960d95ee18fb5740863b891f1273b49cfa1fa920658)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4-flambda@sha256:0e1a7d231fc0dd5fd8124960d95ee18fb5740863b891f1273b49cfa1fa920658' locally
docker.io/ocaml/opam@sha256:0e1a7d231fc0dd5fd8124960d95ee18fb5740863b891f1273b49cfa1fa920658: Pulling from ocaml/opam
a7730063fcfe: Already exists
4ee4710ec793: Already exists
9bffbdd66231: Already exists
cbcc548423e6: Already exists
fe2acedc347c: Already exists
d316a4b5f6c7: Already exists
a7185b084615: Already exists
8f2e4b898a82: Already exists
c45b7ac3ea87: Already exists
7e67b51417c7: Already exists
bd7b73c72643: Already exists
6c18a46bf2ad: Already exists
f9e34f2a66c9: Already exists
d9ef36e01586: Already exists
97b411d0e48e: Already exists
7a801e16329f: Already exists
19d23084d713: Already exists
19d23084d713: Already exists
5a7e5c66431e: Already exists
70ef9a276312: Already exists
9ae2c497c2b0: Already exists
e8976e43e08e: Already exists
4f4fb700ef54: Already exists
c604dd6b8c73: Already exists
1eb18e837245: Already exists
255f5a23564e: Already exists
3f89e8909570: Already exists
132eabb3a260: Already exists
493b36718743: Already exists
969b57e3419b: Already exists
149edab32f52: Already exists
bd180ee6bae9: Already exists
cc8dae61ae77: Already exists
60d736b82f5f: Already exists
37e6ecf610fb: Already exists
f5a753da3473: Already exists
36e535949899: Already exists
95ef206c9a71: Already exists
a70d32c06711: Already exists
5ee0fcdd42b0: Already exists
767e030306e7: Already exists
fb05da4533b9: Pulling fs layer
48df1fabcde1: Pulling fs layer
6da9a4866f6d: Pulling fs layer
a89e8b5d68fd: Pulling fs layer
7f1e2c670c1a: Pulling fs layer
cf737afbd30e: Pulling fs layer
acc09ef95a96: Pulling fs layer
fb05da4533b9: Waiting
cf737afbd30e: Waiting
a89e8b5d68fd: Waiting
acc09ef95a96: Waiting
7f1e2c670c1a: Waiting
6da9a4866f6d: Waiting
48df1fabcde1: Waiting
fb05da4533b9: Download complete
fb05da4533b9: Pull complete
48df1fabcde1: Download complete
48df1fabcde1: Pull complete
6da9a4866f6d: Verifying Checksum
6da9a4866f6d: Download complete
6da9a4866f6d: Pull complete
7f1e2c670c1a: Download complete
cf737afbd30e: Verifying Checksum
cf737afbd30e: Download complete
acc09ef95a96: Verifying Checksum
acc09ef95a96: Download complete
a89e8b5d68fd: Verifying Checksum
a89e8b5d68fd: Download complete
a89e8b5d68fd: Pull complete
7f1e2c670c1a: Pull complete
cf737afbd30e: Pull complete
acc09ef95a96: Pull complete
Digest: sha256:0e1a7d231fc0dd5fd8124960d95ee18fb5740863b891f1273b49cfa1fa920658
Status: Downloaded newer image for ocaml/opam@sha256:0e1a7d231fc0dd5fd8124960d95ee18fb5740863b891f1273b49cfa1fa920658
2026-04-27 23:59.37 ---> using "ff1b63c620f997a8a775419eed0c8001e0638201608ae3e05ac124442f44e652" 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-04-27 23:59.37 ---> using "ee89c9d4dc15e4c88fe9cab1dfa7eaa6e7669719eae6d3249e5965e28aa35bae" 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-04-27 23:59.37 ---> using "43f315bdae0007a5340f6226ed1ac651bb2b360bc9304b3151a1040c8a3bbbc3" 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.1
# 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-variants" {= "5.4.1+options"}]
# compiler-packages    ocaml-compiler.5.4.1, ocaml-option-flambda.1, ocaml-options-only-flambda.1, ocaml-variants.5.4.1+options
# 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.1+options+flambda
2026-04-27 23:59.37 ---> using "d5de5e6b58ff524be8d82a94cb28810d498f0a33c1701b5e2cf5079e88ef130b" 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-04-27 23:59.37 ---> using "c7dc6a06724d6554ad0572d98a349d75c504bc347f12544199e4b57d4b318381" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-27 23:59.44 ---> saved as "5f37bec42cf2f4469eb66a72cda4e8446d9b8c975bc539d7ef60bf0fdbea00ee"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-28 00:00.04 ---> saved as "ae04bf15d08d999906a4f9b96a10e17e3b504be81234553330b20d40913c116a"

/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 [127 kB]
- Fetched 218 kB in 0s (1582 kB/s)
- Reading package lists...
- 
2026-04-28 00:00.06 ---> saved as "43829adb8101d2bd3c65249f21664afd10baecf0139d75610ed495f1463108c5"

/home/opam: (run (shell "opam pin add -k version -yn smtml.0.26.0 0.26.0"))
smtml is now pinned to version 0.26.0
2026-04-28 00:00.06 ---> saved as "dff16ce5f683b46cbbd0fc6a9c2e21c81c7d373f157409a00d8bab5afe63e00c"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall smtml.0.26.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.26.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.26.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 62 packages
  - install astring                 0.8.5           [required by bos]
  - install base                    v0.17.3         [required by ppx_enumerate]
  - install bos                     0.3.0           [required by smtml]
  - install cmdliner                2.1.1           [required by smtml]
  - install conf-gmp                5               [required by zarith]
  - install conf-pkg-config         4               [required by zarith]
  - install cppo                    1.8.0           [required by ppx_deriving]
  - install csexp                   1.5.2           [required by dune-private-libs]
  - install dolmen                  0.10            [required by smtml]
  - install dolmen_loop             0.10            [required by dolmen_model]
  - install dolmen_model            0.10            [required by smtml]
  - install dolmen_type             0.10            [required by smtml]
  - install dune                    3.22.2          [required by smtml]
  - install dune-build-info         3.22.2          [required by smtml]
  - install dune-configurator       3.22.2          [required by ocaml_intrinsics]
  - install dune-private-libs       3.22.2          [required by dune-site]
  - install dune-site               3.22.2          [required by smtml]
  - install dyn                     3.22.2          [required by dune-private-libs]
  - install farith                  0.1             [required by smtml]
  - install fmt                     0.11.0          [required by smtml]
  - install fpath                   0.7.3           [required by smtml]
  - install fs-io                   3.22.2          [required by stdune]
  - install gen                     1.1             [required by dolmen_loop, sedlex]
  - install hc                      0.5             [required by smtml]
  - install hmap                    0.8.1           [required by dolmen]
  - install logs                    0.10.0          [required by bos]
  - install menhir                  20250912        [required by smtml]
  - install menhirCST               20250912        [required by menhir]
  - install menhirLib               20250912        [required by menhir]
  - install menhirSdk               20250912        [required by menhir]
  - install mtime                   2.1.0           [required by smtml]
  - install ocaml-compiler-libs     v0.17.0         [required by ppxlib]
  - install ocaml_intrinsics        v0.17.0         [required by smtml]
  - install ocaml_intrinsics_kernel v0.17.1         [required by ocaml_intrinsics]
  - install ocamlbuild              0.16.1          [required by bos, mtime]
  - install ocamlfind               1.9.8           [required by bos, mtime]
  - install ordering                3.22.2          [required by dyn, stdune]
  - install pp                      2.0.0           [required by dune-private-libs]
  - install pp_loc                  2.1.0           [required by dolmen_loop]
  - 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 smtml]
  - install ppx_enumerate           v0.17.0         [required by smtml]
  - install ppx_hash                v0.17.0         [required by farith]
  - install ppx_sexp_conv           v0.17.1         [required by ppx_hash]
  - install ppxlib                  0.38.0          [required by ppx_enumerate]
  - install ppxlib_jane             v0.17.4         [required by ppx_enumerate]
  - install prelude                 0.5             [required by smtml]
  - install rresult                 0.7.0           [required by smtml]
  - install scfg                    0.5             [required by smtml]
  - install sedlex                  3.7             [required by scfg]
  - install seq                     base            [required by dolmen]
  - install sexplib0                v0.17.0         [required by base]
  - install smtml                   0.26.0 (pinned)
  - install spelll                  0.4             [required by dolmen_type]
  - install stdlib-shims            0.3.0           [required by spelll, ppxlib]
  - install stdune                  3.22.2          [required by dune-private-libs]
  - install top-closure             3.22.2          [required by stdune]
  - install topkg                   1.1.1           [required by bos, mtime]
  - install uutf                    1.0.4           [required by dolmen_type]
  - install yojson                  3.0.0           [required by smtml]
  - install zarith                  1.14            [required by smtml]

The following system packages will first need to be installed:
    libgmp-dev 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" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl: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-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 .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- 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 libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved bos.0.3.0  (cached)
-> retrieved cmdliner.2.1.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved dolmen.0.10, dolmen_loop.0.10, dolmen_model.0.10, dolmen_type.0.10  (cached)
-> retrieved dune.3.22.2, dune-build-info.3.22.2, dune-configurator.3.22.2, dune-private-libs.3.22.2, dune-site.3.22.2, dyn.3.22.2, fs-io.3.22.2, ordering.3.22.2, stdune.3.22.2, top-closure.3.22.2  (cached)
-> retrieved farith.0.1  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved hc.0.5  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> installed cmdliner.2.1.1
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml_intrinsics.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 pp.2.0.0  (cached)
-> retrieved pp_loc.2.1.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_hash.v0.17.0  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved prelude.0.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved scfg.0.5  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved smtml.0.26.0  (cached)
-> retrieved spelll.0.4  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed rresult.0.7.0
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.3.0
-> installed dune.3.22.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed dune-build-info.3.22.2
-> installed fs-io.3.22.2
-> installed gen.1.1
-> installed hc.0.5
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ordering.3.22.2
-> installed pp.2.0.0
-> installed pp_loc.2.1.0
-> installed ppx_derivers.1.2.1
-> installed prelude.0.5
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed top-closure.3.22.2
-> installed yojson.3.0.0
-> installed dune-configurator.3.22.2
-> installed spelll.0.4
-> installed dyn.3.22.2
-> installed ocaml_intrinsics.v0.17.0
-> installed stdune.3.22.2
-> installed dune-private-libs.3.22.2
-> installed base.v0.17.3
-> installed dune-site.3.22.2
-> installed menhir.20250912
-> installed ppxlib.0.38.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_enumerate.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_deriving.6.1.1
-> installed ppx_sexp_conv.v0.17.1
-> installed sedlex.3.7
-> installed dolmen.0.10
-> installed ppx_hash.v0.17.0
-> installed scfg.0.5
-> installed dolmen_type.0.10
-> installed farith.0.1
-> installed dolmen_loop.0.10
-> installed dolmen_model.0.10
-> installed smtml.0.26.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-28 00:02.55 ---> saved as "0feac36f48c2b86a8c0b08b48c3ba775941f8b984e4dcd528af729d7877b9368"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test smtml.0.26.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile smtml         0.26.0 (pinned)
=== install 6 packages
  - install   camlp-streams 5.0.1           [required by mdx]
  - install   mdx           2.5.2           [required by smtml]
  - install   ocaml-version 4.1.0           [required by mdx]
  - install   ounit2        2.2.7           [required by smtml]
  - install   re            1.14.0          [required by mdx]
  - install   result        1.5             [required by mdx]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved mdx.2.5.2  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.1.0  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (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 camlp-streams.5.0.1
-> installed ocaml-version.4.1.0
-> installed result.1.5
-> installed re.1.14.0
-> removed   smtml.0.26.0
-> installed ounit2.2.2.7
-> installed mdx.2.5.2
-> installed smtml.0.26.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-28 00:03.20 ---> saved as "b766ae1ddcd771b096b548ac31e16e99067193588f45dd73401e8c4eb174a206"

/home/opam: (run (shell  "opam reinstall --with-test --verbose smtml.0.26.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.26.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 smtml 0.26.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [smtml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "smtml" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/smtml.0.26.0)
- (cd _build/default/test/unit && ./test_model.exe)
- ....
- Ran: 4 tests in: 0.11 seconds.
- OK
- (cd _build/default/test/unit && ./test_statistics.exe)
- .
- Ran: 1 tests in: 0.11 seconds.
- OK
- (cd _build/default/test/unit && ./test_extract_bits.exe)
- .....
- Ran: 5 tests in: 0.11 seconds.
- OK
- (cd _build/default/test/unit && ./test_bitvector.exe)
- .....................................
- Ran: 37 tests in: 0.12 seconds.
- OK
- (cd _build/default/test/unit && ./test_eval.exe)
- ..........................................................................................................................................................................
- Ran: 170 tests in: 0.14 seconds.
- OK
- (cd _build/default/test/unit && ./test_expr.exe)
- .........................................................................
- Ran: 73 tests in: 0.12 seconds.
- OK
Processing  2/4: [smtml: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "smtml" "--create-install-files" "smtml" (CWD=/home/opam/.opam/5.4/.opam-switch/build/smtml.0.26.0)
-> compiled  smtml.0.26.0
-> removed   smtml.0.26.0
-> installed smtml.0.26.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-28 00:03.38 ---> saved as "13cebdb2222ff3a716f360c82134746691146185abea514f87801c7f69525793"
Job succeeded
2026-04-28 00:03.47: Job succeeded