Build:
- 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 archlinux-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/29812/head" && git reset --hard 160a71b7
git fetch origin master
git merge --no-edit b42638729679a783548cfa342ca0a1f890310ac0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:264f7c6ad6e3a4f50a6465b32af5b137d8f3ba9e7c6a612edf9d49cfa309e4d8
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 "\"archlinux\""; 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 "\"archlinux\""; 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:archlinux-ocaml-4.14@sha256:264f7c6ad6e3a4f50a6465b32af5b137d8f3ba9e7c6a612edf9d49cfa309e4d8-smtml.0.26.0-160a71b79d3c8c528ed7c43eaca2f0e96fb4a7ee"
2026-04-27 23:58.46: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:264f7c6ad6e3a4f50a6465b32af5b137d8f3ba9e7c6a612edf9d49cfa309e4d8)
(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 \"\\\"archlinux\\\"\"; 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 \"\\\"archlinux\\\"\"; 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 toxis.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:archlinux-ocaml-4.14@sha256:264f7c6ad6e3a4f50a6465b32af5b137d8f3ba9e7c6a612edf9d49cfa309e4d8)
Unable to find image 'ocaml/opam:archlinux-ocaml-4.14@sha256:264f7c6ad6e3a4f50a6465b32af5b137d8f3ba9e7c6a612edf9d49cfa309e4d8' locally
docker.io/ocaml/opam@sha256:264f7c6ad6e3a4f50a6465b32af5b137d8f3ba9e7c6a612edf9d49cfa309e4d8: Pulling from ocaml/opam
1dd624a5d250: Already exists
ab6ef42a20b3: Already exists
8335b2da987f: Already exists
07053c5e0684: Already exists
1a77621a839a: Already exists
34e0639e9c9b: Already exists
cbb65aec2778: Already exists
f15678b0d94e: Already exists
2859404e1f79: Already exists
e1251a8ee6a9: Already exists
9e240a85c667: Already exists
f7f232c44105: Already exists
3cf2da3f0427: Already exists
6ae550de2c94: Already exists
6ae550de2c94: Already exists
4f4fb700ef54: Already exists
10691a79ad56: Already exists
fc6bf6e518a8: Already exists
2c2332ebfc4e: Already exists
2244f80174da: Already exists
8b8a8da2fcc9: Already exists
45a4d5a95293: Already exists
6ad4a54fd688: Already exists
6945723d26db: Already exists
58d384831e2f: Already exists
cfa289cf0dae: Already exists
9269dbf7d853: Already exists
f53312768181: Already exists
054a65f3adcf: Already exists
3895fdaa1f8e: Already exists
7ea80ad38e3f: Already exists
40f3bd58c539: Already exists
7af57c27a2d4: Already exists
a97d03ec00ee: Already exists
04b0eae1af79: Pulling fs layer
fb9c1774773f: Pulling fs layer
4ae8a50f6f76: Pulling fs layer
8f670490e187: Pulling fs layer
ee9811bbedf9: Pulling fs layer
8f670490e187: Waiting
ee9811bbedf9: Waiting
4ae8a50f6f76: Download complete
8f670490e187: Download complete
ee9811bbedf9: Download complete
fb9c1774773f: Verifying Checksum
fb9c1774773f: Download complete
04b0eae1af79: Verifying Checksum
04b0eae1af79: Download complete
04b0eae1af79: Pull complete
fb9c1774773f: Pull complete
4ae8a50f6f76: Pull complete
8f670490e187: Pull complete
ee9811bbedf9: Pull complete
Digest: sha256:264f7c6ad6e3a4f50a6465b32af5b137d8f3ba9e7c6a612edf9d49cfa309e4d8
Status: Downloaded newer image for ocaml/opam@sha256:264f7c6ad6e3a4f50a6465b32af5b137d8f3ba9e7c6a612edf9d49cfa309e4d8
2026-04-28 00:01.20 ---> saved as "b335f4c14c78032abc317eb8006625b82c0f1066f818e0cab492de0956140fc6"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-28 00:01.21 ---> saved as "b0212cf2130f67a4aca66fbb2e988e8f5b440b4945f4d68b02bf82f9098c53a3"
/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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] no changes from git+https://github.com/ocurrent/opam-repository#patches
[default] Initialised
2026-04-28 00:01.56 ---> saved as "c311075b570f857276b9fd2a40672c555b29cc10eaff160e4bc3cea16faccc83"
/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=arch os-version=20260419.0.517065
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 2 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, 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.3
2026-04-28 00:01.57 ---> saved as "049a36eaa382450cdf08ab964e7cc4bceb980e6d3bb9b1a5e6abaf0278c72f83"
/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-28 00:02.07 ---> saved as "4d20113876644673c11e54c3fc0ba199419fe558f82254a5396ba453da9954db"
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-28 00:02.15 ---> saved as "12480c29b2bed15714b3487134b3defe52cb9791c66bc2d4608bbe032821701b"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-28 00:02.37 ---> saved as "afae9ad0998f366f89447f080b48a6d470122ed6592cb0130f494076db5db296"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-04-28 00:02.37 ---> saved as "3e93ca0bee762e4506a30f69440634cf260c2ee57551fc6935496869ca630ca9"
/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:02.38 ---> saved as "4b9a35c83b868df80f1f305ba681f09e1873185eef6890180ad857c5a5b1ee41"
/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 \"\\\"archlinux\\\"\"; 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 60 packages
∗ astring 0.8.5 [required by bos]
∗ base v0.16.5 [required by ppx_enumerate]
∗ bos 0.3.0 [required by smtml]
∗ cmdliner 2.1.1 [required by smtml]
∗ conf-gmp 5 [required by zarith]
∗ conf-pkg-config 4 [required by zarith]
∗ cppo 1.8.0 [required by ppx_deriving]
∗ csexp 1.5.2 [required by dune-private-libs]
∗ dolmen 0.10 [required by smtml]
∗ dolmen_loop 0.10 [required by dolmen_model]
∗ dolmen_model 0.10 [required by smtml]
∗ dolmen_type 0.10 [required by smtml]
∗ dune 3.22.2 [required by smtml]
∗ dune-build-info 3.22.2 [required by smtml]
∗ dune-configurator 3.22.2 [required by ocaml_intrinsics]
∗ dune-private-libs 3.22.2 [required by dune-site]
∗ dune-site 3.22.2 [required by smtml]
∗ dyn 3.22.2 [required by dune-private-libs]
∗ farith 0.1 [required by smtml]
∗ fmt 0.11.0 [required by smtml]
∗ fpath 0.7.3 [required by smtml]
∗ fs-io 3.22.2 [required by stdune]
∗ gen 1.1 [required by dolmen_loop, sedlex]
∗ hc 0.5 [required by smtml]
∗ hmap 0.8.1 [required by dolmen]
∗ logs 0.10.0 [required by bos]
∗ menhir 20250912 [required by smtml]
∗ menhirCST 20250912 [required by menhir]
∗ menhirLib 20250912 [required by menhir]
∗ menhirSdk 20250912 [required by menhir]
∗ mtime 2.1.0 [required by smtml]
∗ ocaml-compiler-libs v0.12.4 [required by ppxlib]
∗ ocaml_intrinsics v0.16.2 [required by smtml]
∗ ocamlbuild 0.16.1 [required by bos, mtime]
∗ ocamlfind 1.9.8 [required by bos, mtime]
∗ ordering 3.22.2 [required by dyn, stdune]
∗ pp 2.0.0 [required by dune-private-libs]
∗ pp_loc 2.1.0 [required by dolmen_loop]
∗ ppx_compare v0.16.0 [required by ppx_hash]
∗ ppx_derivers 1.2.1 [required by ppx_deriving]
∗ ppx_deriving 6.0.3 [required by smtml]
∗ ppx_enumerate v0.16.0 [required by smtml]
∗ ppx_hash v0.16.0 [required by farith]
∗ ppx_sexp_conv v0.16.0 [required by ppx_hash]
∗ ppxlib 0.35.0 [required by ppx_enumerate]
∗ prelude 0.5 [required by smtml]
∗ rresult 0.7.0 [required by smtml]
∗ scfg 0.5 [required by smtml]
∗ sedlex 3.7 [required by scfg]
∗ seq base [required by dolmen]
∗ sexplib0 v0.16.0 [required by base]
∗ smtml 0.26.0 (pinned)
∗ spelll 0.4 [required by dolmen_type]
∗ stdlib-shims 0.3.0 [required by spelll, ppxlib]
∗ stdune 3.22.2 [required by dune-private-libs]
∗ top-closure 3.22.2 [required by stdune]
∗ topkg 1.1.1 [required by bos, mtime]
∗ uutf 1.0.4 [required by dolmen_type]
∗ yojson 3.0.0 [required by smtml]
∗ zarith 1.14 [required by smtml]
The following system packages will first need to be installed:
pkgconf
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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 "pacman" "-Su" "--noconfirm" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (5) Old Version New Version Net Change Download Size
-
- extra/bubblewrap 0.11.1-1 0.11.2-1 0.00 MiB 0.04 MiB
- core/expat 2.7.5-1 2.8.0-1 0.01 MiB 0.12 MiB
- core/libgpg-error 1.59-1 1.60-1 0.01 MiB 0.27 MiB
- core/sed 4.9-3 4.10-1 0.08 MiB 0.24 MiB
- core/pkgconf 2.5.1-1 0.20 MiB 0.07 MiB
-
- Total Download Size: 0.74 MiB
- Total Installed Size: 2.68 MiB
- Net Upgrade Size: 0.28 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- libgpg-error-1.60-1-x86_64 downloading...
- sed-4.10-1-x86_64 downloading...
- expat-2.8.0-1-x86_64 downloading...
- pkgconf-2.5.1-1-x86_64 downloading...
- bubblewrap-0.11.2-1-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- installing pkgconf...
- upgrading libgpg-error...
- upgrading bubblewrap...
- upgrading expat...
- upgrading sed...
- :: Running post-transaction hooks...
- (1/1) Arming ConditionNeedsUpdate...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved astring.0.8.5 (cached)
⬇ retrieved base.v0.16.5 (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-gmp.5
∗ installed conf-pkg-config.4
⬇ 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)
⬇ retrieved mtime.2.1.0 (cached)
⬇ retrieved ocaml-compiler-libs.v0.12.4 (cached)
⬇ retrieved ocaml_intrinsics.v0.16.2 (cached)
⬇ retrieved ocamlbuild.0.16.1 (cached)
∗ installed cmdliner.2.1.1
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved pp.2.0.0 (cached)
⬇ retrieved pp_loc.2.1.0 (cached)
⬇ retrieved ppx_compare.v0.16.0 (cached)
⬇ retrieved ppx_derivers.1.2.1 (cached)
⬇ retrieved ppx_deriving.6.0.3 (cached)
⬇ retrieved ppx_enumerate.v0.16.0 (cached)
⬇ retrieved ppx_hash.v0.16.0 (cached)
⬇ retrieved ppx_sexp_conv.v0.16.0 (cached)
⬇ retrieved ppxlib.0.35.0 (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.16.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 ocamlbuild.0.16.1
∗ installed zarith.1.14
∗ installed topkg.1.1.1
∗ installed hmap.0.8.1
∗ installed rresult.0.7.0
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed mtime.2.1.0
∗ 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.12.4
∗ 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.16.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.16.2
∗ installed stdune.3.22.2
∗ installed base.v0.16.5
∗ installed dune-private-libs.3.22.2
∗ installed dune-site.3.22.2
∗ installed menhir.20250912
∗ installed ppxlib.0.35.0
∗ installed ppx_enumerate.v0.16.0
∗ installed ppx_compare.v0.16.0
∗ installed ppx_sexp_conv.v0.16.0
∗ installed ppx_deriving.6.0.3
∗ installed sedlex.3.7
∗ installed ppx_hash.v0.16.0
∗ installed scfg.0.5
∗ installed dolmen.0.10
∗ installed farith.0.1
∗ installed dolmen_type.0.10
∗ 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:04.13 ---> saved as "635330822d18fdd6719f5d876b2afbfa2eab90dfe5c60e3186153f06a6c5c504"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test smtml.0.26.0) || true"))
The following actions will be performed:
=== recompile 1 package
↻ smtml 0.26.0 (pinned)
=== install 6 packages
∗ camlp-streams 5.0.1 [required by mdx]
∗ mdx 2.5.2 [required by smtml]
∗ ocaml-version 4.1.0 [required by mdx]
∗ ounit2 2.2.7 [required by smtml]
∗ re 1.14.0 [required by mdx]
∗ 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)
∗ installed camlp-streams.5.0.1
⬇ 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 ocaml-version.4.1.0
∗ installed result.1.5
∗ installed ounit2.2.2.7
⊘ removed smtml.0.26.0
∗ installed re.1.14.0
∗ 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:04.29 ---> saved as "b488159fd8836f2341826824753f833dbdd7a4ddf73176c4f40056e3be6a0a21"
/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 \"\\\"archlinux\\\"\"; 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
↻ 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/4.14/.opam-switch/build/smtml.0.26.0)
- (cd _build/default/test/unit && ./test_statistics.exe)
- .
- Ran: 1 tests in: 0.10 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.11 seconds.
- OK
- (cd _build/default/test/unit && ./test_model.exe)
- ....
- Ran: 4 tests in: 0.11 seconds.
- OK
- (cd _build/default/test/unit && ./test_expr.exe)
- .........................................................................
- Ran: 73 tests in: 0.12 seconds.
- OK
- (cd _build/default/test/unit && ./test_eval.exe)
- ..........................................................................................................................................................................
- Ran: 170 tests in: 0.14 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/4.14/.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:04.38 ---> saved as "46457f3d604506c624d470ca3467ed746e22071c2048e5cfe1bc5019ea9263a5"
Job succeeded
2026-04-28 00:04.45: Job succeeded