- github
- ocaml
- opam-repository
- 618587
- compilers,4.14,ppxlib.0.38.0,revdeps,merlin.4.18-414
(not at the head of any monitored branch or PR)
2026-03-20 10:16.51: New job: test merlin.4.18-414 with ppxlib.0.38.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29563/head (6185871ccd68c72dd8f6902c863f0554508a6764)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29563/head" && git reset --hard 6185871c
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ppxlib.0.38.0 0.38.0
RUN opam reinstall ppxlib.0.38.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ppxlib.0.38.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall 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 .
2026-03-20 10:16.51: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-ppxlib.0.38.0-merlin.4.18-414-6185871ccd68c72dd8f6902c863f0554508a6764"
2026-03-20 10:16.51: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ppxlib.0.38.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall 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"))
)
2026-03-20 10:16.51: Waiting for resource in pool OCluster
2026-03-20 11:05.18: Waiting for worker…
2026-03-20 11:06.55: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..6185871ccd
Fast-forward
packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 47 +++++++++++++++++++
packages/ppxlib/ppxlib.0.38.0/opam | 64 ++++++++++++++++++++++++++
2 files changed, 111 insertions(+)
create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam
create mode 100644 packages/ppxlib/ppxlib.0.38.0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-20 11:07.00 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-20 11:07.00 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
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-03-20 11:07.00 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-20 11:07.00 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-20 11:07.00 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-20 11:07.01 ---> using "65f3cde022195404236e2872f9138421a9d94b4fb83edf4557bf50f839b1a1cb" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-20 11:07.01 ---> using "4801a3cf903575d080a6fd0f2f9aa5180f424ea419b0e4449a3402d8e3e9c6b2" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [116 kB]
- Fetched 10.0 MB in 2s (6157 kB/s)
- Reading package lists...
-
2026-03-20 11:07.01 ---> using "3d6b7cfa95d93f91065e93aad5a6767610a7e6104ce449c1f9febbf3da6436c3" from cache
/home/opam: (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
ppxlib is now pinned to version 0.38.0
2026-03-20 11:07.01 ---> using "0210aae052ea6c63ed6e00734da52a1f07423ab074b840b70199e267e5040b28" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ppxlib.0.38.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ppxlib.0.38.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install dune 3.22.0 [required by ppxlib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.38.0 (pinned)
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:07.01 ---> using "3a2d0f81da018540a62601cd929eaf6ce021a5b4614452bcb57dddabe5cbf957" 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)
2026-03-20 11:07.28 ---> saved as "4dd38bcdc03da4fe68309ff9561fed552a95396479e1dd8d42e665746a93647c"
/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 1 package
- install conf-jq 1 [required by merlin]
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 ... 20623 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+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-jq.1
-> retrieved merlin.4.18-414 (https://opam.ocaml.org/cache)
-> removed merlin.4.18-414
[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-3a699f.env
# output-file ~/.opam/log/merlin-7-3a699f.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..665daba 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/fdebdabaaeba/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/fdebdabaaeba/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..97b5678 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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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
+-
# 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-20260320110729.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-03-20 11:07.51 ---> saved as "43bba72b67f79f988af635c9f11e07e897df3335cffb70033791e53f865d1757"
/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/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..665daba 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/fdebdabaaeba/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/fdebdabaaeba/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..97b5678 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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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] 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-ebf7ec.env
# output-file ~/.opam/log/merlin-7-ebf7ec.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..665daba 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/fdebdabaaeba/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/fdebdabaaeba/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..97b5678 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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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/faedbcdaaf/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
+-
- 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
2026-03-20 11:08.20: Job failed: Failed: Build failed
2026-03-20 11:08.20: Log analysis:
2026-03-20 11:08.20: >>>
[ERROR] The compilation of merlin.4.18-414 failed at "dune runtest -p merlin -j 71".
(score = 20)
2026-03-20 11:08.20: >>>
[ERROR] The compilation of merlin.4.18-414 failed at "dune runtest -p merlin -j 71".
(score = 20)
2026-03-20 11:08.20: The compilation of merlin.4.18-414 failed at "dune runtest -p merlin -j 71".