- github
- ocaml
- opam-repository
- a540e3
- macos,macos-homebrew-ocaml-4.14-arm64,lsp.1.26.0-5.5~preview,tests
(not at the head of any monitored branch or PR)
2026-03-19 16:28.51: New job: test lsp.1.26.0-5.5~preview, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29565/head (a540e38baa7b2d1d7e6218b3bc3eb48112a04ff2)
on macos-homebrew-ocaml-4.14/arm64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29565/head" && git reset --hard a540e38b
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
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 lsp.1.26.0-5.5~preview 1.26.0-5.5~preview
RUN opam reinstall lsp.1.26.0-5.5~preview; \
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" != 'lsp.1.26.0-5.5~preview' && 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 lsp.1.26.0-5.5~preview) || true
RUN opam reinstall --with-test --verbose lsp.1.26.0-5.5~preview; \
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" != 'lsp.1.26.0-5.5~preview' && 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-19 16:28.51: Using cache hint "macos-homebrew-ocaml-4.14-lsp.1.26.0-5.5~preview-a540e38baa7b2d1d7e6218b3bc3eb48112a04ff2"
2026-03-19 16:28.51: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
(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 lsp.1.26.0-5.5~preview 1.26.0-5.5~preview"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall lsp.1.26.0-5.5~preview;\
\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\" != 'lsp.1.26.0-5.5~preview' && 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 lsp.1.26.0-5.5~preview) || true"))
(run (shell "opam reinstall --with-test --verbose lsp.1.26.0-5.5~preview;\
\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\" != 'lsp.1.26.0-5.5~preview' && 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-19 16:28.51: Waiting for resource in pool OCluster
2026-03-19 16:28.52: Waiting for worker…
2026-03-19 16:34.37: Got resource from pool OCluster
Building on m1-worker-03
All commits already cached
Updating files: 65% (12144/18508)
Updating files: 66% (12216/18508)
Updating files: 67% (12401/18508)
Updating files: 68% (12586/18508)
Updating files: 69% (12771/18508)
Updating files: 70% (12956/18508)
Updating files: 71% (13141/18508)
Updating files: 72% (13326/18508)
Updating files: 73% (13511/18508)
Updating files: 74% (13696/18508)
Updating files: 75% (13881/18508)
Updating files: 76% (14067/18508)
Updating files: 77% (14252/18508)
Updating files: 78% (14437/18508)
Updating files: 79% (14622/18508)
Updating files: 80% (14807/18508)
Updating files: 81% (14992/18508)
Updating files: 82% (15177/18508)
Updating files: 83% (15362/18508)
Updating files: 84% (15547/18508)
Updating files: 85% (15732/18508)
Updating files: 86% (15917/18508)
Updating files: 87% (16102/18508)
Updating files: 88% (16288/18508)
Updating files: 89% (16473/18508)
Updating files: 90% (16658/18508)
Updating files: 91% (16843/18508)
Updating files: 92% (17028/18508)
Updating files: 93% (17213/18508)
Updating files: 94% (17398/18508)
Updating files: 95% (17583/18508)
Updating files: 96% (17768/18508)
Updating files: 97% (17953/18508)
Updating files: 98% (18138/18508)
Updating files: 99% (18323/18508)
Updating files: 100% (18508/18508)
Updating files: 100% (18508/18508), done.
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..a540e38baa
Fast-forward
packages/jsonrpc/jsonrpc.1.26.0-5.5~preview/opam | 51 +++++++++++++++
packages/lsp/lsp.1.26.0-5.5~preview/opam | 61 +++++++++++++++++
.../ocaml-lsp-server.1.26.0-5.5~preview/opam | 76 ++++++++++++++++++++++
3 files changed, 188 insertions(+)
create mode 100644 packages/jsonrpc/jsonrpc.1.26.0-5.5~preview/opam
create mode 100644 packages/lsp/lsp.1.26.0-5.5~preview/opam
create mode 100644 packages/ocaml-lsp-server/ocaml-lsp-server.1.26.0-5.5~preview/opam
(from macos-homebrew-ocaml-4.14)
2026-03-19 16:34.39 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-03-19 16:34.39 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" 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-03-19 16:34.39 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" 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=arm64 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 7
# repositories 1 (version-controlled)
# pinned 0
# current-switch 4.14.2
# invariant ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "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 /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-19 16:34.39 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" 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-03-19 16:34.39 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache
/: (copy (src .) (dst opam-repository/))
2026-03-19 16:34.40 ---> using "ca7633f5abad9eed513deb5cc7cf4794793811cacea5d5166570e158e8c8776f" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-03-19 16:34.40 ---> using "a5e8c0683b6a847442121f642a71a68a2ced05b8ceb5f9de4e2e8b241ddde7e6" from cache
/: (run (network host)
(shell "opam update --depexts || true"))
+ /opt/homebrew/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:cef6f881f516d2cdbd0a5bfc7e20318da8b047cf2674ee27c5d4858d3ecd6430
- #=#=#
0.7%
# 1.6%
# 2.4%
## 3.3%
-
## 4.1%
### 4.9%
#### 5.7%
#### 6.6%
##### 7.4%
##### 8.2%
###### 9.0%
####### 9.8%
####### 10.7%
######## 11.5%
######## 12.3%
-
######### 13.1%
########## 13.9%
########## 14.7%
########### 15.5%
########### 16.4%
############ 17.2%
############ 18.0%
############# 18.7%
############## 19.7%
############## 20.6%
############### 21.4%
-
################ 22.2%
################ 23.0%
################# 23.8%
################# 24.6%
################## 25.5%
################## 26.3%
################### 27.2%
#################### 27.9%
#################### 28.7%
##################### 29.5%
##################### 30.4%
-
###################### 31.2%
####################### 32.0%
####################### 32.9%
######################## 33.7%
######################## 34.4%
######################### 35.2%
########################## 36.1%
########################## 36.9%
########################### 37.7%
########################### 38.6%
############################ 39.3%
-
############################ 40.2%
############################# 41.0%
############################## 41.7%
############################## 42.3%
############################### 43.1%
############################### 43.9%
################################ 44.7%
################################ 45.6%
################################# 46.0%
################################# 46.4%
################################# 46.9%
################################## 47.3%
-
################################## 47.7%
################################## 48.1%
################################## 48.5%
################################### 49.0%
################################### 49.4%
################################### 49.8%
#################################### 50.2%
#################################### 50.6%
#################################### 51.1%
##################################### 51.5%
-
##################################### 51.9%
##################################### 52.3%
##################################### 52.6%
###################################### 53.1%
###################################### 53.5%
###################################### 53.9%
####################################### 54.4%
####################################### 54.8%
####################################### 55.2%
######################################## 55.7%
######################################## 56.1%
-
######################################## 56.5%
######################################### 57.1%
######################################### 57.4%
######################################### 57.8%
######################################### 58.3%
########################################## 58.7%
########################################## 59.1%
########################################## 59.5%
########################################### 59.9%
########################################### 60.3%
########################################### 60.8%
-
############################################ 61.2%
############################################ 61.6%
############################################ 62.0%
############################################ 62.5%
############################################# 62.9%
############################################# 63.3%
############################################# 63.6%
############################################## 64.2%
############################################## 64.6%
############################################## 65.0%
############################################### 65.3%
-
############################################### 65.7%
############################################### 66.1%
############################################### 66.4%
############################################### 66.7%
################################################ 67.0%
################################################ 67.3%
################################################ 67.5%
################################################ 67.8%
################################################ 68.1%
################################################# 68.3%
################################################# 68.6%
-
################################################# 68.9%
################################################# 69.1%
################################################# 69.4%
################################################## 69.8%
################################################## 70.0%
################################################## 70.3%
################################################## 70.6%
################################################## 70.8%
################################################### 71.1%
################################################### 71.5%
################################################### 71.7%
-
################################################### 72.0%
#################################################### 72.4%
#################################################### 72.8%
#################################################### 73.2%
##################################################### 73.7%
##################################################### 74.1%
##################################################### 74.5%
##################################################### 74.8%
###################################################### 75.2%
###################################################### 75.6%
###################################################### 76.0%
-
####################################################### 76.4%
####################################################### 77.1%
######################################################## 78.1%
######################################################## 78.9%
######################################################### 79.6%
######################################################### 80.4%
########################################################## 81.2%
########################################################### 82.1%
########################################################### 82.9%
############################################################ 83.7%
############################################################ 84.6%
-
############################################################# 85.3%
############################################################## 86.2%
############################################################## 86.8%
############################################################## 87.4%
############################################################### 87.8%
############################################################### 88.1%
############################################################### 88.5%
################################################################ 88.9%
################################################################ 89.4%
################################################################ 89.8%
################################################################ 90.2%
################################################################# 90.6%
-
################################################################# 91.1%
################################################################# 91.5%
################################################################## 91.9%
################################################################## 92.3%
################################################################## 92.7%
################################################################### 93.1%
################################################################### 93.5%
################################################################### 93.9%
################################################################### 94.2%
#################################################################### 94.7%
#################################################################### 95.1%
-
#################################################################### 95.5%
##################################################################### 95.9%
##################################################################### 96.3%
##################################################################### 96.7%
##################################################################### 97.1%
###################################################################### 97.6%
###################################################################### 98.0%
###################################################################### 98.4%
####################################################################### 98.7%
####################################################################### 99.3%
####################################################################### 99.7%
-
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.1.arm64_big_sur.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-03-19 16:34.41 ---> using "74a28b86d8f8d7d7d07c0ed46b18535748302fcd4eb73eed4b1699231082bb85" from cache
/: (run (shell "opam pin add -k version -yn lsp.1.26.0-5.5~preview 1.26.0-5.5~preview"))
lsp is now pinned to version 1.26.0-5.5~preview
2026-03-19 16:34.41 ---> using "c92f6e682711e2a6c0a0fcda35e0522e78e1030af6b68c3b50ace51bc86fbd5f" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall lsp.1.26.0-5.5~preview;\
\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\" != 'lsp.1.26.0-5.5~preview' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lsp.1.26.0-5.5~preview is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
- install dune 3.22.0 [required by lsp]
- install jsonrpc 1.26.0-5.5~preview [required by lsp]
- install lsp 1.26.0-5.5~preview (pinned)
- install ocamlbuild 0.16.1 [required by uutf]
- install ocamlfind 1.9.8 [required by uutf]
- install ppx_yojson_conv_lib v0.16.0 [required by lsp]
- install topkg 1.1.1 [required by uutf]
- install uutf 1.0.4 [required by lsp]
- install yojson 3.0.0 [required by lsp]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0 (cached)
-> retrieved jsonrpc.1.26.0-5.5~preview, lsp.1.26.0-5.5~preview (https://github.com/ocaml/ocaml-lsp/releases/download/1.26.0-5.5_preview/lsp-1.26.0-5.5.preview.tbz)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_yojson_conv_lib.v0.16.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed dune.3.22.0
-> installed yojson.3.0.0
-> installed jsonrpc.1.26.0-5.5~preview
-> installed ppx_yojson_conv_lib.v0.16.0
-> installed lsp.1.26.0-5.5~preview
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 16:34.41 ---> using "4dd4b9d95bdd05d8728bfcd0840815530c1d6f381b8e91bd67c90c839cbd8a8f" from cache
/: (run (network host)
(shell "(opam reinstall --with-test lsp.1.26.0-5.5~preview) || true"))
* No agreement on the version of ocaml:
- (invariant) -> ocaml-base-compiler = 4.14.2 -> ocaml = 4.14.2
- lsp >= 1.26.0-5.5~preview -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0
You can temporarily relax the switch invariant with `--update-invariant'
* No agreement on the version of ocaml-base-compiler:
- (invariant) -> ocaml-base-compiler = 4.14.2
- lsp >= 1.26.0-5.5~preview -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-base-compiler >= 5.1.0~
* Incompatible packages:
- (invariant) -> ocaml-base-compiler = 4.14.2
- lsp >= 1.26.0-5.5~preview -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.6.1~
* Missing dependency:
- lsp >= 1.26.0-5.5~preview -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants >= 5.1.0~ -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
2026-03-19 16:34.45 ---> saved as "1a37550a096f0b83880ae2263b7d130ff0c0ee6589f20b7449f3392f57181cda"
/: (run (shell "opam reinstall --with-test --verbose lsp.1.26.0-5.5~preview;\
\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\" != 'lsp.1.26.0-5.5~preview' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
* No agreement on the version of ocaml:
- (invariant) -> ocaml-base-compiler = 4.14.2 -> ocaml = 4.14.2
- lsp >= 1.26.0-5.5~preview -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0
You can temporarily relax the switch invariant with `--update-invariant'
* No agreement on the version of ocaml-base-compiler:
- (invariant) -> ocaml-base-compiler = 4.14.2
- lsp >= 1.26.0-5.5~preview -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-base-compiler >= 5.1.0~
* Incompatible packages:
- (invariant) -> ocaml-base-compiler = 4.14.2
- lsp >= 1.26.0-5.5~preview -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.6.1~
* Missing dependency:
- lsp >= 1.26.0-5.5~preview -> ppx_expect >= v0.17.0 -> ocaml >= 5.1.0 -> ocaml-variants >= 5.1.0~ -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
'opam reinstall --with-test --verbose lsp.1.26.0-5.5~preview' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose lsp.1.26.0-5.5~preview;
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" != 'lsp.1.26.0-5.5~preview' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 20
2026-03-19 16:34.56: Job failed: Failed: Build failed
2026-03-19 16:34.56: Log analysis:
2026-03-19 16:34.56: >>>
No solution found, exiting
(score = 100)
2026-03-19 16:34.56: >>>
No solution found, exiting
(score = 100)
2026-03-19 16:34.56: [SKIP] Package not available