- github
- ocaml
- opam-repository
- 618587
- compilers,4.14,ppxlib.0.38.0,revdeps,saltoIL.0.1.11
(not at the head of any monitored branch or PR)
2026-03-20 10:16.49: New job: test saltoIL.0.1.11 with ppxlib.0.38.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29563/head (6185871ccd68c72dd8f6902c863f0554508a6764)
on debian-13-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/29563/head" && git reset --hard 6185871c
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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 ppxlib.0.38.0 0.38.0
RUN opam reinstall ppxlib.0.38.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" != 'ppxlib.0.38.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall saltoIL.0.1.11; \
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" != 'saltoIL.0.1.11' && 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 saltoIL.0.1.11) || true
RUN opam reinstall --with-test --verbose saltoIL.0.1.11; \
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" != 'saltoIL.0.1.11' && 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-20 10:16.49: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-ppxlib.0.38.0-saltoIL.0.1.11-6185871ccd68c72dd8f6902c863f0554508a6764"
2026-03-20 10:16.49: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(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 ppxlib.0.38.0 0.38.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ppxlib.0.38.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\" != 'ppxlib.0.38.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall saltoIL.0.1.11;\
\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\" != 'saltoIL.0.1.11' && 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 saltoIL.0.1.11) || true"))
(run (shell "opam reinstall --with-test --verbose saltoIL.0.1.11;\
\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\" != 'saltoIL.0.1.11' && 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-20 10:16.49: Waiting for resource in pool OCluster
2026-03-20 10:59.27: Waiting for worker…
2026-03-20 11:02.27: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..6185871ccd
Fast-forward
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.
warning: There are too many unreachable loose objects; run 'git prune' to remove them.
packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 47 +++++++++++++++++++
packages/ppxlib/ppxlib.0.38.0/opam | 64 ++++++++++++++++++++++++++
2 files changed, 111 insertions(+)
create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam
create mode 100644 packages/ppxlib/ppxlib.0.38.0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e' locally
docker.io/ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
d1a4c61b613c: Already exists
0195a6679dc6: Already exists
410dfa46d7be: Already exists
b7b221f39cbe: Already exists
Digest: sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
Status: Downloaded newer image for ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
2026-03-20 11:02.29 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" 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-20 11:02.29 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" 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.
Continue? [Y/n] y
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-20 11:02.29 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-20 11:02.29 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" 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-20 11:02.29 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-20 11:02.30 ---> using "65f3cde022195404236e2872f9138421a9d94b4fb83edf4557bf50f839b1a1cb" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-20 11:02.30 ---> using "4801a3cf903575d080a6fd0f2f9aa5180f424ea419b0e4449a3402d8e3e9c6b2" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [116 kB]
- Fetched 10.0 MB in 2s (6042 kB/s)
- Reading package lists...
-
2026-03-20 11:02.30 ---> using "3d6b7cfa95d93f91065e93aad5a6767610a7e6104ce449c1f9febbf3da6436c3" from cache
/home/opam: (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
ppxlib is now pinned to version 0.38.0
2026-03-20 11:02.30 ---> using "0210aae052ea6c63ed6e00734da52a1f07423ab074b840b70199e267e5040b28" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ppxlib.0.38.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\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ppxlib.0.38.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install dune 3.22.0 [required by ppxlib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.38.0 (pinned)
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:02.30 ---> using "3a2d0f81da018540a62601cd929eaf6ce021a5b4614452bcb57dddabe5cbf957" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall saltoIL.0.1.11;\
\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\" != 'saltoIL.0.1.11' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
saltoIL.0.1.11 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== downgrade 1 package
- downgrade sexplib0 v0.17.0 to v0.16.0 [required by base]
=== recompile 1 package
- recompile ppxlib 0.38.0 (pinned) [uses sexplib0]
=== install 9 packages
- install base v0.16.4 [required by saltoIL]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.22.0 [required by base]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by saltoIL]
- install ptmap 2.0.5 [required by saltoIL]
- install saltoIL 0.1.11
- install seq base [required by saltoIL]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0 (cached)
-> installed cppo.1.8.0
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ptmap.2.0.5 (cached)
-> retrieved saltoIL.0.1.11 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.16.0 (cached)
-> installed ptmap.2.0.5
-> removed ppxlib.0.38.0
-> removed sexplib0.v0.17.0
-> installed sexplib0.v0.16.0
-> installed dune-configurator.3.22.0
-> installed ocamlfind.1.9.8
-> installed base.v0.16.4
-> installed ppxlib.0.38.0
-> installed ppx_deriving.6.1.1
-> installed saltoIL.0.1.11
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:03.13 ---> saved as "1c3529217354c01f6d0c1cbba6a865cc493edfcdd0ee5ebe2b7c920ef0030994"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test saltoIL.0.1.11) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile saltoIL 0.1.11
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved saltoIL.0.1.11 (https://opam.ocaml.org/cache)
-> removed saltoIL.0.1.11
-> installed saltoIL.0.1.11
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:03.24 ---> saved as "d262e9659913db4c5ff94fd8b874ba198729933a94136e94130513edb311951f"
/home/opam: (run (shell "opam reinstall --with-test --verbose saltoIL.0.1.11;\
\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\" != 'saltoIL.0.1.11' && 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 saltoIL 0.1.11
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [saltoIL.0.1.11: extract]
-> retrieved saltoIL.0.1.11 (cached)
Processing 2/4: [saltoIL: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "saltoIL" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/saltoIL.0.1.11)
- (cd _build/default/tests && ../bin/transpose.exe gadt_compl.ml) > _build/default/tests/gadt_compl.exe.output
- File "gadt_compl.ml", lines 8-10, characters 35-24:
- 8 | ...................................function
- 9 | | Int, _ -> false
- 10 | | Bool, false -> false
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Bool, true)
- File "gadt_compl.ml", lines 12-14, characters 36-20:
- 12 | ....................................function
- 13 | | Int, 0 -> false
- 14 | | Bool, _ -> false
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Int, 1)
- File "gadt_compl.ml", lines 16-18, characters 35-24:
- 16 | ...................................function
- 17 | | Int, 0 -> false
- 18 | | Bool, false -> false
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Int, 1)
- File "gadt_compl.ml", lines 20-22, characters 36-20:
- 20 | ....................................function
- 21 | | Int, _ -> false
- 22 | | Bool, _ -> false
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Pair (_, _), _)
- (cd _build/default/tests && ../bin/transpose.exe is_gadt_total.ml) > _build/default/tests/is_gadt_total.exe.output
- File "is_gadt_total.ml", line 21, characters 8-66:
- 21 | let _ = match Bd with Bd -> 0 | P (Bd, _) -> 1 | P (P _, Bd) -> -1
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- P (P (_, _), P (_, _))
- (cd _build/default/tests && ../bin/transpose.exe is_total.ml) > _build/default/tests/is_total.exe.output
- File "is_total.ml", lines 24-28, characters 2-22:
- 24 | ..match f A with
- 25 | | B _ | C (A, _) -> B A
- 26 | | A -> A
- 27 | | exception Error -> A
- 28 | | exception _ -> B A
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- C ((B _|C (_, _)), _)
- (cd _build/default/tests && ../bin/transpose.exe random_access_list.ml) > _build/default/tests/random_access_list.exe.output
- File "random_access_list.ml", lines 20-27, characters 2-24:
- 20 | ..match Nil with
- 21 | | Nil -> 0
- 22 | | Cons0 Nil -> 1
- 23 | | Cons0 (Cons0 _) -> 2
- 24 | | Cons0 (Cons1 ((Some _, Some _), _)) -> 6
- 25 | | Cons0 (Cons1 ((None, _), _)) -> 5
- 26 | | Cons1 (Some _, _) -> 4
- 27 | | Cons1 (None, _) -> 3
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Cons0 (Cons1 ((Some _, None), _))
- File "random_access_list.ml", lines 30-37, characters 2-26:
- 30 | ..match Nil with
- 31 | | Nil -> 0
- 32 | | Cons0 Nil -> 1
- 33 | | Cons0 (Cons0 _) -> 2
- 34 | | Cons0 (Cons1 ((Some _, Some _), _)) -> 6
- 35 | | Cons0 (Cons1 ((None, _), _)) -> 5
- 36 | | Cons0 (Cons1 ((_, None), _)) -> 5
- 37 | | Cons1 (Some _, _) -> 4
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Cons1 (None, _)
- (cd _build/default/tests && ../bin/transpose.exe variant.ml) > _build/default/tests/variant.exe.output
- File "variant.ml", line 10, characters 20-73:
- 10 | let opt_head_opt2 = function `Cons ((Some _ as x), _) -> x | `Nil -> None
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- `Cons (None, _)
- File "variant.ml", lines 24-28, characters 20-17:
- 24 | ....................function
- 25 | | `Some ((Some _ as x), _) -> x
- 26 | | `Some (None, `Some ((Some _ as x), _)) -> x
- 27 | | `Some (None, `None) -> None
- 28 | | `None -> None
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- `Some (None, `Some (None, _))
- File "variant.ml", lines 50-52, characters 41-16:
- 50 | .........................................function
- 51 | | `Cons ((Some _ as x), _) -> x
- 52 | | `Nil -> None
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- `Cons (None, _)
- File "variant.ml", lines 66-70, characters 41-16:
- 66 | .........................................function
- 67 | | `Cons ((Some _ as x), _) -> x
- 68 | | `Cons (None, `Cons ((Some _ as x), _)) -> x
- 69 | | `Cons (None, `Nil) -> None
- 70 | | `Nil -> None
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- `Cons (None, `Cons (None, _))
- File "variant.ml", lines 72-76, characters 45-16:
- 72 | .............................................function
- 73 | | `Cons ((Some _ as x), _) -> x
- 74 | | `Cons (None, `Cons ((Some _ as x), _)) -> x
- 75 | | `Cons (None, `Cons (None, l)) -> vlist_opt_head_opt6 l
- 76 | | `Nil -> None
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- `Cons (None, `Nil)
- File "variant.ml", lines 93-95, characters 43-17:
- 93 | ...........................................function
- 94 | | `Some ((Some _ as x), _) -> x
- 95 | | `None -> None
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- `Some (None, _)
- File "variant.ml", lines 109-113, characters 43-17:
- 109 | ...........................................function
- 110 | | `Some ((Some _ as x), _) -> x
- 111 | | `Some (None, `Some ((Some _ as x), _)) -> x
- 112 | | `Some (None, `None) -> None
- 113 | | `None -> None
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- `Some (None, `Some (None, _))
- File "variant.ml", lines 115-119, characters 47-17:
- 115 | ...............................................function
- 116 | | `Some ((Some _ as x), _) -> x
- 117 | | `Some (None, `Some ((Some _ as x), _)) -> x
- 118 | | `Some (None, `Some (None, l)) -> voption_opt_head_opt6 l
- 119 | | `None -> None
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- `Some (None, `None)
-> compiled saltoIL.0.1.11
-> removed saltoIL.0.1.11
-> installed saltoIL.0.1.11
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:03.34 ---> saved as "d0864e4ca16f2957e64b0388f072c84cc50e0ca88cb582b0f9b435517d2a41fa"
Job succeeded
2026-03-20 11:03.43: Job succeeded