- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,alba.0.4.0
(not at the head of any monitored branch or PR)
2026-04-10 17:57.48: New job: test alba.0.4.0 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
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" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall alba.0.4.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" != 'alba.0.4.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 alba.0.4.0) || true
RUN opam reinstall --with-test --verbose alba.0.4.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" != 'alba.0.4.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-10 17:57.48: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-alba.0.4.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.48: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(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 dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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\" != 'dune.3.22.2' && 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 alba.0.4.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\" != 'alba.0.4.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 alba.0.4.0) || true"))
(run (shell "opam reinstall --with-test --verbose alba.0.4.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\" != 'alba.0.4.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-10 17:57.48: Waiting for resource in pool OCluster
2026-04-11 04:19.20: Waiting for worker…
2026-04-11 04:21.58: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 75% (14037/18686)
Updating files: 76% (14202/18686)
Updating files: 77% (14389/18686)
Updating files: 78% (14576/18686)
Updating files: 79% (14762/18686)
Updating files: 80% (14949/18686)
Updating files: 81% (15136/18686)
Updating files: 82% (15323/18686)
Updating files: 83% (15510/18686)
Updating files: 84% (15697/18686)
Updating files: 85% (15884/18686)
Updating files: 86% (16070/18686)
Updating files: 87% (16257/18686)
Updating files: 88% (16444/18686)
Updating files: 89% (16631/18686)
Updating files: 90% (16818/18686)
Updating files: 91% (17005/18686)
Updating files: 92% (17192/18686)
Updating files: 93% (17378/18686)
Updating files: 94% (17565/18686)
Updating files: 95% (17752/18686)
Updating files: 96% (17939/18686)
Updating files: 97% (18126/18686)
Updating files: 98% (18313/18686)
Updating files: 99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 04:22.01 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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-11 04:22.01 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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-11 04:22.01 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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.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-11 04:22.01 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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-11 04:22.01 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 04:22.02 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 04:22.02 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/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 [121 kB]
- Fetched 211 kB in 0s (1316 kB/s)
- Reading package lists...
-
2026-04-11 04:22.02 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 04:22.02 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:22.02 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall alba.0.4.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\" != 'alba.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
alba.0.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install alba 0.4.0
- install menhir 20260209 [required by alba]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by menhir]
- install menhirSdk 20260209 [required by menhir]
- install ocamlbuild 0.16.1 [required by alba]
- install ocamlfind 1.9.8 [required by alba]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alba.0.4.0 (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed menhirCST.20260209
-> retrieved ocamlfind.1.9.8 (cached)
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed menhir.20260209
-> installed alba.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:22.53 ---> saved as "b450c6af48043d7297da9ee00387f9f720a859d41a5bb0fd8bff32a6e163075f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test alba.0.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile alba 0.4.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alba.0.4.0 (https://opam.ocaml.org/cache)
-> removed alba.0.4.0
-> installed alba.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:23.24 ---> saved as "f00ac7920f3fba217decbe153920c0e1c25fde48de1f8ee3fe86958804438177"
/home/opam: (run (shell "opam reinstall --with-test --verbose alba.0.4.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\" != 'alba.0.4.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 alba 0.4.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [alba.0.4.0: extract]
-> retrieved alba.0.4.0 (cached)
Processing 2/4: [alba: make build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alba.0.4.0)
- cd ocaml; \
- make alba.native; \
- make alba.d.byte; \
- make alba.base
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/alba.0.4.0/ocaml'
- ocamlbuild -use-ocamlfind -Is lib,_draft -yaccflags --explain,--dump,--infer,--fixed-exception -lib unix alba.native
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -modules alba.ml > alba.ml.depends
- + ocamlfind ocamldep -modules alba_generic.mli > alba_generic.mli.depends
- + ocamlfind ocamldep -modules platform.mli > platform.mli.depends
- + ocamlfind ocamlc -c -I lib -o alba_generic.cmi alba_generic.mli
- + ocamlfind ocamlc -c -I lib -o platform.cmi platform.mli
- + ocamlfind ocamlc -c -I lib -o alba.cmo alba.ml
- + ocamlfind ocamldep -modules alba_generic.ml > alba_generic.ml.depends
- + ocamlfind ocamldep -modules ast.ml > ast.ml.depends
- + ocamlfind ocamldep -modules ast.mli > ast.mli.depends
- + ocamlfind ocamldep -modules proof_context.mli > proof_context.mli.depends
- + ocamlfind ocamldep -modules class_table.mli > class_table.mli.depends
- + ocamlfind ocamldep -modules container.ml > container.ml.depends
- + ocamlfind ocamldep -modules module.mli > module.mli.depends
- + ocamlfind ocamldep -modules command_line.mli > command_line.mli.depends
- + ocamlfind ocamldep -modules support.ml > support.ml.depends
- + ocamlfind ocamlc -c -I lib -o container.cmo container.ml
- + ocamlfind ocamlc -c -I lib -o container.cmo container.ml
- File "container.ml", line 62, characters 16-34:
- 62 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 67, characters 16-34:
- 67 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 145, characters 16-34:
- 145 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 150, characters 16-34:
- 150 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc -c -I lib -o command_line.cmi command_line.mli
- + ocamlfind ocamlc -c -I lib -o support.cmo support.ml
- + ocamlfind ocamlc -c -I lib -o support.cmo support.ml
- File "support.ml", line 676, characters 16-34:
- 676 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "support.ml", line 770, characters 16-34:
- 770 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "support.ml", line 775, characters 16-34:
- 775 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamldep -modules signature.ml > signature.ml.depends
- + ocamlfind ocamldep -modules lib/option.mli > lib/option.mli.depends
- + ocamlfind ocamldep -modules lib/monad.mli > lib/monad.mli.depends
- + ocamlfind ocamlc -c -I lib -o lib/monad.cmi lib/monad.mli
- + ocamlfind ocamldep -modules term.mli > term.mli.depends
- + ocamlfind ocamldep -modules tvars.mli > tvars.mli.depends
- + ocamlfind ocamlc -c -I lib -o term.cmi term.mli
- + ocamlfind ocamlc -c -I lib -o lib/option.cmi lib/option.mli
- + ocamlfind ocamlc -c -I lib -o tvars.cmi tvars.mli
- + ocamlfind ocamlc -c -I lib -o module.cmi module.mli
- + ocamlfind ocamlc -c -I lib -o signature.cmo signature.ml
- + ocamlfind ocamldep -modules context.mli > context.mli.depends
- + ocamlfind ocamlc -c -I lib -o class_table.cmi class_table.mli
- + ocamlfind ocamldep -modules feature_table.mli > feature_table.mli.depends
- + ocamlfind ocamldep -modules feature.mli > feature.mli.depends
- + ocamlfind ocamlc -c -I lib -o feature.cmi feature.mli
- + ocamlfind ocamlc -c -I lib -o feature_table.cmi feature_table.mli
- + ocamlfind ocamldep -modules proof.ml > proof.ml.depends
- + ocamlfind ocamldep -modules rule_data.mli > rule_data.mli.depends
- + ocamlfind ocamlc -c -I lib -o context.cmi context.mli
- + ocamlfind ocamlc -c -I lib -o proof.cmo proof.ml
- + ocamlfind ocamlc -c -I lib -o rule_data.cmi rule_data.mli
- + ocamlfind ocamlc -c -I lib -o proof_context.cmi proof_context.mli
- + ocamlfind ocamlc -c -I lib -o ast.cmi ast.mli
- + ocamlfind ocamldep -modules class_table.ml > class_table.ml.depends
- + ocamlfind ocamldep -modules constants.ml > constants.ml.depends
- + ocamlfind ocamldep -modules constants.mli > constants.mli.depends
- + ocamlfind ocamlc -c -I lib -o constants.cmi constants.mli
- + ocamlfind ocamldep -modules module.ml > module.ml.depends
- + ocamlfind ocamldep -modules command_line.ml > command_line.ml.depends
- + ocamlfind ocamlopt -c -I lib -o container.cmx container.ml
- + ocamlfind ocamlopt -c -I lib -o container.cmx container.ml
- File "container.ml", line 62, characters 16-34:
- 62 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 67, characters 16-34:
- 67 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 145, characters 16-34:
- 145 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 150, characters 16-34:
- 150 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlopt -c -I lib -o support.cmx support.ml
- + ocamlfind ocamlopt -c -I lib -o support.cmx support.ml
- File "support.ml", line 676, characters 16-34:
- 676 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "support.ml", line 770, characters 16-34:
- 770 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "support.ml", line 775, characters 16-34:
- 775 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q lexer.mll
- + ocamlfind ocamldep -modules lexer.ml > lexer.ml.depends
- + menhir --raw-depend --ocamldep 'ocamlfind ocamldep -modules' parser.mly > parser.mly.depends
- + menhir --ocamlc 'ocamlfind ocamlc -I lib' --explain --dump --infer --fixed-exception --infer parser.mly
- + ocamlfind ocamldep -modules parser.mli > parser.mli.depends
- + ocamlfind ocamlc -c -I lib -o parser.cmi parser.mli
- + ocamlfind ocamlc -c -I lib -o lexer.cmo lexer.ml
- + ocamlfind ocamldep -modules parser.ml > parser.ml.depends
- + ocamlfind ocamlopt -c -I lib -o parser.cmx parser.ml
- + ocamlfind ocamldep -modules lib/option.ml > lib/option.ml.depends
- + ocamlfind ocamldep -modules lib/monad.ml > lib/monad.ml.depends
- + ocamlfind ocamlopt -c -I lib -o lib/monad.cmx lib/monad.ml
- + ocamlfind ocamldep -modules platform.ml > platform.ml.depends
- + ocamlfind ocamldep -modules topological_sort.ml > topological_sort.ml.depends
- + ocamlfind ocamldep -modules topological_sort.mli > topological_sort.mli.depends
- + ocamlfind ocamlc -c -I lib -o topological_sort.cmi topological_sort.mli
- + ocamlfind ocamlopt -c -I lib -o command_line.cmx command_line.ml
- + ocamlfind ocamlopt -c -I lib -o lexer.cmx lexer.ml
- + ocamlfind ocamlopt -c -I lib -o lib/option.cmx lib/option.ml
- + ocamlfind ocamlopt -c -I lib -o platform.cmx platform.ml
- + ocamlfind ocamlopt -c -I lib -o topological_sort.cmx topological_sort.ml
- + ocamlfind ocamldep -modules term.ml > term.ml.depends
- + ocamlfind ocamldep -modules tvars.ml > tvars.ml.depends
- + ocamlfind ocamlopt -c -I lib -o term.cmx term.ml
- + ocamlfind ocamlopt -c -I lib -o term.cmx term.ml
- File "term.ml", line 34, characters 16-34:
- 34 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "term.ml", line 39, characters 16-34:
- 39 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlopt -c -I lib -o tvars.cmx tvars.ml
- + ocamlfind ocamlopt -c -I lib -o constants.cmx constants.ml
- + ocamlfind ocamlopt -c -I lib -o module.cmx module.ml
- + ocamlfind ocamlopt -c -I lib -o module.cmx module.ml
- File "module.ml", line 202, characters 6-24:
- 202 | Pervasives.compare m1.name m2.name
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlopt -c -I lib -o signature.cmx signature.ml
- + ocamlfind ocamldep -modules context.ml > context.ml.depends
- + ocamlfind ocamlopt -c -I lib -o class_table.cmx class_table.ml
- + ocamlfind ocamldep -modules feature_table.ml > feature_table.ml.depends
- + ocamlfind ocamldep -modules feature.ml > feature.ml.depends
- + ocamlfind ocamldep -modules term_algo.ml > term_algo.ml.depends
- + ocamlfind ocamldep -modules term_algo.mli > term_algo.mli.depends
- + ocamlfind ocamlc -c -I lib -o term_algo.cmi term_algo.mli
- + ocamlfind ocamldep -modules term_table.ml > term_table.ml.depends
- + ocamlfind ocamldep -modules term_table.mli > term_table.mli.depends
- + ocamlfind ocamlc -c -I lib -o term_table.cmi term_table.mli
- + ocamlfind ocamldep -modules type_substitution.ml > type_substitution.ml.depends
- + ocamlfind ocamldep -modules type_substitution.mli > type_substitution.mli.depends
- + ocamlfind ocamlc -c -I lib -o type_substitution.cmi type_substitution.mli
- + ocamlfind ocamlopt -c -I lib -o feature.cmx feature.ml
- + ocamlfind ocamlopt -c -I lib -o term_algo.cmx term_algo.ml
- + ocamlfind ocamlopt -c -I lib -o term_table.cmx term_table.ml
- + ocamlfind ocamlopt -c -I lib -o term_table.cmx term_table.ml
- File "term_table.ml", line 18, characters 16-34:
- 18 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlopt -c -I lib -o type_substitution.cmx type_substitution.ml
- + ocamlfind ocamlopt -c -I lib -o feature_table.cmx feature_table.ml
- + ocamlfind ocamlopt -c -I lib -o feature_table.cmx feature_table.ml
- File "feature_table.ml", line 14, characters 16-34:
- 14 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamldep -modules inherit.ml > inherit.ml.depends
- + ocamlfind ocamldep -modules inherit.mli > inherit.mli.depends
- + ocamlfind ocamlc -c -I lib -o inherit.cmi inherit.mli
- + ocamlfind ocamldep -modules proof_context.ml > proof_context.ml.depends
- + ocamlfind ocamldep -modules ass_seq.ml > ass_seq.ml.depends
- + ocamlfind ocamldep -modules ass_seq.mli > ass_seq.mli.depends
- + ocamlfind ocamlc -c -I lib -o ass_seq.cmi ass_seq.mli
- + ocamlfind ocamlopt -c -I lib -o context.cmx context.ml
- + ocamlfind ocamldep -modules induction.ml > induction.ml.depends
- + ocamlfind ocamldep -modules induction.mli > induction.mli.depends
- + ocamlfind ocamlc -c -I lib -o induction.cmi induction.mli
- + ocamlfind ocamldep -modules pattern.ml > pattern.ml.depends
- + ocamlfind ocamldep -modules pattern.mli > pattern.mli.depends
- + ocamlfind ocamlc -c -I lib -o pattern.cmi pattern.mli
- + ocamlfind ocamlopt -c -I lib -o proof.cmx proof.ml
- + ocamlfind ocamldep -modules proof_table.ml > proof_table.ml.depends
- + ocamlfind ocamldep -modules proof_table.mli > proof_table.mli.depends
- + ocamlfind ocamlc -c -I lib -o proof_table.cmi proof_table.mli
- + ocamlfind ocamlopt -c -I lib -o ass_seq.cmx ass_seq.ml
- + ocamlfind ocamlopt -c -I lib -o pattern.cmx pattern.ml
- + ocamlfind ocamldep -modules rule_data.ml > rule_data.ml.depends
- + ocamlfind ocamlopt -c -I lib -o induction.cmx induction.ml
- + ocamlfind ocamlopt -c -I lib -o proof_table.cmx proof_table.ml
- + ocamlfind ocamlopt -c -I lib -o rule_data.cmx rule_data.ml
- + ocamlfind ocamldep -modules prover.ml > prover.ml.depends
- + ocamlfind ocamlc -c -I lib -o prover.cmo prover.ml
- + ocamlfind ocamlopt -c -I lib -o proof_context.cmx proof_context.ml
- + ocamlfind ocamlopt -c -I lib -o proof_context.cmx proof_context.ml
- File "proof_context.ml", line 460, characters 17-35:
- 460 | Array.sort Pervasives.compare insp_vars;
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlopt -c -I lib -o prover.cmx prover.ml
- + ocamlfind ocamldep -modules source_prover.ml > source_prover.ml.depends
- + ocamlfind ocamldep -modules source_prover.mli > source_prover.mli.depends
- + ocamlfind ocamlc -c -I lib -o source_prover.cmi source_prover.mli
- + ocamlfind ocamldep -modules typer.ml > typer.ml.depends
- + ocamlfind ocamldep -modules typer.mli > typer.mli.depends
- + ocamlfind ocamlc -c -I lib -o typer.cmi typer.mli
- + ocamlfind ocamldep -modules term_builder.ml > term_builder.ml.depends
- + ocamlfind ocamldep -modules term_builder.mli > term_builder.mli.depends
- + ocamlfind ocamlc -c -I lib -o term_builder.cmi term_builder.mli
- + ocamlfind ocamlopt -c -I lib -o term_builder.cmx term_builder.ml
- + ocamlfind ocamlopt -c -I lib -o term_builder.cmx term_builder.ml
- File "term_builder.ml", line 233, characters 13-31:
- 233 | Array.sort Pervasives.compare used;
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlopt -c -I lib -o typer.cmx typer.ml
- + ocamlfind ocamlopt -c -I lib -o inherit.cmx inherit.ml
- + ocamlfind ocamlopt -c -I lib -o source_prover.cmx source_prover.ml
- + ocamlfind ocamlopt -c -I lib -o source_prover.cmx source_prover.ml
- File "source_prover.ml", line 546, characters 6-8:
- 546 | let tp =
- ^^
- Warning 26 [unused-var]: unused variable tp.
- File "source_prover.ml", line 1512, characters 12-19:
- 1512 | let ind_idx = Class_table.primary_induction_law cls (PC.class_table pc)
- ^^^^^^^
- Warning 26 [unused-var]: unused variable ind_idx.
- + ocamlfind ocamlopt -c -I lib -o ast.cmx ast.ml
- + ocamlfind ocamlopt -c -I lib -o alba_generic.cmx alba_generic.ml
- + ocamlfind ocamlopt -c -I lib -o alba.cmx alba.ml
- + ocamlfind ocamlopt unix.cmxa -linkpkg -I lib container.cmx ass_seq.cmx support.cmx command_line.cmx constants.cmx parser.cmx lexer.cmx lib/monad.cmx lib/option.cmx platform.cmx topological_sort.cmx module.cmx term.cmx tvars.cmx signature.cmx class_table.cmx feature.cmx term_algo.cmx term_table.cmx type_substitution.cmx feature_table.cmx context.cmx induction.cmx pattern.cmx proof.cmx proof_table.cmx rule_data.cmx proof_context.cmx prover.cmx inherit.cmx term_builder.cmx typer.cmx source_prover.cmx ast.cmx alba_generic.cmx alba.cmx -o alba.native
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/alba.0.4.0/ocaml'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/alba.0.4.0/ocaml'
- ocamlbuild -use-ocamlfind -Is lib,_draft -yaccflags --explain,--dump,--infer,--fixed-exception -lib unix alba.d.byte
- + ocamlfind ocamlc -config
- + ocamlfind ocamlc -c -g -I lib -o alba.d.cmo alba.ml
- + ocamlfind ocamlc -c -g -I lib -o alba_generic.d.cmo alba_generic.ml
- + ocamlfind ocamlc -c -g -I lib -o platform.d.cmo platform.ml
- + ocamlfind ocamlc -c -g -I lib -o ast.d.cmo ast.ml
- + ocamlfind ocamlc -c -g -I lib -o command_line.d.cmo command_line.ml
- + ocamlfind ocamlc -c -g -I lib -o container.d.cmo container.ml
- + ocamlfind ocamlc -c -g -I lib -o container.d.cmo container.ml
- File "container.ml", line 62, characters 16-34:
- 62 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 67, characters 16-34:
- 67 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 145, characters 16-34:
- 145 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "container.ml", line 150, characters 16-34:
- 150 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc -c -g -I lib -o module.d.cmo module.ml
- + ocamlfind ocamlc -c -g -I lib -o module.d.cmo module.ml
- File "module.ml", line 202, characters 6-24:
- 202 | Pervasives.compare m1.name m2.name
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc -c -g -I lib -o proof_context.d.cmo proof_context.ml
- + ocamlfind ocamlc -c -g -I lib -o proof_context.d.cmo proof_context.ml
- File "proof_context.ml", line 460, characters 17-35:
- 460 | Array.sort Pervasives.compare insp_vars;
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc -c -g -I lib -o support.d.cmo support.ml
- + ocamlfind ocamlc -c -g -I lib -o support.d.cmo support.ml
- File "support.ml", line 676, characters 16-34:
- 676 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "support.ml", line 770, characters 16-34:
- 770 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "support.ml", line 775, characters 16-34:
- 775 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc -c -g -I lib -o topological_sort.d.cmo topological_sort.ml
- + ocamlfind ocamlc -c -g -I lib -o class_table.d.cmo class_table.ml
- + ocamlfind ocamlc -c -g -I lib -o constants.d.cmo constants.ml
- + ocamlfind ocamlc -c -g -I lib -o context.d.cmo context.ml
- + ocamlfind ocamlc -c -g -I lib -o feature.d.cmo feature.ml
- + ocamlfind ocamlc -c -g -I lib -o feature_table.d.cmo feature_table.ml
- + ocamlfind ocamlc -c -g -I lib -o feature_table.d.cmo feature_table.ml
- File "feature_table.ml", line 14, characters 16-34:
- 14 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc -c -g -I lib -o inherit.d.cmo inherit.ml
- + ocamlfind ocamlc -c -g -I lib -o lib/option.d.cmo lib/option.ml
- + ocamlfind ocamlc -c -g -I lib -o proof.d.cmo proof.ml
- + ocamlfind ocamlc -c -g -I lib -o prover.d.cmo prover.ml
- + ocamlfind ocamlc -c -g -I lib -o signature.d.cmo signature.ml
- + ocamlfind ocamlc -c -g -I lib -o source_prover.d.cmo source_prover.ml
- + ocamlfind ocamlc -c -g -I lib -o source_prover.d.cmo source_prover.ml
- File "source_prover.ml", line 546, characters 6-8:
- 546 | let tp =
- ^^
- Warning 26 [unused-var]: unused variable tp.
- File "source_prover.ml", line 1512, characters 12-19:
- 1512 | let ind_idx = Class_table.primary_induction_law cls (PC.class_table pc)
- ^^^^^^^
- Warning 26 [unused-var]: unused variable ind_idx.
- + ocamlfind ocamlc -c -g -I lib -o term.d.cmo term.ml
- + ocamlfind ocamlc -c -g -I lib -o term.d.cmo term.ml
- File "term.ml", line 34, characters 16-34:
- 34 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "term.ml", line 39, characters 16-34:
- 39 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc -c -g -I lib -o tvars.d.cmo tvars.ml
- + ocamlfind ocamlc -c -g -I lib -o typer.d.cmo typer.ml
- + ocamlfind ocamlc -c -g -I lib -o lexer.d.cmo lexer.ml
- + ocamlfind ocamlc -c -g -I lib -o parser.d.cmo parser.ml
- + ocamlfind ocamlc -c -g -I lib -o lib/monad.d.cmo lib/monad.ml
- + ocamlfind ocamlc -c -g -I lib -o term_algo.d.cmo term_algo.ml
- + ocamlfind ocamlc -c -g -I lib -o term_table.d.cmo term_table.ml
- + ocamlfind ocamlc -c -g -I lib -o term_table.d.cmo term_table.ml
- File "term_table.ml", line 18, characters 16-34:
- 18 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc -c -g -I lib -o type_substitution.d.cmo type_substitution.ml
- + ocamlfind ocamlc -c -g -I lib -o ass_seq.d.cmo ass_seq.ml
- + ocamlfind ocamlc -c -g -I lib -o induction.d.cmo induction.ml
- + ocamlfind ocamlc -c -g -I lib -o pattern.d.cmo pattern.ml
- + ocamlfind ocamlc -c -g -I lib -o proof_table.d.cmo proof_table.ml
- + ocamlfind ocamlc -c -g -I lib -o rule_data.d.cmo rule_data.ml
- + ocamlfind ocamlc -c -g -I lib -o term_builder.d.cmo term_builder.ml
- + ocamlfind ocamlc -c -g -I lib -o term_builder.d.cmo term_builder.ml
- File "term_builder.ml", line 233, characters 13-31:
- 233 | Array.sort Pervasives.compare used;
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- + ocamlfind ocamlc unix.cma -linkpkg -g -I lib constants.d.cmo container.d.cmo lib/monad.d.cmo lib/option.d.cmo support.d.cmo command_line.d.cmo parser.d.cmo lexer.d.cmo platform.d.cmo topological_sort.d.cmo module.d.cmo term.d.cmo tvars.d.cmo signature.d.cmo class_table.d.cmo feature.d.cmo term_algo.d.cmo term_table.d.cmo type_substitution.d.cmo feature_table.d.cmo context.d.cmo proof.d.cmo ass_seq.d.cmo induction.d.cmo pattern.d.cmo proof_table.d.cmo rule_data.d.cmo proof_context.d.cmo prover.d.cmo inherit.d.cmo term_builder.d.cmo typer.d.cmo source_prover.d.cmo ast.d.cmo alba_generic.d.cmo alba.d.cmo -o alba.d.byte
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/alba.0.4.0/ocaml'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/alba.0.4.0/ocaml'
- ocamlbuild -use-ocamlfind -Is lib,_draft -yaccflags --explain,--dump,--infer,--fixed-exception -lib unix alba.native
- + ocamlfind ocamlc -config
- ./alba.native -work-dir ../library/alba.base init; \
- ./alba.native -work-dir ../library/alba.base compile
- Compile module "core"
- Compile module "boolean"
- Compile module "predicate"
- Compile module "relation"
- Compile module "endorelation"
- Compile module "function"
- Compile module "order_relation"
- Compile module "partial_order"
- Compile module "semilattice"
- Compile module "predicate_order"
- Compile module "option"
- Compile module "natural"
- Compile module "list"
- Compile module "linear_order"
- Compile module "confluence"
- Compile module "closure_system"
- Compile module "binary_tree"
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/alba.0.4.0/ocaml'
-> compiled alba.0.4.0
-> removed alba.0.4.0
-> installed alba.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:23.50 ---> saved as "9b600144b1abf92f68b0355348d72dcfe15224f2f35518585bd5b14eccdccc69"
Job succeeded
2026-04-11 04:23.56: Job succeeded