- github
- ocaml
- opam-repository
- 7d6af5
- compilers,4.14,dune.3.21.0~alpha4,revdeps,merlin.4.18-414
(not at the head of any monitored branch or PR)
2025-12-15 03:24.29: New job: test merlin.4.18-414 with dune.3.21.0~alpha4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29096/head (7d6af52f05e2c06c00193b2918193b6994ece701)
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/29096/head" && git reset --hard 7d6af52f
git fetch origin master
git merge --no-edit 2625e9877b44d517ad87b5bf4ff708f3e44b78d8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
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.21.0~alpha4 3.21.0~alpha4
RUN opam reinstall dune.3.21.0~alpha4; \
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.21.0~alpha4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall merlin.4.18-414; \
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" != 'merlin.4.18-414' && 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 merlin.4.18-414) || true
RUN opam reinstall --with-test --verbose merlin.4.18-414; \
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" != 'merlin.4.18-414' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-12-15 03:24.29: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune.3.21.0~alpha4-merlin.4.18-414-7d6af52f05e2c06c00193b2918193b6994ece701"
2025-12-15 03:24.29: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
(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.21.0~alpha4 3.21.0~alpha4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.0~alpha4;\
\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.21.0~alpha4' && 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 merlin.4.18-414;\
\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\" != 'merlin.4.18-414' && 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 merlin.4.18-414) || true"))
(run (shell "opam reinstall --with-test --verbose merlin.4.18-414;\
\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\" != 'merlin.4.18-414' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-15 03:24.29: Waiting for resource in pool OCluster
2025-12-15 16:57.33: Waiting for worker…
2025-12-15 17:00.24: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 2625e9877b Merge pull request #29094 from anmonteiro/patch-9
Updating 2625e9877b..7d6af52f05
Fast-forward
.../chrome-trace/chrome-trace.3.21.0~alpha4/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0~alpha4/opam | 54 ++++++++++++++++
.../dune-build-info.3.21.0~alpha4/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0~alpha4/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0~alpha4/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0~alpha4/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha4/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0~alpha4/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0~alpha4/opam | 39 +++++++++++
packages/dune/dune.3.21.0~alpha4/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0~alpha4/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0~alpha4/opam | 41 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha4/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0~alpha4/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0~alpha4/opam | 48 ++++++++++++++
.../top-closure/top-closure.3.21.0~alpha4/opam | 40 ++++++++++++
packages/xdg/xdg.3.21.0~alpha4/opam | 41 ++++++++++++
17 files changed, 789 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha4/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha4/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha4/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha4/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha4/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha4/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha4/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha4/opam
create mode 100644 packages/dune-site/dune-site.3.21.0~alpha4/opam
create mode 100644 packages/dune/dune.3.21.0~alpha4/opam
create mode 100644 packages/dyn/dyn.3.21.0~alpha4/opam
create mode 100644 packages/fs-io/fs-io.3.21.0~alpha4/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha4/opam
create mode 100644 packages/ordering/ordering.3.21.0~alpha4/opam
create mode 100644 packages/stdune/stdune.3.21.0~alpha4/opam
create mode 100644 packages/top-closure/top-closure.3.21.0~alpha4/opam
create mode 100644 packages/xdg/xdg.3.21.0~alpha4/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
2025-12-15 17:00.27 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-15 17:00.27 ---> using "4c0c738834a7be54719ab9b07c911eba51e45ad4298c42597f7d3da72b1c15d4" 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
2025-12-15 17:00.27 ---> using "8bb6d27bb5f7ebe9771219e3ecd730184d5e10ab877134c11c12ee3b1a6d3b96" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-12-15 17:00.27 ---> using "35019bd57e8933485bd938828fe288c3674216a4757e13b1dac8ce6b21035ac2" 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/"))
2025-12-15 17:00.27 ---> using "e09ab9992a764acab15da9cff99e3d4d978b8a77f33714cc5d19d16d3539eb49" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-15 17:00.28 ---> using "effd8012bb926235286407b71766f59239cdbd05eeb488dee8fd8b0266ec56c0" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-15 17:00.28 ---> using "da8e6b523210d6314ae3052775034fea74104aae3f193362b9609201bf93d1d2" 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 [84.8 kB]
- Fetched 176 kB in 0s (854 kB/s)
- Reading package lists...
-
2025-12-15 17:00.28 ---> using "cd39baac0c78bb4b886710bb093d6b750f25b1cabe39d7490bff23ee544310da" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0~alpha4 3.21.0~alpha4"))
dune is now pinned to version 3.21.0~alpha4
2025-12-15 17:00.28 ---> using "8fd4998df15e439c69223004d2b17d12aff8d62773a9501108d16f563d9d556f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.0~alpha4;\
\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.21.0~alpha4' && 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.21.0~alpha4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.21.0~alpha4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0~alpha4 (cached)
-> installed dune.3.21.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 17:00.28 ---> using "a0dac2d55bf4693943f9c996115066b2d719701eb6952f9fddf5ed215606993b" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall merlin.4.18-414;\
\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\" != 'merlin.4.18-414' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
merlin.4.18-414 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install csexp 1.5.2 [required by merlin-lib]
- install dot-merlin-reader 4.18-414 [required by merlin]
- install merlin 4.18-414
- install merlin-lib 4.18-414 [required by merlin]
- install ocamlfind 1.9.8 [required by dot-merlin-reader]
- install yojson 3.0.0 [required by merlin]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> installed csexp.1.5.2
-> retrieved dot-merlin-reader.4.18-414, merlin.4.18-414, merlin-lib.4.18-414 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed merlin-lib.4.18-414
-> installed dot-merlin-reader.4.18-414
-> installed merlin.4.18-414
Done.
<><> merlin.4.18-414 installed successfully <><><><><><><><><><><><><><><><><><>
=> merlin installed.
Quick setup for VIM
-------------------
Append this to your .vimrc to add merlin to vim's runtime-path:
let g:opamshare = substitute(system('opam var share'),'\n$','','''')
execute "set rtp+=" . g:opamshare . "/merlin/vim"
Also run the following line in vim to index the documentation:
:execute "helptags " . g:opamshare . "/merlin/vim/doc"
Quick setup for EMACS
-------------------
Add opam emacs directory to your load-path by appending this to your .emacs:
(let ((opam-share (ignore-errors (car (process-lines "opam" "var" "share")))))
(when (and opam-share (file-directory-p opam-share))
;; Register Merlin
(add-to-list 'load-path (expand-file-name "emacs/site-lisp" opam-share))
(autoload 'merlin-mode "merlin" nil t nil)
;; Automatically start it in OCaml buffers
(add-hook 'tuareg-mode-hook 'merlin-mode t)
(add-hook 'caml-mode-hook 'merlin-mode t)
;; Use opam switch to lookup ocamlmerlin binary
(setq merlin-command 'opam)
;; To easily change opam switches within a given Emacs session, you can
;; install the minor mode https://github.com/ProofGeneral/opam-switch-mode
;; and use one of its "OPSW" menus.
))
Take a look at https://github.com/ocaml/merlin for more information
Quick setup with opam-user-setup
--------------------------------
Opam-user-setup support Merlin.
$ opam user-setup install
should take care of basic setup.
See https://github.com/OCamlPro/opam-user-setup
# To update the current shell environment, run: eval $(opam env)
2025-12-15 17:00.50 ---> saved as "e86361b7c7a9d1dfe82f447c965bcaccaf3888a0761b8e52795f6ded0d88e75d"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test merlin.4.18-414) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile merlin 4.18-414
=== install 6 packages
- install conf-jq 1 [required by merlin]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by merlin]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
The following system packages will first need to be installed:
jq
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "jq"
- Selecting previously unselected package libonig5:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20622 files and directories currently installed.)
- Preparing to unpack .../libonig5_6.9.9-1+b1_amd64.deb ...
- Unpacking libonig5:amd64 (6.9.9-1+b1) ...
- Selecting previously unselected package libjq1:amd64.
- Preparing to unpack .../libjq1_1.7.1-6+deb13u1_amd64.deb ...
- Unpacking libjq1:amd64 (1.7.1-6+deb13u1) ...
- Selecting previously unselected package jq.
- Preparing to unpack .../jq_1.7.1-6+deb13u1_amd64.deb ...
- Unpacking jq (1.7.1-6+deb13u1) ...
- Setting up libonig5:amd64 (6.9.9-1+b1) ...
- Setting up libjq1:amd64 (1.7.1-6+deb13u1) ...
- Setting up jq (1.7.1-6+deb13u1) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-jq.1
-> retrieved merlin.4.18-414 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> removed merlin.4.18-414
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.37.0
[ERROR] The compilation of merlin.4.18-414 failed at "dune runtest -p merlin -j 71".
#=== ERROR while compiling merlin.4.18-414 ====================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path ~/.opam/4.14/.opam-switch/build/merlin.4.18-414
# command ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p merlin -j 71
# exit-code 1
# env-file ~/.opam/log/merlin-7-5d0523.env
# output-file ~/.opam/log/merlin-7-5d0523.out
### output ###
# File "tests/test-dirs/locate/in-implicit-trans-dep.t/run.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t _build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
# diff --git a/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t b/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
# index 57e61ef..e959051 100644
# --- a/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t
# +++ b/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
# @@ -6,12 +6,6 @@ used to not find the file in the source path provided by Dune.
# > -filename bin/main.ml <bin/main.ml
# {
# "class": "return",
# - "value": {
# - "file": "$TESTCASE_ROOT/src/lib2/lib2.ml",
# - "pos": {
# - "line": 1,
# - "col": 0
# - }
# - },
# + "value": "'Lib1.t' seems to originate from 'Lib2' whose ML file could not be found",
# "notifications": []
# }
# File "tests/test-dirs/with-ppx/issue1647-cache-invalidation.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t _build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
# diff --git a/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t b/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
# index 1a927cd..2efca3c 100644
# --- a/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t
# +++ b/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
# @@ -49,12 +49,13 @@ Make sure that this test doesn't depend on previous state
# `errors` requires the typedtree and thus types the buffer
# $ $MERLIN server errors -log-file merlin_logs \
# > -filename main.ml 1> /dev/null <main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache wasn't populated
# --
# # . Phase cache - PPX phase
# - Cache wasn't populated
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ddafdbeabaceb/default/tests/test-dirs/with-ppx/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# Now we edit the file. This should invalidate the caches
# $ cat > main.ml <<EOF
# @@ -76,13 +77,14 @@ The cache detects that the reader cache was invalidated in the last query
# and therefore invalidates the PPX cache in this query.
# $ $MERLIN server dump -what ppxed-source -log-file merlin_logs \
# > -filename main.ml <main.ml | tr -d '\n' | jq '.value'
# - "let () = print_string 0"
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# + "let () = print_string ([%just_zero ])"
#
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache invalidation
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ddafdbeabaceb/default/tests/test-dirs/with-ppx/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# Stop server
# $ $MERLIN server stop-server
# File "tests/test-dirs/with-ppx/parsetree-cache.t/run.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t _build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
# diff --git a/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t b/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
# index a403786..e43c88f 100644
# --- a/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t
# +++ b/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
# @@ -32,6 +32,7 @@ By default, the cache for the reader phase and the PPX phase are disabled
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache is disabled: configuration
# @@ -48,21 +49,23 @@ The cache can be enabled via the USE_PPX_CACHE directive
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache wasn't populated
# --
# # . Phase cache - PPX phase
# - Cache wasn't populated
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache hit
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
#
# Modifying the source code invalidates the cache
# @@ -73,12 +76,13 @@ Modifying the source code invalidates the cache
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache invalidation
# --
# # . Phase cache - PPX phase
# - Cache invalidation
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# Also, modifying the PPX invalidates the PPX cache
#
# @@ -101,11 +105,12 @@ Also, modifying the PPX invalidates the PPX cache
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache hit
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# (Different PPX than before: expands to 1, instead of 0)
# $ cat > my_ppx.ml <<EOF
# @@ -126,11 +131,12 @@ Also, modifying the PPX invalidates the PPX cache
# $ dune exec ./main.exe 2>/dev/null
# 1
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache invalidation
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# Also, modifying the args to the PPX invalidates the PPX cache
# $ cat > .merlin <<EOF
# @@ -141,11 +147,12 @@ Also, modifying the args to the PPX invalidates the PPX cache
# $ dune exec ./main.exe 2>/dev/null
# 1
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache invalidation
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# -------------
#
# @@ -183,17 +190,34 @@ When ppx_dep.txt contains an int, there are no errors.
# 1
# And Merlin does the right thing.
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# {
# "class": "return",
# - "value": [],
# + "value": [
# + {
# + "start": {
# + "line": 1,
# + "col": 20
# + },
# + "end": {
# + "line": 1,
# + "col": 29
# + },
# + "type": "typer",
# + "sub": [],
# + "valid": true,
# + "message": "Uninterpreted extension 'just_zero'."
# + }
# + ],
# "notifications": []
# }
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache hit
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# When ppx_dep.txt is changed to contain a non-int, the AST contains an error.
# $ cat > ppx_dep.txt <<EOF
# @@ -205,16 +229,32 @@ When ppx_dep.txt is changed to contain a non-int, the AST contains an error.
#
# Merlin just uses the cache, though, and doesn't notice the ppx_dep.txt change.
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# {
# "class": "return",
# - "value": [],
# + "value": [
# + {
# + "start": {
# + "line": 1,
# + "col": 20
# + },
# + "end": {
# + "line": 1,
# + "col": 29
# + },
# + "type": "typer",
# + "sub": [],
# + "valid": true,
# + "message": "Uninterpreted extension 'just_zero'."
# + }
# + ],
# "notifications": []
# }
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache hit
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# That's why it's important that the build system doesn't enable the cache
# when the project has PPX dependencies
# @@ -232,9 +272,25 @@ Again: when ppx_dep.txt contains an int, there are no errors.
#
# And Merlin does the right thing.
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# {
# "class": "return",
# - "value": [],
# + "value": [
# + {
# + "start": {
# + "line": 1,
# + "col": 20
# + },
# + "end": {
# + "line": 1,
# + "col": 29
# + },
# + "type": "typer",
# + "sub": [],
# + "valid": true,
# + "message": "Uninterpreted extension 'just_zero'."
# + }
# + ],
# "notifications": []
# }
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# @@ -254,22 +310,23 @@ Again: when ppx_dep.txt is changed to contain a non-int, the AST contains an err
#
# This time, since the PPX cache isn't enabled, Merlin does the right thing here as well.
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# {
# "class": "return",
# "value": [
# {
# "start": {
# "line": 1,
# - "col": 18
# + "col": 20
# },
# "end": {
# "line": 1,
# - "col": 30
# + "col": 29
# },
# "type": "typer",
# "sub": [],
# "valid": true,
# - "message": "It's sunny"
# + "message": "Uninterpreted extension 'just_zero'."
# }
# ],
# "notifications": []
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build merlin 4.18-414
+-
+- The following changes have been performed
| - remove merlin 4.18-414
| - install conf-jq 1
| - install ocaml-compiler-libs v0.12.4
| - install ppx_derivers 1.2.1
| - install ppxlib 0.37.0
| - install sexplib0 v0.17.0
| - install stdlib-shims 0.3.0
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20251215170051.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2025-12-15 17:01.31 ---> saved as "d613ad2f3f0d783d1c45874402f92040051e6b53630a7f4661dd4b2d753932c1"
/home/opam: (run (shell "opam reinstall --with-test --verbose merlin.4.18-414;\
\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\" != 'merlin.4.18-414' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
merlin.4.18-414 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install merlin 4.18-414
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [merlin.4.18-414: extract]
-> retrieved merlin.4.18-414 (cached)
Processing 2/3: [merlin: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "merlin" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/merlin.4.18-414)
Processing 2/3: [merlin: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "merlin" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/merlin.4.18-414)
- File "tests/test-dirs/locate/in-implicit-trans-dep.t/run.t", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t _build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
- diff --git a/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t b/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
- index 57e61ef..e959051 100644
- --- a/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t
- +++ b/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
- @@ -6,12 +6,6 @@ used to not find the file in the source path provided by Dune.
- > -filename bin/main.ml <bin/main.ml
- {
- "class": "return",
- - "value": {
- - "file": "$TESTCASE_ROOT/src/lib2/lib2.ml",
- - "pos": {
- - "line": 1,
- - "col": 0
- - }
- - },
- + "value": "'Lib1.t' seems to originate from 'Lib2' whose ML file could not be found",
- "notifications": []
- }
- File "tests/test-dirs/with-ppx/parsetree-cache.t/run.t", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t _build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
- diff --git a/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t b/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
- index a403786..e43c88f 100644
- --- a/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t
- +++ b/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
- @@ -32,6 +32,7 @@ By default, the cache for the reader phase and the PPX phase are disabled
- $ dune exec ./main.exe 2>/dev/null
- 0
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache is disabled: configuration
- @@ -48,21 +49,23 @@ The cache can be enabled via the USE_PPX_CACHE directive
- $ dune exec ./main.exe 2>/dev/null
- 0
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache wasn't populated
- --
- # . Phase cache - PPX phase
- - Cache wasn't populated
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- $ dune exec ./main.exe 2>/dev/null
- 0
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache hit
- # . Phase cache - PPX phase
- - Cache hit
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
-
- Modifying the source code invalidates the cache
- @@ -73,12 +76,13 @@ Modifying the source code invalidates the cache
- $ dune exec ./main.exe 2>/dev/null
- 0
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache invalidation
- --
- # . Phase cache - PPX phase
- - Cache invalidation
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- Also, modifying the PPX invalidates the PPX cache
-
- @@ -101,11 +105,12 @@ Also, modifying the PPX invalidates the PPX cache
- $ dune exec ./main.exe 2>/dev/null
- 0
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache hit
- # . Phase cache - PPX phase
- - Cache hit
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- (Different PPX than before: expands to 1, instead of 0)
- $ cat > my_ppx.ml <<EOF
- @@ -126,11 +131,12 @@ Also, modifying the PPX invalidates the PPX cache
- $ dune exec ./main.exe 2>/dev/null
- 1
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache hit
- # . Phase cache - PPX phase
- - Cache invalidation
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- Also, modifying the args to the PPX invalidates the PPX cache
- $ cat > .merlin <<EOF
- @@ -141,11 +147,12 @@ Also, modifying the args to the PPX invalidates the PPX cache
- $ dune exec ./main.exe 2>/dev/null
- 1
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache hit
- # . Phase cache - PPX phase
- - Cache invalidation
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- -------------
-
- @@ -183,17 +190,34 @@ When ppx_dep.txt contains an int, there are no errors.
- 1
- And Merlin does the right thing.
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- {
- "class": "return",
- - "value": [],
- + "value": [
- + {
- + "start": {
- + "line": 1,
- + "col": 20
- + },
- + "end": {
- + "line": 1,
- + "col": 29
- + },
- + "type": "typer",
- + "sub": [],
- + "valid": true,
- + "message": "Uninterpreted extension 'just_zero'."
- + }
- + ],
- "notifications": []
- }
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache hit
- # . Phase cache - PPX phase
- - Cache hit
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- When ppx_dep.txt is changed to contain a non-int, the AST contains an error.
- $ cat > ppx_dep.txt <<EOF
- @@ -205,16 +229,32 @@ When ppx_dep.txt is changed to contain a non-int, the AST contains an error.
-
- Merlin just uses the cache, though, and doesn't notice the ppx_dep.txt change.
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- {
- "class": "return",
- - "value": [],
- + "value": [
- + {
- + "start": {
- + "line": 1,
- + "col": 20
- + },
- + "end": {
- + "line": 1,
- + "col": 29
- + },
- + "type": "typer",
- + "sub": [],
- + "valid": true,
- + "message": "Uninterpreted extension 'just_zero'."
- + }
- + ],
- "notifications": []
- }
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache hit
- # . Phase cache - PPX phase
- - Cache hit
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- That's why it's important that the build system doesn't enable the cache
- when the project has PPX dependencies
- @@ -232,9 +272,25 @@ Again: when ppx_dep.txt contains an int, there are no errors.
-
- And Merlin does the right thing.
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- {
- "class": "return",
- - "value": [],
- + "value": [
- + {
- + "start": {
- + "line": 1,
- + "col": 20
- + },
- + "end": {
- + "line": 1,
- + "col": 29
- + },
- + "type": "typer",
- + "sub": [],
- + "valid": true,
- + "message": "Uninterpreted extension 'just_zero'."
- + }
- + ],
- "notifications": []
- }
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- @@ -254,22 +310,23 @@ Again: when ppx_dep.txt is changed to contain a non-int, the AST contains an err
-
- This time, since the PPX cache isn't enabled, Merlin does the right thing here as well.
- $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- {
- "class": "return",
- "value": [
- {
- "start": {
- "line": 1,
- - "col": 18
- + "col": 20
- },
- "end": {
- "line": 1,
- - "col": 30
- + "col": 29
- },
- "type": "typer",
- "sub": [],
- "valid": true,
- - "message": "It's sunny"
- + "message": "Uninterpreted extension 'just_zero'."
- }
- ],
- "notifications": []
- File "tests/test-dirs/with-ppx/issue1647-cache-invalidation.t", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t _build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
- diff --git a/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t b/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
- index 1a927cd..2efca3c 100644
- --- a/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t
- +++ b/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
- @@ -49,12 +49,13 @@ Make sure that this test doesn't depend on previous state
- `errors` requires the typedtree and thus types the buffer
- $ $MERLIN server errors -log-file merlin_logs \
- > -filename main.ml 1> /dev/null <main.ml
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache wasn't populated
- --
- # . Phase cache - PPX phase
- - Cache wasn't populated
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ddafdbeabaceb/default/tests/test-dirs/with-ppx/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- Now we edit the file. This should invalidate the caches
- $ cat > main.ml <<EOF
- @@ -76,13 +77,14 @@ The cache detects that the reader cache was invalidated in the last query
- and therefore invalidates the PPX cache in this query.
- $ $MERLIN server dump -what ppxed-source -log-file merlin_logs \
- > -filename main.ml <main.ml | tr -d '\n' | jq '.value'
- - "let () = print_string 0"
- + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
- + "let () = print_string ([%just_zero ])"
-
- $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
- # . Phase cache - Reader phase
- Cache hit
- # . Phase cache - PPX phase
- - Cache invalidation
- + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ddafdbeabaceb/default/tests/test-dirs/with-ppx/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
-
- Stop server
- $ $MERLIN server stop-server
[ERROR] The compilation of merlin.4.18-414 failed at "dune runtest -p merlin -j 71".
#=== ERROR while compiling merlin.4.18-414 ====================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path ~/.opam/4.14/.opam-switch/build/merlin.4.18-414
# command ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p merlin -j 71
# exit-code 1
# env-file ~/.opam/log/merlin-7-9ce5be.env
# output-file ~/.opam/log/merlin-7-9ce5be.out
### output ###
# File "tests/test-dirs/locate/in-implicit-trans-dep.t/run.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t _build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
# diff --git a/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t b/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
# index 57e61ef..e959051 100644
# --- a/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t
# +++ b/_build/default/tests/test-dirs/locate/in-implicit-trans-dep.t/run.t.corrected
# @@ -6,12 +6,6 @@ used to not find the file in the source path provided by Dune.
# > -filename bin/main.ml <bin/main.ml
# {
# "class": "return",
# - "value": {
# - "file": "$TESTCASE_ROOT/src/lib2/lib2.ml",
# - "pos": {
# - "line": 1,
# - "col": 0
# - }
# - },
# + "value": "'Lib1.t' seems to originate from 'Lib2' whose ML file could not be found",
# "notifications": []
# }
# File "tests/test-dirs/with-ppx/parsetree-cache.t/run.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t _build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
# diff --git a/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t b/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
# index a403786..e43c88f 100644
# --- a/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t
# +++ b/_build/default/tests/test-dirs/with-ppx/parsetree-cache.t/run.t.corrected
# @@ -32,6 +32,7 @@ By default, the cache for the reader phase and the PPX phase are disabled
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache is disabled: configuration
# @@ -48,21 +49,23 @@ The cache can be enabled via the USE_PPX_CACHE directive
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache wasn't populated
# --
# # . Phase cache - PPX phase
# - Cache wasn't populated
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache hit
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
#
# Modifying the source code invalidates the cache
# @@ -73,12 +76,13 @@ Modifying the source code invalidates the cache
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache invalidation
# --
# # . Phase cache - PPX phase
# - Cache invalidation
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# Also, modifying the PPX invalidates the PPX cache
#
# @@ -101,11 +105,12 @@ Also, modifying the PPX invalidates the PPX cache
# $ dune exec ./main.exe 2>/dev/null
# 0
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache hit
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# (Different PPX than before: expands to 1, instead of 0)
# $ cat > my_ppx.ml <<EOF
# @@ -126,11 +131,12 @@ Also, modifying the PPX invalidates the PPX cache
# $ dune exec ./main.exe 2>/dev/null
# 1
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache invalidation
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# Also, modifying the args to the PPX invalidates the PPX cache
# $ cat > .merlin <<EOF
# @@ -141,11 +147,12 @@ Also, modifying the args to the PPX invalidates the PPX cache
# $ dune exec ./main.exe 2>/dev/null
# 1
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache invalidation
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# -------------
#
# @@ -183,17 +190,34 @@ When ppx_dep.txt contains an int, there are no errors.
# 1
# And Merlin does the right thing.
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs 1> /dev/null < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# {
# "class": "return",
# - "value": [],
# + "value": [
# + {
# + "start": {
# + "line": 1,
# + "col": 20
# + },
# + "end": {
# + "line": 1,
# + "col": 29
# + },
# + "type": "typer",
# + "sub": [],
# + "valid": true,
# + "message": "Uninterpreted extension 'just_zero'."
# + }
# + ],
# "notifications": []
# }
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache hit
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# When ppx_dep.txt is changed to contain a non-int, the AST contains an error.
# $ cat > ppx_dep.txt <<EOF
# @@ -205,16 +229,32 @@ When ppx_dep.txt is changed to contain a non-int, the AST contains an error.
#
# Merlin just uses the cache, though, and doesn't notice the ppx_dep.txt change.
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# {
# "class": "return",
# - "value": [],
# + "value": [
# + {
# + "start": {
# + "line": 1,
# + "col": 20
# + },
# + "end": {
# + "line": 1,
# + "col": 29
# + },
# + "type": "typer",
# + "sub": [],
# + "valid": true,
# + "message": "Uninterpreted extension 'just_zero'."
# + }
# + ],
# "notifications": []
# }
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache hit
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ffdfecadbcbcb/default/tests/test-dirs/with-ppx/parsetree-cache.t/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# That's why it's important that the build system doesn't enable the cache
# when the project has PPX dependencies
# @@ -232,9 +272,25 @@ Again: when ppx_dep.txt contains an int, there are no errors.
#
# And Merlin does the right thing.
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# {
# "class": "return",
# - "value": [],
# + "value": [
# + {
# + "start": {
# + "line": 1,
# + "col": 20
# + },
# + "end": {
# + "line": 1,
# + "col": 29
# + },
# + "type": "typer",
# + "sub": [],
# + "valid": true,
# + "message": "Uninterpreted extension 'just_zero'."
# + }
# + ],
# "notifications": []
# }
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# @@ -254,22 +310,23 @@ Again: when ppx_dep.txt is changed to contain a non-int, the AST contains an err
#
# This time, since the PPX cache isn't enabled, Merlin does the right thing here as well.
# $ $MERLIN server errors -filename main.ml -log-file merlin_logs < main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# {
# "class": "return",
# "value": [
# {
# "start": {
# "line": 1,
# - "col": 18
# + "col": 20
# },
# "end": {
# "line": 1,
# - "col": 30
# + "col": 29
# },
# "type": "typer",
# "sub": [],
# "valid": true,
# - "message": "It's sunny"
# + "message": "Uninterpreted extension 'just_zero'."
# }
# ],
# "notifications": []
# File "tests/test-dirs/with-ppx/issue1647-cache-invalidation.t", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t _build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
# diff --git a/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t b/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
# index 1a927cd..2efca3c 100644
# --- a/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t
# +++ b/_build/default/tests/test-dirs/with-ppx/issue1647-cache-invalidation.t.corrected
# @@ -49,12 +49,13 @@ Make sure that this test doesn't depend on previous state
# `errors` requires the typedtree and thus types the buffer
# $ $MERLIN server errors -log-file merlin_logs \
# > -filename main.ml 1> /dev/null <main.ml
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache wasn't populated
# --
# # . Phase cache - PPX phase
# - Cache wasn't populated
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ddafdbeabaceb/default/tests/test-dirs/with-ppx/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# Now we edit the file. This should invalidate the caches
# $ cat > main.ml <<EOF
# @@ -76,13 +77,14 @@ The cache detects that the reader cache was invalidated in the last query
# and therefore invalidates the PPX cache in this query.
# $ $MERLIN server dump -what ppxed-source -log-file merlin_logs \
# > -filename main.ml <main.ml | tr -d '\n' | jq '.value'
# - "let () = print_string 0"
# + sh: 1: _build/default/.ppx/a56cb746ce56d7c281c7d9796f4166ed/ppx.exe: not found
# + "let () = print_string ([%just_zero ])"
#
# $ cat merlin_logs | grep 'Phase cache' -A 1 | sed "s/[0-9]*//g"
# # . Phase cache - Reader phase
# Cache hit
# # . Phase cache - PPX phase
# - Cache invalidation
# + Cache workflow is incomplete: Stat for/home/opam/.opam/./.opam-switch/build/merlin..-/_build/.sandbox/ddafdbeabaceb/default/tests/test-dirs/with-ppx/_build/default/.ppx/acbcedccdfed/ppx.execouldn't be gathered
#
# Stop server
# $ $MERLIN server stop-server
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build merlin 4.18-414
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose merlin.4.18-414' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose merlin.4.18-414;
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" != 'merlin.4.18-414' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2025-12-15 17:01.59: Job failed: Failed: Build failed
2025-12-15 17:01.59: Log analysis:
2025-12-15 17:01.59: >>>
[ERROR] The compilation of merlin.4.18-414 failed at "dune runtest -p merlin -j 71".
(score = 20)
2025-12-15 17:01.59: >>>
[ERROR] The compilation of merlin.4.18-414 failed at "dune runtest -p merlin -j 71".
(score = 20)
2025-12-15 17:01.59: The compilation of merlin.4.18-414 failed at "dune runtest -p merlin -j 71".