(not at the head of any monitored branch or PR)
2026-04-13 17:21.05: New job: test tm-grammars.2.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29717/head (cce6b0a71dae17af92185c4cb4134625066ea4b7)
                              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/29717/head" && git reset --hard cce6b0a7
git fetch origin master
git merge --no-edit ba4685aeec7b28fde6af30c7b83004704c68c86a
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 tm-grammars.2.0.0 2.0.0
RUN opam reinstall tm-grammars.2.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'tm-grammars.2.0.0' && 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 tm-grammars.2.0.0) || true
RUN opam reinstall --with-test --verbose tm-grammars.2.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'tm-grammars.2.0.0' && 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-04-13 17:21.05: Using cache hint "macos-homebrew-ocaml-5.4-tm-grammars.2.0.0-cce6b0a71dae17af92185c4cb4134625066ea4b7"
2026-04-13 17:21.05: 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 tm-grammars.2.0.0 2.0.0"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall tm-grammars.2.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'tm-grammars.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test tm-grammars.2.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose tm-grammars.2.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'tm-grammars.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-13 17:21.05: Waiting for resource in pool OCluster
2026-04-13 17:21.05: Waiting for worker…
2026-04-13 18:14.55: Got resource from pool OCluster
Building on m1-worker-02
All commits already cached
Updating files:  62% (11753/18704)
Updating files:  63% (11784/18704)
Updating files:  64% (11971/18704)
Updating files:  65% (12158/18704)
Updating files:  66% (12345/18704)
Updating files:  67% (12532/18704)
Updating files:  68% (12719/18704)
Updating files:  69% (12906/18704)
Updating files:  70% (13093/18704)
Updating files:  71% (13280/18704)
Updating files:  72% (13467/18704)
Updating files:  73% (13654/18704)
Updating files:  74% (13841/18704)
Updating files:  75% (14028/18704)
Updating files:  76% (14216/18704)
Updating files:  77% (14403/18704)
Updating files:  78% (14590/18704)
Updating files:  79% (14777/18704)
Updating files:  80% (14964/18704)
Updating files:  81% (15151/18704)
Updating files:  82% (15338/18704)
Updating files:  83% (15525/18704)
Updating files:  84% (15712/18704)
Updating files:  85% (15899/18704)
Updating files:  86% (16086/18704)
Updating files:  87% (16273/18704)
Updating files:  88% (16460/18704)
Updating files:  89% (16647/18704)
Updating files:  90% (16834/18704)
Updating files:  91% (17021/18704)
Updating files:  92% (17208/18704)
Updating files:  93% (17395/18704)
Updating files:  94% (17582/18704)
Updating files:  95% (17769/18704)
Updating files:  96% (17956/18704)
Updating files:  97% (18143/18704)
Updating files:  98% (18330/18704)
Updating files:  99% (18517/18704)
Updating files: 100% (18704/18704)
Updating files: 100% (18704/18704), done.
HEAD is now at ba4685aeec Merge pull request #29653 from yakobowski/camlidl
Updating ba4685aeec..cce6b0a71d
Fast-forward
 packages/tm-grammars/tm-grammars.2.0.0/opam | 37 +++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 packages/tm-grammars/tm-grammars.2.0.0/opam

(from macos-homebrew-ocaml-5.4)
2026-04-13 18:14.57 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-04-13 18:14.58 ---> 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-04-13 18:14.58 ---> 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-04-13 18:14.58 ---> 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-04-13 18:14.58 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache

/: (copy (src .) (dst opam-repository/))
2026-04-13 18:14.59 ---> using "6dc73b56fa9643a87d79f46086dc3e6f5eaeaf644b37e8a6f721fef821b55718" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-04-13 18:14.59 ---> using "4b41466a9beb9d73b440ba255a4a826937e1973817f1dc8cc87ec54f425f7497" 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:f41c72b891c40623f9d5cd2135f58a1b8a5c014ae04149888289409316276c72
- #=#=#                                                                          

                                                                           0.6%
