Build:
- 0
2026-01-31 21:59.37: New job: test menhir-lsp.0.2.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29318/head (6f413481e4aecabaa0271ae98606bc5421a8c46d)
on macos-homebrew-ocaml-5.4/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/29318/head" && git reset --hard 6f413481
git fetch origin master
git merge --no-edit 75005aaa525c00ad1d4f4f8923680923b973a1e4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-5.4
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/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 -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn menhir-lsp.0.2.1 0.2.1
RUN opam reinstall menhir-lsp.0.2.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'menhir-lsp.0.2.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test menhir-lsp.0.2.1) || true
RUN opam reinstall --with-test --verbose menhir-lsp.0.2.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'menhir-lsp.0.2.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-01-31 21:59.37: Using cache hint "macos-homebrew-ocaml-5.4-menhir-lsp.0.2.1-6f413481e4aecabaa0271ae98606bc5421a8c46d"
2026-01-31 21:59.37: Using OBuilder spec:
((from macos-homebrew-ocaml-5.4)
(user (uid 1000) (gid 1000))
(run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -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 -k local --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn menhir-lsp.0.2.1 0.2.1"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall menhir-lsp.0.2.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'menhir-lsp.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test menhir-lsp.0.2.1) || true"))
(run (shell "opam reinstall --with-test --verbose menhir-lsp.0.2.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'menhir-lsp.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-31 21:59.37: Waiting for resource in pool OCluster
2026-01-31 21:59.38: Waiting for worker…
2026-01-31 22:04.27: Got resource from pool OCluster
Building on i7-worker-03
All commits already cached
Updating files: 33% (6499/19320)
Updating files: 34% (6569/19320)
Updating files: 35% (6762/19320)
Updating files: 36% (6956/19320)
Updating files: 37% (7149/19320)
Updating files: 38% (7342/19320)
Updating files: 39% (7535/19320)
Updating files: 40% (7728/19320)
Updating files: 41% (7922/19320)
Updating files: 42% (8115/19320)
Updating files: 43% (8308/19320)
Updating files: 44% (8501/19320)
Updating files: 45% (8694/19320)
Updating files: 46% (8888/19320)
Updating files: 47% (9081/19320)
Updating files: 48% (9274/19320)
Updating files: 49% (9467/19320)
Updating files: 50% (9660/19320)
Updating files: 51% (9854/19320)
Updating files: 52% (10047/19320)
Updating files: 53% (10240/19320)
Updating files: 54% (10433/19320)
Updating files: 55% (10626/19320)
Updating files: 56% (10820/19320)
Updating files: 57% (11013/19320)
Updating files: 58% (11206/19320)
Updating files: 59% (11399/19320)
Updating files: 59% (11579/19320)
Updating files: 60% (11592/19320)
Updating files: 61% (11786/19320)
Updating files: 62% (11979/19320)
Updating files: 63% (12172/19320)
Updating files: 64% (12365/19320)
Updating files: 65% (12558/19320)
Updating files: 66% (12752/19320)
Updating files: 67% (12945/19320)
Updating files: 68% (13138/19320)
Updating files: 69% (13331/19320)
Updating files: 70% (13524/19320)
Updating files: 71% (13718/19320)
Updating files: 72% (13911/19320)
Updating files: 73% (14104/19320)
Updating files: 74% (14297/19320)
Updating files: 75% (14490/19320)
Updating files: 76% (14684/19320)
Updating files: 77% (14877/19320)
Updating files: 78% (15070/19320)
Updating files: 79% (15263/19320)
Updating files: 80% (15456/19320)
Updating files: 81% (15650/19320)
Updating files: 82% (15843/19320)
Updating files: 83% (16036/19320)
Updating files: 84% (16229/19320)
Updating files: 85% (16422/19320)
Updating files: 86% (16616/19320)
Updating files: 87% (16809/19320)
Updating files: 88% (17002/19320)
Updating files: 89% (17195/19320)
Updating files: 90% (17388/19320)
Updating files: 90% (17437/19320)
Updating files: 91% (17582/19320)
Updating files: 92% (17775/19320)
Updating files: 93% (17968/19320)
Updating files: 94% (18161/19320)
Updating files: 95% (18354/19320)
Updating files: 96% (18548/19320)
Updating files: 97% (18741/19320)
Updating files: 98% (18934/19320)
Updating files: 99% (19127/19320)
Updating files: 100% (19320/19320)
Updating files: 100% (19320/19320), done.
HEAD is now at 75005aaa52 Merge pull request #29317 from hra687261/release-domainpc-0.2
Updating 75005aaa52..6f413481e4
Fast-forward
packages/menhir-lsp/menhir-lsp.0.2.1/opam | 49 +++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
create mode 100644 packages/menhir-lsp/menhir-lsp.0.2.1/opam
(from macos-homebrew-ocaml-5.4)
2026-01-31 22:04.30 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-01-31 22:04.31 ---> using "7aa34524ca0a69b4a488c30909f7495a04a243f9066091b1dfe73b446b0dfcd3" from cache
/: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-01-31 22:04.31 ---> using "91dcaa513ca3161d91620d0583acdea5310cd52ccab1dfbdd183600da37afdb2" from cache
/: (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=macos os-distribution=homebrew os-version=15.5
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 11
# repositories 1 (version-controlled)
# pinned 0
# current-switch 5.4.0
# invariant ["ocaml-base-compiler" {= "5.4.0"} | "ocaml-system" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /Users/mac1000/.opam/5.4.0/lib/ocaml/stublibs:/Users/mac1000/.opam/5.4.0/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-01-31 22:04.31 ---> using "cea1bfc0b1cda73d964aa2fc69cc828a6e6d8edd86f991754707e8b004a3cb09" from cache
/: (env OPAMDOWNLOADJOBS 1)
/: (env OPAMERRLOGLEN 0)
/: (env OPAMPRECISETRACKING 1)
/: (env CI true)
/: (env OPAM_REPO_CI true)
/: (run (shell "rm -rf opam-repository/"))
2026-01-31 22:04.32 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache
/: (copy (src .) (dst opam-repository/))
2026-01-31 22:04.34 ---> using "7491dd8bceb9a04b3255498374de56de0f52c0d09ccd621e730f4a2ee21327d8" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-01-31 22:04.34 ---> using "a5846d8a93cab24c21c03e01b5e92dcc7156784b5ceb504b65f64b209e776d48" from cache
/: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:80c194381e990a4967a1ae44b8242b688e6a17ab590865a38671137677411469
- #=#=#
0.0%
0.4%
0.8%
1.3%
# 2.4%
-
## 3.2%
## 4.1%
### 4.9%
#### 5.8%
#### 6.8%
##### 7.6%
###### 8.5%
###### 9.4%
####### 10.1%
####### 10.5%
-
####### 10.9%
######## 11.3%
######## 11.7%
######## 12.3%
######### 12.7%
######### 13.1%
######### 13.5%
########## 14.1%
########## 14.5%
########## 14.9%
########### 15.4%
-
########### 15.9%
########### 16.3%
############ 16.7%
############ 17.1%
############ 17.5%
############ 18.1%
############# 18.5%
############# 18.9%
############# 19.3%
############## 19.7%
############## 20.1%
-
############## 20.7%
############### 21.1%
############### 21.5%
############### 21.9%
################ 22.3%
################ 22.9%
################ 23.3%
################# 23.7%
################# 24.2%
################# 24.6%
################## 25.0%
-
################## 25.5%
################## 26.0%
################### 26.4%
################### 27.0%
################### 27.4%
#################### 27.9%
#################### 28.3%
#################### 28.9%
##################### 29.3%
##################### 29.8%
-
##################### 30.3%
###################### 30.8%
###################### 31.2%
###################### 31.6%
####################### 32.0%
####################### 32.5%
####################### 32.9%
######################## 33.4%
######################## 33.8%
######################## 34.2%
-
########################
- 34
- .6%
######################### 35.1%
######################### 35.5%
######################### 36.0%
########################## 36.4%
########################## 36.8%
########################## 37.3%
########################### 37.8%
########################### 38.2%
########################### 38.6%
############################ 39.0%
-
############################ 39.4%
############################ 39.9%
############################# 40.4%
############################# 40.8%
############################# 41.4%
############################## 41.8%
############################## 42.3%
############################## 42.7%
############################### 43.1%
############################### 43.7%
-
############################### 44.1%
################################ 44.5%
################################ 44.9%
################################ 45.5%
################################# 45.9%
################################# 46.3%
################################# 46.7%
################################# 47.1%
################################## 47.7%
################################## 48.1%
################################## 48.5%
-
################################### 48.9%
################################### 49.3%
################################### 49.9%
#################################### 50.3%
#################################### 50.7%
#################################### 51.1%
##################################### 51.5%
##################################### 52.1%
##################################### 52.5%
###################################### 52.9%
###################################### 53.3%
-
###################################### 53.7%
###################################### 54.1%
####################################### 54.7%
####################################### 55.1%
####################################### 55.5%
######################################## 55.9%
######################################## 56.5%
######################################## 56.9%
######################################### 57.3%
######################################### 57.7%
-
######################################### 58.1%
########################################## 58.5%
########################################## 58.9%
########################################## 59.5%
########################################### 59.9%
########################################### 60.3%
########################################### 60.7%
############################################ 61.1%
############################################ 61.7%
############################################ 62.1%
############################################# 62.6%
-
############################################# 63.0%
############################################# 63.6%
############################################## 64.0%
############################################## 64.4%
############################################## 65.0%
############################################### 65.4%
############################################### 65.8%
############################################### 66.2%
############################################### 66.6%
################################################ 67.0%
################################################ 67.6%
-
################################################ 68.0%
################################################# 68.4%
################################################# 68.9%
################################################# 69.3%
################################################## 69.9%
################################################## 70.3%
################################################## 70.4%
################################################## 70.6%
################################################### 71.0%
################################################### 71.5%
-
################################################### 71.9%
#################################################### 72.4%
#################################################### 72.8%
#################################################### 73.3%
##################################################### 73.7%
##################################################### 74.1%
##################################################### 74.6%
##################################################### 75.0%
###################################################### 75.4%
###################################################### 75.9%
###################################################### 76.3%
-
####################################################### 76.7%
####################################################### 77.3%
####################################################### 77.7%
######################################################## 78.1%
######################################################## 78.5%
######################################################## 78.9%
######################################################### 79.5%
######################################################### 79.9%
######################################################### 80.3%
########################################################## 80.7%
########################################################## 81.1%
-
########################################################## 81.5%
########################################################### 82.1%
########################################################### 82.5%
########################################################### 82.9%
########################################################### 83.3%
############################################################ 83.7%
############################################################ 84.2%
############################################################ 84.6%
############################################################# 84.8%
############################################################# 85.1%
-
############################################################# 85.4%
############################################################# 85.7%
############################################################# 85.9%
############################################################## 86.3%
############################################################## 86.8%
############################################################## 87.2%
############################################################### 87.6%
############################################################### 88.0%
############################################################### 88.5%
################################################################ 89.0%
################################################################ 89.4%
-
################################################################ 89.9%
################################################################# 90.3%
################################################################# 90.7%
################################################################# 91.3%
################################################################## 91.7%
################################################################## 92.1%
################################################################## 92.5%
################################################################## 92.9%
################################################################### 93.5%
################################################################### 93.9%
-
################################################################### 94.3%
#################################################################### 94.8%
#################################################################### 95.3%
#################################################################### 95.7%
##################################################################### 96.1%
##################################################################### 96.5%
##################################################################### 97.0%
###################################################################### 97.5%
###################################################################### 97.9%
###################################################################### 98.4%
####################################################################### 98.8%
-
####################################################################### 99.4%
####################################################################### 99.8%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.8.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
- https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
-
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
- https://github.com/Homebrew/brew#donations
-
- Already up-to-date.
2026-01-31 22:04.34 ---> using "30bba19aab91d5439a8995964963f12943a2749a04337c65783a5eb4ad7faefd" from cache
/: (run (shell "opam pin add -k version -yn menhir-lsp.0.2.1 0.2.1"))
menhir-lsp is now pinned to version 0.2.1
2026-01-31 22:04.35 ---> using "7d510086a61fc9261126f0103b537d2d22fbff23a739516562cb0e2c3a6a223c" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall menhir-lsp.0.2.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'menhir-lsp.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
menhir-lsp.0.2.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 42 packages
- install base-bytes base [required by ocplib-endian]
- install containers 3.17 [required by menhir-lsp]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by merlin-lib, stdune]
- install dune 3.21.0 [required by menhir-lsp]
- install dune-configurator 3.21.0 [required by containers]
- install dyn 3.21.0 [required by stdune]
- install either 1.0.0 [required by containers]
- install fs-io 3.21.0 [required by stdune]
- install linol 0.10 [required by menhir-lsp]
- install linol-lwt 0.10 [required by menhir-lsp]
- install logs 0.10.0 [required by linol]
- install lwt 5.9.2 [required by linol-lwt, lwt_ppx]
- install lwt_ppx 5.9.3 [required by menhir-lsp]
- install menhir 20250912 [required by menhir-lsp]
- install menhir-lsp 0.2.1 (pinned)
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir-lsp]
- install menhirSdk 20250912 [required by menhir-lsp]
- install merlin-lib 5.6.1-504 [required by menhir-lsp]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by logs, uutf]
- install ocamlfind 1.9.8 [required by uutf, logs, ppx_deriving]
- install ocplib-endian 1.2 [required by lwt]
- install ordering 3.21.0 [required by menhir-lsp]
- install pp 2.0.0 [required by stdune]
- install ppx_derivers 1.2.1 [required by ppxlib, ppx_deriving]
- install ppx_deriving 6.1.1 [required by visitors]
- install ppx_yojson_conv_lib v0.17.0 [required by linol]
- install ppxlib 0.37.0 [required by lwt_ppx, visitors]
- install re 1.14.0 [required by menhir-lsp]
- install result 1.5 [required by visitors]
- install seq base [required by yojson]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stdune 3.21.0 [required by menhir-lsp]
- install top-closure 3.21.0 [required by stdune]
- install topkg 1.1.1 [required by logs, uutf]
- install trace 0.10.1 [required by linol]
- install uutf 1.0.4 [required by linol]
- install visitors 20251114 [required by menhir-lsp]
- install yojson 2.2.2 [required by linol, linol-lwt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved containers.3.17 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0, dyn.3.21.0, fs-io.3.21.0, ordering.3.21.0, stdune.3.21.0, top-closure.3.21.0 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved linol.0.10, linol-lwt.0.10 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> retrieved lwt_ppx.5.9.3 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved menhir-lsp.0.2.1 (https://github.com/dalps/menhir-lsp/archive/refs/tags/0.2.1.tar.gz)
-> retrieved merlin-lib.5.6.1-504 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppx_yojson_conv_lib.v0.17.0 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved trace.0.10.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved visitors.20251114 (cached)
-> retrieved yojson.2.2.2 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed dune.3.21.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed menhirCST.20250912
-> installed either.1.0.0
-> installed csexp.1.5.2
-> installed fs-io.3.21.0
-> installed stdlib-shims.0.3.0
-> installed ordering.3.21.0
-> installed sexplib0.v0.17.0
-> installed result.1.5
-> installed re.1.14.0
-> installed ppx_derivers.1.2.1
-> installed pp.2.0.0
-> installed yojson.2.2.2
-> installed dune-configurator.3.21.0
-> installed top-closure.3.21.0
-> installed cppo.1.8.0
-> installed trace.0.10.1
-> installed ppx_yojson_conv_lib.v0.17.0
-> installed ocplib-endian.1.2
-> installed dyn.3.21.0
-> installed containers.3.17
-> installed lwt.5.9.2
-> installed logs.0.10.0
-> installed menhir.20250912
-> installed stdune.3.21.0
-> installed merlin-lib.5.6.1-504
-> installed linol.0.10
-> installed ppxlib.0.37.0
-> installed linol-lwt.0.10
-> installed lwt_ppx.5.9.3
-> installed ppx_deriving.6.1.1
-> installed visitors.20251114
-> installed menhir-lsp.0.2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-31 22:04.35 ---> using "b702b000370827f00e0a607e0b2926379f0b80f6bb8099b496cb13baea951c0a" from cache
/: (run (network host)
(shell "(opam reinstall --with-test menhir-lsp.0.2.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile menhir-lsp 0.2.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved menhir-lsp.0.2.1 (https://github.com/dalps/menhir-lsp/archive/refs/tags/0.2.1.tar.gz)
-> removed menhir-lsp.0.2.1
-> installed menhir-lsp.0.2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-31 22:04.48 ---> saved as "21fff3e4ec6f0b9d4dd17a35ce676046ee5aea8f7843167c06af8f1df023107f"
/: (run (shell "opam reinstall --with-test --verbose menhir-lsp.0.2.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'menhir-lsp.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile menhir-lsp 0.2.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [menhir-lsp.0.2.1: extract]
-> retrieved menhir-lsp.0.2.1 (cached)
Processing 2/4: [menhir-lsp: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "menhir-lsp" "-j" "11" "@install" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/menhir-lsp.0.2.1)
-> compiled menhir-lsp.0.2.1
-> removed menhir-lsp.0.2.1
-> installed menhir-lsp.0.2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-31 22:05.00 ---> saved as "979e3a8bf4b4429b8dd598d4871e05ef9aa31d7592d48f7f6129fe4d76224185"
Job succeeded
2026-01-31 22:05.16: Job succeeded