Build:
- 0
2025-12-15 14:00.32: New job: test smtml.0.17.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29098/head (1c7194f6c9c3ce1678c40ccb1e4394ac65f2441d)
on fedora-41-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/29098/head" && git reset --hard 1c7194f6
git fetch origin master
git merge --no-edit 8b6f76de0667cb0c30783304412259e597e5cdc0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439
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.17.0 0.17.0
RUN opam reinstall smtml.0.17.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 "\"fedora-41\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'smtml.0.17.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.17.0) || true
RUN opam reinstall --with-test --verbose smtml.0.17.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 "\"fedora-41\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'smtml.0.17.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-12-15 14:00.32: Using cache hint "ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439-smtml.0.17.0-1c7194f6c9c3ce1678c40ccb1e4394ac65f2441d"
2025-12-15 14:00.32: Using OBuilder spec:
((from ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439)
(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.17.0 0.17.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall smtml.0.17.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 \"\\\"fedora-41\\\"\"; 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.17.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.17.0) || true"))
(run (shell "opam reinstall --with-test --verbose smtml.0.17.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 \"\\\"fedora-41\\\"\"; 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.17.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-15 14:00.32: Waiting for resource in pool OCluster
2025-12-15 19:06.47: Waiting for worker…
2025-12-15 19:09.46: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 8b6f76de06 Merge pull request #28894 from raphael-proust/opam-publish-lwt.6.0.0-beta01
Updating 8b6f76de06..1c7194f6c9
Fast-forward
packages/smtml/smtml.0.17.0/opam | 84 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 84 insertions(+)
create mode 100644 packages/smtml/smtml.0.17.0/opam
(from ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439)
Unable to find image 'ocaml/opam:fedora-41-ocaml-5.4@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439' locally
docker.io/ocaml/opam@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439: Pulling from ocaml/opam
f1504a8c5299: Pulling fs layer
f1504a8c5299: Waiting
f1504a8c5299: Verifying Checksum
f1504a8c5299: Download complete
f1504a8c5299: Pull complete
Digest: sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439
Status: Downloaded newer image for ocaml/opam@sha256:d3e7e01d7c7cf0b3c97e2332ee2d00e2d6c3f2c3ca5850b9369850cc4b481439
2025-12-15 19:16.54 ---> saved as "67b51f99ac7836393591a935eca5368aa4cb698201bcc99de9b2596806c042d7"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-15 19:16.55 ---> saved as "0d9e6b76c1781dfadeafdcb7c87a555afa0f9bf2c8b5617b1805bc4b7b4cb129"
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-15 19:17.21 ---> saved as "7d5314a85b7b3a54798ba577b69af3aca1204263c3461fbfe0ff5db84a6283d4"
/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.4.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=fedora os-version=41
# 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 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2025-12-15 19:17.22 ---> saved as "fb7491ec5386a50ef6183ed1214abe1c0839de16e7ac9692b23d3eac0b89f444"
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-12-15 19:17.33 ---> saved as "ce9858a29486abfefb6196aec06c98e00a6d34608e3f16664ac029c301fb3a5e"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-15 19:17.43 ---> saved as "85949f2efb9ba4ab3248964a9c3fcaaad6e39101644dc32625e987ab0aa035d9"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-15 19:18.04 ---> saved as "a472a25640963b3962a719569f5ac064a4f8089a1e3382e08c2024b129e4fd54"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 41 - x86_64 - Updates 100% | 41.9 KiB/s | 16.1 KiB | 00m00s
- Fedora 41 - x86_64 100% | 84.9 KiB/s | 23.3 KiB | 00m00s
- Fedora 41 openh264 (From Cisco) - x86_ 100% | 7.3 KiB/s | 986.0 B | 00m00s
- Repositories loaded.
- Metadata cache created.
2025-12-15 19:18.08 ---> saved as "dd40728b966681ff5e0dc620dad6f5a5848e370557486459466093195c565d6e"
/home/opam: (run (shell "opam pin add -k version -yn smtml.0.17.0 0.17.0"))
smtml is now pinned to version 0.17.0
2025-12-15 19:18.09 ---> saved as "34b996c35de3afe506c0b4f39f65cb7d4dc78e2818139c06392df2f9680db35d"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall smtml.0.17.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 \"\\\"fedora-41\\\"\"; 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.17.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.17.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 53 packages
- install astring 0.8.5 [required by bos]
- install base v0.17.3 [required by farith]
- install bos 0.2.1 [required by smtml]
- install cmdliner 2.1.0 [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-configurator]
- 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.20.2 [required by smtml]
- install dune-build-info 3.20.2 [required by smtml]
- install dune-configurator 3.20.2 [required by ocaml_intrinsics]
- install farith 0.1 [required by dolmen_model]
- install fmt 0.11.0 [required by smtml]
- install fpath 0.7.3 [required by smtml]
- 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 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 farith]
- install ppx_hash v0.17.0 [required by farith]
- install ppx_sexp_conv v0.17.1 [required by ppx_hash]
- install ppxlib 0.37.0 [required by sedlex]
- install ppxlib_jane v0.17.4 [required by ppx_hash]
- install prelude 0.5 [required by smtml]
- install rresult 0.7.0 [required by bos]
- 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.17.0 (pinned)
- install spelll 0.4 [required by dolmen_type]
- install stdlib-shims 0.3.0 [required by spelll, ppxlib]
- 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:
gmp-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/bin/sudo "yum" "install" "-y" "gmp-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- gmp-devel x86_64 1:6.3.0-2.fc41 fedora 352.3 KiB
- Installing dependencies:
- gmp-c++ x86_64 1:6.3.0-2.fc41 fedora 31.8 KiB
-
- Transaction Summary:
- Installing: 2 packages
-
- Total size of inbound packages is 193 KiB. Need to download 193 KiB.
- After this operation, 384 KiB extra will be used (install 384 KiB, remove 0 B).
- [1/2] gmp-c++-1:6.3.0-2.fc41.x86_64 100% | 6.6 KiB/s | 18.6 KiB | 00m03s
- [2/2] gmp-devel-1:6.3.0-2.fc41.x86_64 100% | 59.9 KiB/s | 174.4 KiB | 00m03s
- --------------------------------------------------------------------------------
- [2/2] Total 100% | 40.1 KiB/s | 193.0 KiB | 00m05s
- Running transaction
- [1/4] Verify package files 100% | 2.0 KiB/s | 2.0 B | 00m00s
- [2/4] Prepare transaction 100% | 54.0 B/s | 2.0 B | 00m00s
- [3/4] Installing gmp-c++-1:6.3.0-2.fc41 100% | 15.9 MiB/s | 32.6 KiB | 00m00s
- [4/4] Installing gmp-devel-1:6.3.0-2.fc 100% | 8.0 MiB/s | 354.1 KiB | 00m00s
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.3.0-2.fc41.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved cmdliner.2.1.0 (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.20.2, dune-build-info.3.20.2, dune-configurator.3.20.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.0
-> 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_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_hash.v0.17.0 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.37.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.17.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 fpath.0.7.3
-> installed logs.0.10.0
-> installed dune.3.20.2
-> installed bos.0.2.1
-> installed cppo.1.8.0
-> installed csexp.1.5.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 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 yojson.3.0.0
-> installed spelll.0.4
-> installed dune-build-info.3.20.2
-> installed dune-configurator.3.20.2
-> installed ocaml_intrinsics.v0.17.0
-> installed base.v0.17.3
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_deriving.6.1.1
-> installed ppx_compare.v0.17.0
-> installed sedlex.3.7
-> installed ppx_sexp_conv.v0.17.1
-> installed scfg.0.5
-> installed ppx_hash.v0.17.0
-> 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.17.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 19:19.20 ---> saved as "40885ff25776dc8868aeff36bf0106d53e966d1c378cadbcbdd4cd314fd2680a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test smtml.0.17.0) || true"))
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> dkml-base-compiler
You can temporarily relax the switch invariant with `--update-invariant'
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> ocaml-variants (< 4.05.2~ | >= 4.06.0)
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0 -> ocaml-compiler = 5.4.0 -> base-effects
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0 -> ocaml-compiler = 5.4.0 -> base-effects
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ppxlib < 0.36.0
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0 -> ocaml-compiler = 5.4.0 -> base-effects
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ppxlib < 0.26.0 -> ocaml-migrate-parsetree >= 1.3.1
* Missing dependency:
- smtml >= 0.17.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.0" & (os != "win32" | sys-ocaml-libc = "msvc")'
no matching version
* Missing dependency:
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> ocaml-variants >= 4.06.0 -> ocaml-beta
unmet availability conditions: 'enable-ocaml-beta-repository'
* Missing dependency:
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> ocaml-variants >= 4.06.0 -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
2025-12-15 19:19.28 ---> saved as "ec34bc360571b1d3f33159b7fedb674e50af6be731a206e3795a8a0554783e42"
/home/opam: (run (shell "opam reinstall --with-test --verbose smtml.0.17.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 \"\\\"fedora-41\\\"\"; 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.17.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.17.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> dkml-base-compiler
You can temporarily relax the switch invariant with `--update-invariant'
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> ocaml-variants (< 4.05.2~ | >= 4.06.0)
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0 -> ocaml-compiler = 5.4.0 -> base-effects
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml-migrate-parsetree >= 1.7.0
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0 -> ocaml-compiler = 5.4.0 -> base-effects
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ppxlib < 0.36.0
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0 -> ocaml-compiler = 5.4.0 -> base-effects
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ppxlib < 0.26.0 -> ocaml-migrate-parsetree >= 1.3.1
* Missing dependency:
- smtml >= 0.17.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.0" & (os != "win32" | sys-ocaml-libc = "msvc")'
no matching version
* Missing dependency:
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> ocaml-variants >= 4.06.0 -> ocaml-beta
unmet availability conditions: 'enable-ocaml-beta-repository'
* Missing dependency:
- smtml >= 0.17.0 -> bisect_ppx >= 2.5.0 -> ocaml < 5.0 -> ocaml-variants >= 4.06.0 -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
'opam reinstall --with-test --verbose smtml.0.17.0' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose smtml.0.17.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 "\"fedora-41\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'smtml.0.17.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
2025-12-15 19:19.46: Job failed: Failed: Build failed
2025-12-15 19:19.46: Log analysis:
2025-12-15 19:19.46: >>>
No solution found, exiting
(score = 100)
2025-12-15 19:19.46: >>>
No solution found, exiting
(score = 100)
2025-12-15 19:19.46: [SKIP] Package not available