- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,beluga.0.8.1
(not at the head of any monitored branch or PR)
2026-04-10 17:57.47: New job: test beluga.0.8.1 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 beluga.0.8.1; \
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" != 'beluga.0.8.1' && 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 beluga.0.8.1) || true
RUN opam reinstall --with-test --verbose beluga.0.8.1; \
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" != 'beluga.0.8.1' && 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.47: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-beluga.0.8.1-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.47: 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 beluga.0.8.1;\
\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\" != 'beluga.0.8.1' && 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 beluga.0.8.1) || true"))
(run (shell "opam reinstall --with-test --verbose beluga.0.8.1;\
\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\" != 'beluga.0.8.1' && 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.47: Waiting for resource in pool OCluster
2026-04-11 03:56.19: Waiting for worker…
2026-04-11 03:58.43: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 67% (12630/18686)
Updating files: 68% (12707/18686)
Updating files: 69% (12894/18686)
Updating files: 70% (13081/18686)
Updating files: 71% (13268/18686)
Updating files: 72% (13454/18686)
Updating files: 73% (13641/18686)
Updating files: 74% (13828/18686)
Updating files: 75% (14015/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 03:58.57 ---> 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 03:58.57 ---> 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 03:58.57 ---> 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 03:58.57 ---> 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 03:58.57 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:58.59 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:58.59 ---> 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 03:58.59 ---> 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 03:58.59 ---> 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 03:58.59 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall beluga.0.8.1;\
\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\" != 'beluga.0.8.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
beluga.0.8.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install base-bytes base [required by ulex]
- install beluga 0.8.1
- install camlp4 4.14+1 [required by ulex]
- install cppo 1.8.0 [required by extlib]
- install extlib 1.8.0 [required by beluga]
- install ocamlbuild 0.16.1 [required by beluga]
- install ocamlfind 1.9.8 [required by beluga]
- install ulex 1.2 [required by beluga]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved beluga.0.8.1 (https://opam.ocaml.org/cache)
-> retrieved camlp4.4.14+1 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved extlib.1.8.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ulex.1.2 (cached)
-> installed cppo.1.8.0
-> installed extlib.1.8.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed camlp4.4.14+1
-> installed ulex.1.2
-> installed beluga.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:02.22 ---> saved as "ad36ab62b230958f56fdd681ea94d9749e141f239ed4e3c69c215291f0bca8cf"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test beluga.0.8.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile beluga 0.8.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved beluga.0.8.1 (https://opam.ocaml.org/cache)
-> removed beluga.0.8.1
-> installed beluga.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:02.54 ---> saved as "3f231a1c53945ecbbfeb93be6f9fcde53714186e6d8f75fc9e926347066c16b8"
/home/opam: (run (shell "opam reinstall --with-test --verbose beluga.0.8.1;\
\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\" != 'beluga.0.8.1' && 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 beluga 0.8.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [beluga.0.8.1: extract]
-> retrieved beluga.0.8.1 (cached)
Processing 2/4: [beluga: ocamlbuild 71]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocamlbuild" "-r" "-use-ocamlfind" "-j" "71" "src/beluga/main.native" (CWD=/home/opam/.opam/4.14/.opam-switch/build/beluga.0.8.1)
- + ocamlfind ocamlc -config
- + ocamlfind ocamlopt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa -linkpkg myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -modules src/beluga/main.ml > src/beluga/main.ml.depends
- + ocamlfind ocamldep -modules src/beluga/beli.ml > src/beluga/beli.ml.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/command.mli > src/core/command.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/debug.mli > src/core/debug.mli.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/interactive.ml > src/core/interactive.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/abstract.mli > src/core/abstract.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/id.mli > src/core/id.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/syntax.ml > src/core/syntax.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/synapx.ml > src/core/synapx.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/id.cmi src/core/id.mli
- + ocamlfind ocamldep -package camlp4 -modules src/core/pragma.ml > src/core/pragma.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/synint.ml > src/core/synint.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/pragma.cmo src/core/pragma.ml
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/synint.cmo src/core/synint.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/synext.ml > src/core/synext.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/synapx.cmo src/core/synapx.ml
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/synext.cmo src/core/synext.ml
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/syntax.cmo src/core/syntax.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/context.mli > src/core/context.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/coverage.mli > src/core/coverage.mli.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/holes.mli > src/core/holes.mli.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/logic.mli > src/core/logic.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/monitor.mli > src/core/monitor.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/pretty.mli > src/core/pretty.mli.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/store.mli > src/core/store.mli.depends
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/store.cmi src/core/store.mli
- + ocamlfind ocamldep -package camlp4 -modules src/core/substitution.mli > src/core/substitution.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/whnf.mli > src/core/whnf.mli.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/abstract.cmi src/core/abstract.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/context.cmi src/core/context.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/coverage.cmi src/core/coverage.mli
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/holes.cmi src/core/holes.mli
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/logic.cmi src/core/logic.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/monitor.cmi src/core/monitor.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/pretty.cmi src/core/pretty.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/substitution.cmi src/core/substitution.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/whnf.cmi src/core/whnf.mli
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/parser.mli > src/core/parser.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/lexer.mli > src/core/lexer.mli.depends
- + ocamlfind ocamldep -syntax camlp4o -package camlp4.extend -package camlp4 -modules src/core/token.ml > src/core/token.ml.depends
- + ocamlfind ocamlc -c -annot -syntax camlp4o -package camlp4.extend -package camlp4 -w -P -w -P -I src/core -o src/core/token.cmo src/core/token.ml
- + ocamlfind ocamlc -c -annot -syntax camlp4o -package camlp4.extend -package camlp4 -w -P -w -P -I src/core -o src/core/token.cmo src/core/token.ml
- File "src/core/token.ml", lines 124-126, characters 21-69:
- 124 | .....................parser
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- 126 | | [< >] -> [< >]
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", lines 124-126, characters 21-69:
- 124 | .....................parser
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- 126 | | [< >] -> [< >]
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", line 125, characters 11-23:
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", line 125, characters 36-56:
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", line 125, characters 58-66:
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", line 126, characters 33-69:
- 126 | | [< >] -> [< >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/lexer.cmi src/core/lexer.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/lexer.cmi src/core/lexer.mli
- File "src/core/lexer.mli", line 19, characters 32-40:
- 19 | val mk : unit -> (Loc.t -> char Stream.t -> (Token.t * Loc.t) Stream.t)
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/lexer.mli", line 19, characters 62-70:
- 19 | val mk : unit -> (Loc.t -> char Stream.t -> (Token.t * Loc.t) Stream.t)
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamldep -package camlp4 -modules src/core/recsgn.mli > src/core/recsgn.mli.depends
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- + ocamlfind ocamldep -package camlp4 -modules src/core/version.ml > src/core/version.ml.depends
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/command.cmi src/core/command.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/debug.cmi src/core/debug.mli
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/interactive.cmo src/core/interactive.ml
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/parser.cmi src/core/parser.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/recsgn.cmi src/core/recsgn.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/version.cmo src/core/version.ml
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/parser.cmi src/core/parser.mli
- File "src/core/parser.mli", line 14, characters 16-24:
- 14 | -> input:char Stream.t
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/interactive.cmo src/core/interactive.ml
- File "src/core/interactive.ml", line 168, characters 40-56:
- 168 | | Some vGen -> Some (fun () -> String.lowercase (vGen ()))
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- + ocamlfind ocamldep -package camlp4 -modules src/core/error.mli > src/core/error.mli.depends
- + ocamlfind ocamldep -package str -package camlp4 -modules src/core/html.mli > src/core/html.mli.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/lfholes.mli > src/core/lfholes.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/lfrecon.ml > src/core/lfrecon.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/apxnorm.ml > src/core/apxnorm.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/error.cmi src/core/error.mli
- + ocamlfind ocamldep -package camlp4 -modules src/core/index.mli > src/core/index.mli.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/index.cmi src/core/index.mli
- + ocamlfind ocamldep -package camlp4 -modules src/core/check.mli > src/core/check.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/convSigma.mli > src/core/convSigma.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/ctxsub.mli > src/core/ctxsub.mli.depends
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/lfholes.cmi src/core/lfholes.mli
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/subord.mli > src/core/subord.mli.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/unify.ml > src/core/unify.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/convSigma.cmi src/core/convSigma.mli
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/subord.cmi src/core/subord.mli
- + ocamlfind ocamldep -package camlp4 -modules src/core/trail.mli > src/core/trail.mli.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/trail.cmi src/core/trail.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/apxnorm.cmo src/core/apxnorm.ml
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/check.cmi src/core/check.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/ctxsub.cmi src/core/ctxsub.mli
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/unify.cmo src/core/unify.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/locs.mli > src/core/locs.mli.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/loctesting.ml > src/core/loctesting.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/locs.cmi src/core/locs.mli
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/typeinfo.mli > src/core/typeinfo.mli.depends
- + ocamlfind ocamlc -c -annot -w -P -w -P -I src/beluga -I src/core -o src/beluga/beli.cmo src/beluga/beli.ml
- + ocamlfind ocamlc -c -annot -package str -package camlp4 -w -P -w -P -I src/core -o src/core/html.cmi src/core/html.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/lfrecon.cmo src/core/lfrecon.ml
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/loctesting.cmo src/core/loctesting.ml
- + ocamlfind ocamlc -c -annot -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/typeinfo.cmi src/core/typeinfo.mli
- + ocamlfind ocamlc -c -annot -w -P -w -P -I src/beluga -I src/core -o src/beluga/main.cmo src/beluga/main.ml
- + ocamlfind ocamlc -c -annot -w -P -w -P -I src/beluga -I src/core -o src/beluga/main.cmo src/beluga/main.ml
- File "src/beluga/main.ml", line 68, characters 21-36:
- 68 | with Failure "int_of_string" ->
- ^^^^^^^^^^^^^^^
- Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of
- this constructor's arguments. They are only for information
- and may change in future versions. (See manual section 11.5)
- File "src/beluga/main.ml", line 74, characters 12-28:
- 74 | | _ when (String.lowercase arg = "+htmltest") -> Html.genHtml := true; Html.filename := "/dev/null"; rest
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "src/beluga/main.ml", line 77, characters 12-28:
- 77 | | _ when (String.lowercase arg = "+cssfile") ->
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/command.ml > src/core/command.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/abstract.ml > src/core/abstract.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/context.ml > src/core/context.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/error.ml > src/core/error.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/id.ml > src/core/id.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/gensym.ml > src/core/gensym.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/gensym.mli > src/core/gensym.mli.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/gensym.cmi src/core/gensym.mli
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/gensym.cmi src/core/gensym.mli
- File "src/core/gensym.mli", line 1, characters 44-52:
- 1 | val create_symbols : string array -> string Stream.t
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/gensym.cmx src/core/gensym.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/gensym.cmx src/core/gensym.ml
- File "src/core/gensym.ml", line 3, characters 54-62:
- 3 | let create_symbols (alphabet : string array) : string Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/gensym.ml", line 19, characters 4-15:
- 19 | Stream.from next
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/gensym.ml", line 42, characters 18-29:
- 42 | let gensym () = Stream.next !symbols
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/gensym.ml", line 46, characters 17-28:
- 46 | (fun () -> Stream.next symbols)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/gensym.ml", line 61, characters 18-29:
- 61 | let gensym () = Stream.next !symbols
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/gensym.ml", line 65, characters 17-28:
- 65 | (fun () -> Stream.next symbols)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/id.cmx src/core/id.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/pragma.cmx src/core/pragma.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/synint.cmx src/core/synint.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/synint.cmx src/core/synint.ml
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/synapx.cmx src/core/synapx.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/synext.cmx src/core/synext.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/synapx.cmx src/core/synapx.ml
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/synext.cmx src/core/synext.ml
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/syntax.cmx src/core/syntax.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/syntax.cmx src/core/syntax.ml
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamldep -package camlp4 -modules src/core/substitution.ml > src/core/substitution.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/error.cmx src/core/error.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/substitution.cmx src/core/substitution.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/debug.ml > src/core/debug.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/pretty.ml > src/core/pretty.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/context.cmx src/core/context.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/prettyext.ml > src/core/prettyext.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/prettyext.cmo src/core/prettyext.ml
- + ocamlfind ocamldep -package str -package camlp4 -modules src/core/html.ml > src/core/html.ml.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/store.ml > src/core/store.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package str -package camlp4 -w -P -w -P -I src/core -o src/core/html.cmx src/core/html.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/store.cmx src/core/store.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/store.cmx src/core/store.ml
- File "src/core/store.ml", line 1083, characters 14-25:
- 1083 | let s = Stream.next gen in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/store.ml", line 1094, characters 29-43:
- 1094 | 0 = (Char.compare c (Char.uppercase c)) in
- ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Char.uppercase
- Use Char.uppercase_ascii instead.
- + ocamlfind ocamldep -package camlp4 -modules src/core/whnf.ml > src/core/whnf.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/debug.cmx src/core/debug.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/prettyext.cmx src/core/prettyext.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/whnf.cmx src/core/whnf.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/prettyext.cmx src/core/prettyext.ml
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/pretty.cmx src/core/pretty.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/check.ml > src/core/check.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/coverage.ml > src/core/coverage.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/abstract.cmx src/core/abstract.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/convSigma.ml > src/core/convSigma.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/ctxsub.ml > src/core/ctxsub.ml.depends
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/subord.ml > src/core/subord.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/total.ml > src/core/total.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/order.ml > src/core/order.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/order.cmo src/core/order.ml
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/total.cmo src/core/total.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/convSigma.cmx src/core/convSigma.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/monitor.ml > src/core/monitor.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/subord.cmx src/core/subord.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/trail.ml > src/core/trail.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/monitor.cmx src/core/monitor.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/trail.cmx src/core/trail.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/order.cmx src/core/order.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/unify.cmx src/core/unify.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/unify.cmx src/core/unify.ml
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/ctxsub.cmx src/core/ctxsub.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/total.cmx src/core/total.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/lfcheck.ml > src/core/lfcheck.ml.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/lfcheck.cmo src/core/lfcheck.ml
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/typeinfo.ml > src/core/typeinfo.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/typeinfo.cmx src/core/typeinfo.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/typeinfo.cmx src/core/typeinfo.ml
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/coverage.cmx src/core/coverage.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/lfcheck.cmx src/core/lfcheck.ml
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/holes.ml > src/core/holes.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/index.ml > src/core/index.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/holes.cmx src/core/holes.ml
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/logic.ml > src/core/logic.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/check.cmx src/core/check.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/logic.cmx src/core/logic.ml
- + ocamlfind ocamldep -package extlib -package camlp4 -modules src/core/lfholes.ml > src/core/lfholes.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/index.cmx src/core/index.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/lfholes.cmx src/core/lfholes.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/apxnorm.cmx src/core/apxnorm.ml
- + ocamlfind ocamldep -package extlib -syntax camlp4o -package camlp4.extend -package camlp4 -modules src/core/parser.ml > src/core/parser.ml.depends
- + ocamlfind ocamldep -package ulex -syntax camlp4o -package camlp4.extend -package camlp4 -modules src/core/lexer.ml > src/core/lexer.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -syntax camlp4o -package camlp4.extend -package camlp4 -w -P -w -P -I src/core -o src/core/token.cmx src/core/token.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -syntax camlp4o -package camlp4.extend -package camlp4 -w -P -w -P -I src/core -o src/core/token.cmx src/core/token.ml
- File "src/core/token.ml", lines 124-126, characters 21-69:
- 124 | .....................parser
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- 126 | | [< >] -> [< >]
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", lines 124-126, characters 21-69:
- 124 | .....................parser
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- 126 | | [< >] -> [< >]
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", line 125, characters 11-23:
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", line 125, characters 36-56:
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", line 125, characters 58-66:
- 125 | | [< ' (tok, loc); s >] -> [< ' filter_tok tok loc; filter s >]
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/token.ml", line 126, characters 33-69:
- 126 | | [< >] -> [< >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamlopt -c -annot -for-pack Core -package ulex -syntax camlp4o -package camlp4.extend -package camlp4 -w -P -w -P -I src/core -o src/core/lexer.cmx src/core/lexer.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package ulex -syntax camlp4o -package camlp4.extend -package camlp4 -w -P -w -P -I src/core -o src/core/lexer.cmx src/core/lexer.ml
- File "src/core/lexer.ml", line 402, characters 4-15:
- 402 | Stream.from next
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamldep -package camlp4 -modules src/core/reconstruct.ml > src/core/reconstruct.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/reconstruct.mli > src/core/reconstruct.mli.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/reconstruct.cmi src/core/reconstruct.mli
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/lfrecon.cmx src/core/lfrecon.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/recsgn.ml > src/core/recsgn.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/opsem.ml > src/core/opsem.ml.depends
- + ocamlfind ocamldep -package camlp4 -modules src/core/opsem.mli > src/core/opsem.mli.depends
- + ocamlfind ocamlc -c -annot -package camlp4 -w -P -w -P -I src/core -o src/core/opsem.cmi src/core/opsem.mli
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/reconstruct.cmx src/core/reconstruct.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/opsem.cmx src/core/opsem.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/interactive.cmx src/core/interactive.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -syntax camlp4o -package camlp4.extend -package camlp4 -w -P -w -P -I src/core -o src/core/parser.cmx src/core/parser.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/recsgn.cmx src/core/recsgn.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/interactive.cmx src/core/interactive.ml
- File "src/core/interactive.ml", line 168, characters 40-56:
- 168 | | Some vGen -> Some (fun () -> String.lowercase (vGen ()))
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -syntax camlp4o -package camlp4.extend -package camlp4 -w -P -w -P -I src/core -o src/core/parser.cmx src/core/parser.ml
- File "src/core/parser.ml", line 28, characters 8-20:
- 28 | (fun (Stream.Error str) ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/parser.ml", line 1596, characters 15-31:
- 1596 | let stream = Stream.of_string input in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/parser.ml", line 1600, characters 15-32:
- 1600 | let stream = Stream.of_channel input in
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/core/parser.ml", line 1604, characters 19-37:
- 1604 | let in_channel = Pervasives.open_in name in
- ^^^^^^^^^^^^^^^^^^
- 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 "src/core/parser.ml", line 1605, characters 19-36:
- 1605 | let stream = Stream.of_channel in_channel in
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "_none_", line 1:
- Warning 58 [no-cmx-file]: no cmx file was found in path for module Camlp4, and its interface was not compiled with -opaque
- + ocamlfind ocamlopt -c -annot -for-pack Core -package extlib -package camlp4 -w -P -w -P -I src/core -o src/core/command.cmx src/core/command.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/version.cmx src/core/version.ml
- + ocamlfind ocamldep -package camlp4 -modules src/core/locs.ml > src/core/locs.ml.depends
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/locs.cmx src/core/locs.ml
- + ocamlfind ocamlopt -c -annot -w -P -w -P -I src/beluga -I src/core -o src/beluga/beli.cmx src/beluga/beli.ml
- + ocamlfind ocamlopt -c -annot -for-pack Core -package camlp4 -w -P -w -P -I src/core -o src/core/loctesting.cmx src/core/loctesting.ml
- + ocamlfind ocamlopt -c -annot -w -P -w -P -I src/beluga -I src/core -o src/beluga/main.cmx src/beluga/main.ml
- + ocamlfind ocamlopt -c -annot -w -P -w -P -I src/beluga -I src/core -o src/beluga/main.cmx src/beluga/main.ml
- File "src/beluga/main.ml", line 68, characters 21-36:
- 68 | with Failure "int_of_string" ->
- ^^^^^^^^^^^^^^^
- Warning 52 [fragile-literal-pattern]: Code should not depend on the actual values of
- this constructor's arguments. They are only for information
- and may change in future versions. (See manual section 11.5)
- File "src/beluga/main.ml", line 74, characters 12-28:
- 74 | | _ when (String.lowercase arg = "+htmltest") -> Html.genHtml := true; Html.filename := "/dev/null"; rest
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "src/beluga/main.ml", line 77, characters 12-28:
- 77 | | _ when (String.lowercase arg = "+cssfile") ->
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- + ocamlfind ocamlopt -linkpkg -package 'unix, extlib, ulex, camlp4.lib, str' -I src/core -I src/beluga src/core/gensym.cmx src/core/id.cmx src/core/pragma.cmx src/core/synint.cmx src/core/synapx.cmx src/core/synext.cmx src/core/syntax.cmx src/core/error.cmx src/core/substitution.cmx src/core/context.cmx src/core/debug.cmx src/core/html.cmx src/core/store.cmx src/core/prettyext.cmx src/core/whnf.cmx src/core/pretty.cmx src/core/abstract.cmx src/core/index.cmx src/core/apxnorm.cmx src/core/convSigma.cmx src/core/ctxsub.cmx src/core/monitor.cmx src/core/order.cmx src/core/subord.cmx src/core/trail.cmx src/core/unify.cmx src/core/total.cmx src/core/coverage.cmx src/core/typeinfo.cmx src/core/lfcheck.cmx src/core/check.cmx src/core/holes.cmx src/core/logic.cmx src/core/interactive.cmx src/core/token.cmx src/core/lexer.cmx src/core/lfholes.cmx src/core/lfrecon.cmx src/core/opsem.cmx src/core/parser.cmx src/core/reconstruct.cmx src/core/recsgn.cmx src/core/command.cmx src/core/version.cmx src/beluga/beli.cmx src/core/locs.cmx src/core/loctesting.cmx src/beluga/main.cmx -o src/beluga/main.native
- # Parallel statistics: { count(total): 16(143), max: 9, min: 2, average(total): 3.062(1.231) }
-> compiled beluga.0.8.1
-> removed beluga.0.8.1
-> installed beluga.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:03.35 ---> saved as "0f915ec7fe22cc330b6f13d24a02a9c0f3ff8705055f0371e545cba34dd9b0b4"
Job succeeded
2026-04-11 04:03.45: Job succeeded