(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-5.4/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-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 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-5.4-lsp.1.26.0-5.5~preview-a540e38baa7b2d1d7e6218b3bc3eb48112a04ff2"
2026-03-19 16:28.51: 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 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:33.29: Got resource from pool OCluster
Building on m1-worker-01
All commits already cached
Updating files:  64% (11912/18508)
Updating files:  65% (12031/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-5.4)
2026-03-19 16:33.32 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

/: (user (uid 1000) (gid 1000))

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-03-19 16:33.32 ---> 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-03-19 16:33.32 ---> 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=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       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-03-19 16:33.32 ---> 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-03-19 16:33.32 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache

/: (copy (src .) (dst opam-repository/))
2026-03-19 16:33.33 ---> using "83e2685943ab8747ee3ab8275d764621c29a94d81f8b0c5de5fe5176a2df6bd3" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-03-19 16:33.33 ---> using "1940dde8b12787c58488dee3f3350117b814b35c064bcb87d9435f99ee20ff8d" 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.1%
- 
                                                                           0.2%
                                                                           0.7%
                                                                           0.9%
                                                                           1.3%
#                                                                          1.5%
- 
#                                                                          1.6%
#                                                                          2.0%
#                                                                          2.1%
#                                                                          2.3%
#                                                                          2.4%
#                                                                          2.5%
#                                                                          2.8%
##                                                                         2.9%
##                                                                         3.0%
- 
##                                                                         3.2%
##                                                                         3.3%
##                                                                         3.4%
##                                                                         3.7%
##                                                                         3.8%
##                                                                         4.0%
##                                                                         4.1%
###                                                                        4.2%
###                                                                        4.3%
###                                                                        4.5%
- 
###                                                                        4.6%
###                                                                        4.7%
###                                                                        5.0%
###                                                                        5.1%
###                                                                        5.2%
###                                                                        5.4%
###                                                                        5.5%
####                                                                       5.7%
####                                                                       5.9%
####                                                                       6.0%
####                                                                       6.1%
- 
####                                                                       6.3%
####                                                                       6.4%
####                                                                       6.7%
####                                                                       6.8%
####                                                                       6.9%
#####                                                                      7.1%
#####                                                                      7.2%
#####                                                                      7.3%
#####                                                                      7.6%
#####                                                                      7.7%
- 
#####                                                                      7.8%
#####                                                                      8.1%
#####                                                                      8.2%
######                                                                     8.4%
######                                                                     8.5%
######                                                                     8.6%
######                                                                     8.8%
######                                                                     8.9%
######                                                                     9.1%
######                                                                     9.3%
######                                                                     9.4%
- 
######                                                                     9.5%
######                                                                     9.6%
#######                                                                    9.8%
#######                                                                   10.0%
#######                                                                   10.2%
#######                                                                   10.3%
#######                                                                   10.4%
#######                                                                   10.5%
#######                                                                   10.7%
#######                                                                   10.8%
- 
#######                                                                   10.9%
########                                                                  11.2%
########                                                                  11.3%
########                                                                  11.5%
########                                                                  11.6%
########                                                                  11.7%
########                                                                  11.9%
########                                                                  12.1%
########                                                                  12.2%
########                                                                  12.4%
- 
#########                                                                 12.5%
#########                                                                 12.8%
#########                                                                 12.9%
#########                                                                 13.0%
#########                                                                 13.2%
#########                                                                 13.3%
#########                                                                 13.4%
#########                                                                 13.6%
#########                                                                 13.7%
#########                                                                 13.8%
- 
##########                                                                13.9%
##########                                                                14.1%
##########                                                                14.3%
##########                                                                14.4%
##########                                                                14.6%
##########                                                                14.7%
##########                                                                15.0%
##########                                                                15.1%
##########                                                                15.2%
###########                                                               15.3%
###########                                                               15.6%
- 
###########                                                               15.7%
###########                                                               15.9%
###########                                                               16.1%
###########                                                               16.3%
###########                                                               16.4%
###########                                                               16.5%
############                                                              16.8%
############                                                              16.9%
############                                                              17.2%
############                                                              17.3%
############                                                              17.6%
- 
############                                                              17.7%
############                                                              17.8%
#############                                                             18.1%
#############                                                             18.2%
#############                                                             18.4%
#############                                                             18.6%
#############                                                             18.7%
#############                                                             18.9%
#############                                                             19.1%
#############                                                             19.3%
- 
#############                                                             19.4%
##############                                                            19.7%
##############                                                            19.8%
##############                                                            19.9%
##############                                                            20.2%
##############                                                            20.3%
##############                                                            20.5%
##############                                                            20.8%
###############                                                           21.1%
###############                                                           21.2%
###############                                                           21.3%
- 
###############                                                           21.6%
###############                                                           21.7%
###############                                                           22.0%
###############                                                           22.1%
################                                                          22.2%
################                                                          22.5%
################                                                          22.6%
################                                                          22.8%
################                                                          23.0%
################                                                          23.2%
- 
################                                                          23.3%
################                                                          23.5%
#################                                                         23.7%
#################                                                         23.8%
#################                                                         24.1%
#################                                                         24.2%
#################                                                         24.3%
#################                                                         24.6%
#################                                                         24.7%
#################                                                         24.9%
##################                                                        25.1%
- 
##################                                                        25.2%
##################                                                        25.5%
##################                                                        25.6%
##################                                                        25.7%
##################                                                        26.0%
##################                                                        26.1%
##################                                                        26.3%
###################                                                       26.5%
###################                                                       26.6%
###################                                                       26.9%
- 
###################                                                       27.0%
###################                                                       27.2%
###################                                                       27.4%
###################                                                       27.6%
####################                                                      27.8%
####################                                                      28.1%
####################                                                      28.2%
####################                                                      28.5%
####################                                                      28.6%
####################                                                      28.9%
- 
####################                                                      29.0%
####################                                                      29.1%
#####################                                                     29.4%
#####################                                                     29.5%
#####################                                                     29.8%
#####################                                                     30.0%
#####################                                                     30.1%
#####################                                                     30.3%
#####################                                                     30.5%
######################                                                    30.7%
- 
######################                                                    30.8%
######################                                                    30.9%
######################                                                    31.2%
######################                                                    31.3%
######################                                                    31.4%
######################                                                    31.7%
######################                                                    31.8%
#######################                                                   32.0%
#######################                                                   32.2%
#######################                                                   32.4%
#######################                                                   32.6%
- 
#######################                                                   32.8%
#######################                                                   32.9%
#######################                                                   33.0%
#######################                                                   33.3%
########################                                                  33.4%
########################                                                  33.7%
########################                                                  33.8%
########################                                                  33.9%
########################                                                  34.2%
########################                                                  34.3%
- 
########################                                                  34.5%
########################                                                  34.7%
#########################                                                 34.9%
#########################                                                 35.0%
#########################                                                 35.2%
#########################                                                 35.4%
#########################                                                 35.5%
#########################                                                 35.8%
#########################                                                 35.9%
##########################                                                36.1%
##########################                                                36.3%
- 
##########################                                                36.4%
##########################                                                36.6%
##########################                                                36.8%
##########################                                                36.9%
##########################                                                37.2%
##########################                                                37.3%
##########################                                                37.4%
###########################                                               37.7%
###########################                                               37.8%
###########################                                               38.0%
- 
###########################                                               38.2%
###########################                                               38.3%
###########################                                               38.6%
###########################                                               38.7%
###########################                                               38.9%
############################                                              39.1%
############################                                              39.3%
############################                                              39.4%
############################                                              39.7%
############################                                              39.8%
############################                                              40.0%
- 
############################                                              40.2%
#############################                                             40.4%
#############################                                             40.7%
#############################                                             40.9%
#############################                                             41.1%
#############################                                             41.3%
#############################                                             41.4%
##############################                                            41.7%
##############################                                            42.0%
##############################                                            42.1%
- 
##############################                                            42.4%
##############################                                            42.6%
##############################                                            42.9%
##############################                                            43.0%
###############################                                           43.3%
###############################                                           43.5%
###############################                                           43.7%
###############################                                           43.9%
###############################                                           44.2%
################################                                          44.5%
- 
################################                                          44.6%
################################                                          44.8%
################################                                          45.0%
################################                                          45.2%
################################                                          45.5%
################################                                          45.7%
#################################                                         46.0%
#################################                                         46.1%
#################################                                         46.4%
#################################                                         46.5%
#################################                                         46.8%
- 
#################################                                         47.0%
#################################                                         47.2%
##################################                                        47.4%
##################################                                        47.7%
##################################                                        47.8%
##################################                                        48.1%
##################################                                        48.2%
##################################                                        48.5%
###################################                                       48.7%
###################################                                       48.9%
###################################                                       49.1%
- 
###################################                                       49.4%
###################################                                       49.5%
###################################                                       49.8%
###################################                                       49.9%
####################################                                      50.1%
####################################                                      50.4%
####################################                                      50.5%
####################################                                      50.8%
####################################                                      51.0%
####################################                                      51.2%
#####################################                                     51.4%
- 
#####################################                                     51.7%
#####################################                                     51.8%
#####################################                                     52.0%
#####################################                                     52.3%
#####################################                                     52.5%
#####################################                                     52.6%
######################################                                    52.9%
######################################                                    53.2%
######################################                                    53.3%
######################################                                    53.6%
######################################                                    53.7%
- 
######################################                                    54.0%
######################################                                    54.1%
#######################################                                   54.3%
#######################################                                   54.6%
#######################################                                   54.7%
#######################################                                   55.0%
#######################################                                   55.1%
#######################################                                   55.4%
########################################                                  55.7%
########################################                                  55.8%
########################################                                  56.0%
- 
########################################                                  56.3%
########################################                                  56.4%
########################################                                  56.7%
########################################                                  56.9%
#########################################                                 57.1%
#########################################                                 57.3%
#########################################                                 57.4%
#########################################                                 57.7%
#########################################                                 58.0%
#########################################                                 58.1%
##########################################                                58.4%
- 
##########################################                                58.5%
##########################################                                58.8%
##########################################                                59.0%
##########################################                                59.1%
##########################################                                59.4%
##########################################                                59.7%
###########################################                               59.8%
###########################################                               60.1%
###########################################                               60.2%
###########################################                               60.5%
###########################################                               60.7%
- 
###########################################                               61.0%
###########################################                               61.1%
############################################                              61.3%
############################################                              61.6%
############################################                              61.9%
############################################                              62.1%
############################################                              62.2%
#############################################                             62.5%
#############################################                             62.6%
#############################################                             62.9%
- 
#############################################                             63.2%
#############################################                             63.3%
#############################################                             63.6%
#############################################                             63.8%
##############################################                            63.9%
##############################################                            64.2%
##############################################                            64.3%
##############################################                            64.6%
##############################################                            64.9%
##############################################                            65.0%
##############################################                            65.3%
- 
###############################################                           65.5%
###############################################                           65.6%
###############################################                           65.9%
###############################################                           66.1%
###############################################                           66.3%
###############################################                           66.5%
###############################################                           66.7%
################################################                          66.9%
################################################                          67.2%
################################################                          67.3%
################################################                          67.6%
- 
################################################                          67.8%
################################################                          68.0%
#################################################                         68.3%
#################################################                         68.4%
#################################################                         68.6%
#################################################                         68.9%
#################################################                         69.0%
#################################################                         69.3%
#################################################                         69.4%
##################################################                        69.7%
##################################################                        70.0%
- 
##################################################                        70.1%
##################################################                        70.3%
##################################################                        70.5%
##################################################                        70.7%
###################################################                       71.0%
###################################################                       71.1%
###################################################                       71.4%
###################################################                       71.7%
###################################################                       71.8%
###################################################                       72.1%
- 
####################################################                      72.3%
####################################################                      72.5%
####################################################                      72.7%
####################################################                      72.9%
####################################################                      73.2%
####################################################                      73.3%
####################################################                      73.6%
#####################################################                     73.8%
#####################################################                     74.0%
#####################################################                     74.2%
#####################################################                     74.5%
- 
#####################################################                     74.6%
#####################################################                     74.9%
######################################################                    75.1%
######################################################                    75.3%
######################################################                    75.5%
######################################################                    75.7%
######################################################                    75.9%
######################################################                    76.2%
######################################################                    76.3%
#######################################################                   76.6%
#######################################################                   76.7%
- 
#######################################################                   77.0%
#######################################################                   77.2%
#######################################################                   77.3%
#######################################################                   77.6%
########################################################                  77.9%
########################################################                  78.0%
########################################################                  78.2%
########################################################                  78.5%
########################################################                  78.6%
########################################################                  78.9%
########################################################                  79.2%
- 
#########################################################                 79.3%
#########################################################                 79.6%
#########################################################                 79.8%
#########################################################                 79.9%
#########################################################                 80.2%
#########################################################                 80.3%
##########################################################                80.6%
##########################################################                80.9%
##########################################################                81.1%
##########################################################                81.3%
- 
##########################################################                81.5%
##########################################################                81.7%
##########################################################                81.9%
###########################################################               82.1%
###########################################################               82.3%
###########################################################               82.5%
###########################################################               82.8%
###########################################################               82.9%
###########################################################               83.2%
###########################################################               83.3%
############################################################              83.6%
- 
############################################################              83.8%
############################################################              84.0%
############################################################              84.2%
############################################################              84.5%
############################################################              84.6%
#############################################################             84.9%
#############################################################             85.0%
#############################################################             85.3%
#############################################################             85.5%
#############################################################             85.7%
#############################################################             85.9%
- 
#############################################################             86.1%
##############################################################            86.3%
##############################################################            86.6%
##############################################################            86.7%
##############################################################            87.0%
##############################################################            87.2%
##############################################################            87.4%
###############################################################           87.6%
###############################################################           87.9%
###############################################################           88.1%
- 
###############################################################           88.2%
###############################################################           88.5%
###############################################################           88.8%
################################################################          88.9%
################################################################          89.2%
################################################################          89.3%
################################################################          89.6%
################################################################          89.8%
################################################################          89.9%
################################################################          90.2%
#################################################################         90.3%
- 
#################################################################         90.6%
#################################################################         90.9%
#################################################################         91.0%
#################################################################         91.3%
#################################################################         91.5%
#################################################################         91.6%
##################################################################        91.9%
##################################################################        92.2%
##################################################################        92.3%
##################################################################        92.6%
##################################################################        92.8%
- 
##################################################################        93.0%
###################################################################       93.2%
###################################################################       93.4%
###################################################################       93.7%
###################################################################       93.8%
###################################################################       94.1%
###################################################################       94.2%
####################################################################      94.5%
####################################################################      94.7%
####################################################################      94.9%
- 
####################################################################      95.0%
####################################################################      95.3%
####################################################################      95.4%
####################################################################      95.5%
####################################################################      95.7%
#####################################################################     95.9%
#####################################################################     96.1%
#####################################################################     96.2%
#####################################################################     96.4%
#####################################################################     96.6%
- 
#####################################################################     96.7%
#####################################################################     97.0%
######################################################################    97.2%
######################################################################    97.4%
######################################################################    97.6%
######################################################################    97.7%
######################################################################    97.8%
######################################################################    98.1%
######################################################################    98.2%
######################################################################    98.4%
- 
#######################################################################   98.6%
#######################################################################   98.8%
#######################################################################   98.9%
#######################################################################   99.2%
#######################################################################   99.3%
#######################################################################   99.4%
#######################################################################   99.7%
#######################################################################   99.8%
######################################################################## 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:33.33 ---> using "e1b641dab5245fb8f487e8e7b6f015d3e4a11c39b71f4155199d33e7376fce7a" 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:33.34 ---> using "d6cfbe944d131951299a6c97e78f4d080f322cbf8383277819cf68c9663b3a29" 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.17.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.17.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.17.0
-> installed lsp.1.26.0-5.5~preview
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 16:33.34 ---> using "23f83636ce96cea380b80c7d8c8bec2daf41a94ccc06ae75734211cb2cb444ba" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test lsp.1.26.0-5.5~preview) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile lsp                     1.26.0-5.5~preview (pinned)
=== install 28 packages
  - install   base                    v0.17.3                     [required by ppx_expect]
  - install   cinaps                  v0.15.1                     [required by lsp]
  - install   csexp                   1.5.2                       [required by dune-configurator]
  - install   dune-configurator       3.22.0                      [required by base]
  - install   jane-street-headers     v0.17.0                     [required by time_now]
  - install   jst-config              v0.17.0                     [required by time_now]
  - install   ocaml-compiler-libs     v0.17.0                     [required by ppxlib]
  - install   ocaml_intrinsics_kernel v0.17.1                     [required by base]
  - install   ppx_assert              v0.17.0                     [required by jst-config]
  - install   ppx_base                v0.17.0                     [required by time_now]
  - install   ppx_cold                v0.17.0                     [required by ppx_base]
  - install   ppx_compare             v0.17.0                     [required by ppx_base]
  - install   ppx_derivers            1.2.1                       [required by ppxlib]
  - install   ppx_enumerate           v0.17.0                     [required by ppx_base]
  - install   ppx_expect              v0.17.3                     [required by lsp]
  - install   ppx_globalize           v0.17.2                     [required by ppx_base]
  - install   ppx_hash                v0.17.0                     [required by ppx_base]
  - install   ppx_here                v0.17.0                     [required by ppx_expect]
  - install   ppx_inline_test         v0.17.1                     [required by ppx_expect]
  - install   ppx_optcomp             v0.17.1                     [required by time_now]
  - install   ppx_sexp_conv           v0.17.1                     [required by ppx_base]
  - install   ppxlib                  0.37.0                      [required by ppx_expect]
  - install   ppxlib_jane             v0.17.4                     [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install   re                      1.14.0                      [required by cinaps]
  - install   sexplib0                v0.17.0                     [required by base]
  - install   stdio                   v0.17.0                     [required by ppx_expect]
  - install   stdlib-shims            0.3.0                       [required by ppxlib]
  - install   time_now                v0.17.0                     [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.3  (https://github.com/janestreet/base/archive/refs/tags/v0.17.3.tar.gz)
-> retrieved cinaps.v0.15.1  (https://github.com/ocaml-ppx/cinaps/archive/v0.15.1.tar.gz)
-> retrieved csexp.1.5.2  (https://github.com/ocaml-dune/csexp/releases/download/1.5.2/csexp-1.5.2.tbz)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0  (https://github.com/ocaml/dune/releases/download/3.22.0/dune-3.22.0.tbz)
-> retrieved jane-street-headers.v0.17.0  (https://github.com/janestreet/jane-street-headers/archive/refs/tags/v0.17.0.tar.gz)
-> installed jane-street-headers.v0.17.0
-> retrieved jst-config.v0.17.0  (https://github.com/janestreet/jst-config/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ocaml-compiler-libs.v0.17.0  (https://github.com/janestreet/ocaml-compiler-libs/archive/refs/tags/v0.17.0.tar.gz)
-> installed dune-configurator.3.22.0
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://github.com/janestreet/ocaml_intrinsics_kernel/archive/refs/tags/v0.17.1.tar.gz)
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved ppx_assert.v0.17.0  (https://github.com/janestreet/ppx_assert/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_base.v0.17.0  (https://github.com/janestreet/ppx_base/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_cold.v0.17.0  (https://github.com/janestreet/ppx_cold/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_compare.v0.17.0  (https://github.com/janestreet/ppx_compare/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_derivers.1.2.1  (https://github.com/ocaml-ppx/ppx_derivers/archive/1.2.1.tar.gz)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_enumerate.v0.17.0  (https://github.com/janestreet/ppx_enumerate/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_expect.v0.17.3  (https://github.com/janestreet/ppx_expect/archive/refs/tags/v0.17.3.tar.gz)
-> retrieved ppx_globalize.v0.17.2  (https://github.com/janestreet/ppx_globalize/archive/refs/tags/v0.17.2.tar.gz)
-> retrieved ppx_hash.v0.17.0  (https://github.com/janestreet/ppx_hash/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_here.v0.17.0  (https://github.com/janestreet/ppx_here/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_inline_test.v0.17.1  (https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ppx_optcomp.v0.17.1  (https://github.com/janestreet/ppx_optcomp/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ppx_sexp_conv.v0.17.1  (https://github.com/janestreet/ppx_sexp_conv/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ppxlib.0.37.0  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.37.0/ppxlib-0.37.0.tbz)
-> retrieved ppxlib_jane.v0.17.4  (https://github.com/janestreet/ppxlib_jane/archive/refs/tags/v0.17.4.tar.gz)
-> retrieved re.1.14.0  (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> retrieved sexplib0.v0.17.0  (https://github.com/janestreet/sexplib0/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved stdio.v0.17.0  (https://github.com/janestreet/stdio/archive/refs/tags/v0.17.0.tar.gz)
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> removed   lsp.1.26.0-5.5~preview
-> installed stdlib-shims.0.3.0
-> installed cinaps.v0.15.1
-> retrieved time_now.v0.17.0  (https://github.com/janestreet/time_now/archive/refs/tags/v0.17.0.tar.gz)
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed lsp.1.26.0-5.5~preview
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 16:34.36 ---> saved as "ad29ab38d0303830802c7f7f1d5a9bc4d27eedcf2c2415022b7bfa63e252b606"

/: (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"))
The following actions will be performed:
=== recompile 1 package
  - recompile lsp 1.26.0-5.5~preview (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [lsp: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lsp" "-j" "7" "@install" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/lsp.1.26.0-5.5~preview)
-> compiled  lsp.1.26.0-5.5~preview
-> removed   lsp.1.26.0-5.5~preview
-> installed lsp.1.26.0-5.5~preview
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 16:34.45 ---> saved as "91afb6750790657c0704704cf6e15f4e2bfd0af9381ec5fec56535e25019ac5b"
Job succeeded
2026-03-19 16:34.53: Job succeeded