#                                                                          1.4%
#                                                                          2.3%
##                                                                         3.1%
##                                                                         3.7%
###                                                                        4.5%
###                                                                        5.4%
####                                                                       5.9%
####                                                                       6.7%
- 
#####                                                                      7.4%
######                                                                     8.3%
######                                                                     9.1%
#######                                                                    9.7%
#######                                                                   10.1%
#######                                                                   10.5%
#######                                                                   11.0%
########                                                                  11.4%
########                                                                  11.8%
########                                                                  12.3%
- 
#########                                                                 12.7%
#########                                                                 13.1%
#########                                                                 13.5%
##########                                                                13.9%
##########                                                                14.3%
##########                                                                14.7%
##########                                                                15.1%
###########                                                               15.6%
###########                                                               16.0%
###########                                                               16.4%
############                                                              16.8%
############                                                              17.2%
- 
############                                                              17.6%
#############                                                             18.1%
#############                                                             18.5%
#############                                                             18.8%
#############                                                             19.2%
##############                                                            19.6%
##############                                                            20.0%
##############                                                            20.5%
###############                                                           20.9%
###############                                                           21.3%
###############                                                           21.6%
- 
###############                                                           22.0%
################                                                          22.4%
################                                                          22.9%
################                                                          23.3%
#################                                                         23.7%
#################                                                         24.1%
#################                                                         24.5%
#################                                                         25.0%
##################                                                        25.3%
##################                                                        25.7%
##################                                                        26.1%
- 
###################                                                       26.5%
###################                                                       26.9%
###################                                                       27.4%
####################                                                      27.8%
####################                                                      28.3%
####################                                                      28.7%
####################                                                      29.1%
#####################                                                     29.4%
#####################                                                     29.9%
#####################                                                     30.3%
- 
######################                                                    30.7%
######################                                                    31.1%
######################                                                    31.5%
#######################                                                   32.0%
#######################                                                   32.4%
#######################                                                   32.8%
#######################                                                   33.2%
########################                                                  33.6%
########################                                                  33.9%
########################                                                  34.5%
#########################                                                 34.9%
- 
#########################                                                 35.2%
#########################                                                 35.6%
#########################                                                 36.1%
##########################                                                36.5%
##########################                                                36.9%
##########################                                                37.4%
###########################                                               37.8%
###########################                                               38.2%
###########################                                               38.6%
############################                                              38.9%
############################                                              39.3%
############################                                              39.7%
- 
############################                                              40.2%
#############################                                             40.6%
#############################                                             41.0%
#############################                                             41.5%
##############################                                            41.9%
##############################                                            42.3%
##############################                                            42.6%
###############################                                           43.2%
###############################                                           43.5%
###############################                                           43.9%
- 
###############################                                           44.3%
################################                                          44.8%
################################                                          45.2%
################################                                          45.6%
#################################                                         46.0%
#################################                                         46.3%
#################################                                         46.9%
##################################                                        47.2%
##################################                                        47.6%
##################################                                        48.0%
##################################                                        48.4%
- 
###################################                                       48.8%
###################################                                       49.3%
###################################                                       49.7%
####################################                                      50.0%
####################################                                      50.4%
####################################                                      50.9%
####################################                                      51.2%
#####################################                                     51.6%
#####################################                                     52.0%
#####################################                                     52.4%
######################################                                    52.9%
- 
######################################                                    53.3%
######################################                                    53.7%
######################################                                    54.1%
#######################################                                   54.5%
#######################################                                   54.8%
#######################################                                   55.2%
########################################                                  55.7%
########################################                                  56.1%
########################################                                  56.5%
########################################                                  56.9%
#########################################                                 57.3%
- 
#########################################                                 57.8%
#########################################                                 58.2%
##########################################                                58.5%
##########################################                                59.1%
##########################################                                59.5%
###########################################                               59.8%
###########################################                               60.2%
###########################################                               60.6%
###########################################                               61.1%
############################################                              61.5%
############################################                              61.9%
- 
############################################                              62.3%
#############################################                             63.0%
##############################################                            63.9%
##############################################                            64.7%
###############################################                           65.4%
###############################################                           66.3%
################################################                          67.1%
################################################                          67.9%
#################################################                         68.8%
##################################################                        69.6%
##################################################                        70.4%
- 
###################################################                       71.2%
###################################################                       72.0%
####################################################                      72.8%
####################################################                      73.6%
#####################################################                     74.5%
######################################################                    75.4%
######################################################                    76.1%
#######################################################                   76.9%
#######################################################                   77.8%
########################################################                  78.5%
#########################################################                 79.3%
- 
#########################################################                 80.2%
##########################################################                81.0%
##########################################################                81.7%
###########################################################               82.5%
############################################################              83.4%
############################################################              84.2%
#############################################################             85.0%
#############################################################             85.7%
##############################################################            86.6%
##############################################################            87.4%
###############################################################           88.1%
- 
################################################################          88.9%
################################################################          89.8%
#################################################################         90.6%
#################################################################         91.5%
##################################################################        92.2%
##################################################################        93.0%
###################################################################       93.8%
####################################################################      94.7%
####################################################################      95.5%
#####################################################################     96.3%
#####################################################################     97.1%
- 
######################################################################    97.9%
#######################################################################   98.6%
#######################################################################   99.4%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.2_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-04-13 18:14.59 ---> using "de8f26ba6af1cb2c937f3873aea573d93db09eb0f291d3f0f560225f776a5e87" from cache

/: (run (shell "opam pin add -k version -yn tm-grammars.2.0.0 2.0.0"))
tm-grammars is now pinned to version 2.0.0
2026-04-13 18:14.59 ---> using "d4bb2b9a79ceab0837df5d41cf2df68c48c04a5eae4f126fc43919b1abb7aa53" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall tm-grammars.2.0.0;\
               \n        res=$?;\
               \n        test \"$res\" != 31 && exit \"$res\";\
               \n        export OPAMCLI=2.0;\
               \n        build_dir=$(opam var prefix)/.opam-switch/build;\
               \n        failed=$(ls \"$build_dir\");\
               \n        partial_fails=\"\";\
               \n        for pkg in $failed; do\
               \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'tm-grammars.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
tm-grammars.2.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune        3.22.1         [required by tm-grammars]
  - install tm-grammars 2.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.1  (cached)
-> retrieved tm-grammars.2.0.0  (https://github.com/davesnx/tm-grammars/releases/download/2.0.0/tm-grammars-2.0.0.tbz)
-> installed dune.3.22.1
-> installed tm-grammars.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 18:14.59 ---> using "a1bb262292b732db55ddac73321fc6b049b60330fc029bd20c8d7eadbdd6c6bf" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test tm-grammars.2.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile tm-grammars 2.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   tm-grammars.2.0.0
-> installed tm-grammars.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 18:15.15 ---> saved as "ea0433fc482e77792a9a08262ead427c37e1555066ba689321ed16fb1eb624e0"

/: (run (shell  "opam reinstall --with-test --verbose tm-grammars.2.0.0;\
               \n        res=$?;\
               \n        test \"$res\" != 31 && exit \"$res\";\
               \n        export OPAMCLI=2.0;\
               \n        build_dir=$(opam var prefix)/.opam-switch/build;\
               \n        failed=$(ls \"$build_dir\");\
               \n        partial_fails=\"\";\
               \n        for pkg in $failed; do\
               \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'tm-grammars.2.0.0' && 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 tm-grammars 2.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [tm-grammars: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tm-grammars" "-j" "7" "@install" "@runtest" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/tm-grammars.2.0.0)
- (cd _build/default/test && ./test_registry.exe)
- Registry contains 260 grammars
- Spot-checking 5 grammars:
-   ocaml                 24887 bytes
-   javascript            227942 bytes
-   reason                85283 bytes
-   json                  4647 bytes
-   css                   72867 bytes
- OK
-> compiled  tm-grammars.2.0.0
-> removed   tm-grammars.2.0.0
-> installed tm-grammars.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 18:15.30 ---> saved as "05e58015062b9aaeee934b9bf8d4552c8f3c05d8ad2d306a7d5aeb55f549850b"
Job succeeded
2026-04-13 18:15.39: Job succeeded