(not at the head of any monitored branch or PR)
2026-05-23 16:28.34: New job: test lua-ml.0.9.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29945/head (8b623f363e6484cb1c885863fdf867c2295cd713)
                              on macos-homebrew-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29945/head" && git reset --hard 8b623f36
git fetch origin master
git merge --no-edit 493123878a032e3f829b102f34e8690b3b2a4fd4
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 lua-ml.0.9.5 0.9.5
RUN opam reinstall lua-ml.0.9.5; \
    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" != 'lua-ml.0.9.5' && 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 lua-ml.0.9.5) || true
RUN opam reinstall --with-test --verbose lua-ml.0.9.5; \
    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" != 'lua-ml.0.9.5' && 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-05-23 16:28.34: Using cache hint "macos-homebrew-ocaml-5.4-lua-ml.0.9.5-8b623f363e6484cb1c885863fdf867c2295cd713"
2026-05-23 16:28.34: 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 lua-ml.0.9.5 0.9.5"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall lua-ml.0.9.5;\
             \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\" != 'lua-ml.0.9.5' && 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 lua-ml.0.9.5) || true"))
 (run (shell  "opam reinstall --with-test --verbose lua-ml.0.9.5;\
             \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\" != 'lua-ml.0.9.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-05-23 16:28.34: Waiting for resource in pool OCluster
2026-05-23 16:28.34: Waiting for worker…
2026-05-23 16:32.16: Got resource from pool OCluster
Building on i7-worker-03
All commits already cached
Updating files:  38% (6932/17956)
Updating files:  39% (7003/17956)
Updating files:  40% (7183/17956)
Updating files:  41% (7362/17956)
Updating files:  42% (7542/17956)
Updating files:  43% (7722/17956)
Updating files:  44% (7901/17956)
Updating files:  45% (8081/17956)
Updating files:  46% (8260/17956)
Updating files:  47% (8440/17956)
Updating files:  48% (8619/17956)
Updating files:  49% (8799/17956)
Updating files:  50% (8978/17956)
Updating files:  51% (9158/17956)
Updating files:  52% (9338/17956)
Updating files:  53% (9517/17956)
Updating files:  54% (9697/17956)
Updating files:  55% (9876/17956)
Updating files:  56% (10056/17956)
Updating files:  57% (10235/17956)
Updating files:  58% (10415/17956)
Updating files:  59% (10595/17956)
Updating files:  60% (10774/17956)
Updating files:  61% (10954/17956)
Updating files:  62% (11133/17956)
Updating files:  63% (11313/17956)
Updating files:  64% (11492/17956)
Updating files:  65% (11672/17956)
Updating files:  66% (11851/17956)
Updating files:  66% (11882/17956)
Updating files:  67% (12031/17956)
Updating files:  68% (12211/17956)
Updating files:  69% (12390/17956)
Updating files:  70% (12570/17956)
Updating files:  71% (12749/17956)
Updating files:  72% (12929/17956)
Updating files:  73% (13108/17956)
Updating files:  74% (13288/17956)
Updating files:  75% (13467/17956)
Updating files:  76% (13647/17956)
Updating files:  77% (13827/17956)
Updating files:  78% (14006/17956)
Updating files:  79% (14186/17956)
Updating files:  80% (14365/17956)
Updating files:  81% (14545/17956)
Updating files:  82% (14724/17956)
Updating files:  83% (14904/17956)
Updating files:  84% (15084/17956)
Updating files:  85% (15263/17956)
Updating files:  86% (15443/17956)
Updating files:  87% (15622/17956)
Updating files:  88% (15802/17956)
Updating files:  89% (15981/17956)
Updating files:  90% (16161/17956)
Updating files:  91% (16340/17956)
Updating files:  92% (16520/17956)
Updating files:  93% (16700/17956)
Updating files:  94% (16879/17956)
Updating files:  95% (17059/17956)
Updating files:  96% (17238/17956)
Updating files:  97% (17418/17956)
Updating files:  98% (17597/17956)
Updating files:  99% (17777/17956)
Updating files: 100% (17956/17956)
Updating files: 100% (17956/17956), done.
HEAD is now at 493123878a Merge pull request #29931 from chetmurthy/release-pa_ppx-package-suite-at-8.05.01
Updating 493123878a..8b623f363e
Fast-forward
 packages/lua-ml/lua-ml.0.9.5/opam | 41 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 packages/lua-ml/lua-ml.0.9.5/opam

(from macos-homebrew-ocaml-5.4)
2026-05-23 16:32.20 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-05-23 16:32.20 ---> 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-05-23 16:32.20 ---> using "91dcaa513ca3161d91620d0583acdea5310cd52ccab1dfbdd183600da37afdb2" from cache

/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 11
# repositories         1 (version-controlled)
# pinned               0
# current-switch       5.4.0
# invariant            ["ocaml-base-compiler" {= "5.4.0"} | "ocaml-system" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /Users/mac1000/.opam/5.4.0/lib/ocaml/stublibs:/Users/mac1000/.opam/5.4.0/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-05-23 16:32.21 ---> 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-05-23 16:32.21 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache

/: (copy (src .) (dst opam-repository/))
2026-05-23 16:32.22 ---> using "0a34c66584a78ee6f814353ec2d383b27cd3052c3bb37ed6147413125bacc8b0" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
default (at file:///Users/mac1000/opam-repository): 
    [WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)

default (at file:///Users/mac1000/opam-repository): 
    [INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-05-23 16:32.23 ---> using "e54556da17934b2464b4d0ac271151a0d4695e01bb14b2c9714bbe255ade4add" from cache

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:9ceb962508dce8cc2468095292fbff2b69fd86e0b9ecca813bf8ead72d4effa1
- #=#=#                                                                          

                                                                           0.0%
                                                                           0.3%
                                                                           0.5%
                                                                           0.9%
- 
#                                                                          1.7%
#                                                                          2.3%
#                                                                          2.7%
##                                                                         3.0%
##                                                                         3.3%
##                                                                         3.6%
##                                                                         3.8%
###                                                                        4.2%
###                                                                        4.5%
###                                                                        4.8%
- 
###                                                                        5.0%
###                                                                        5.3%
####                                                                       5.6%
####                                                                       6.0%
####                                                                       6.2%
####                                                                       6.5%
####                                                                       6.8%
#####                                                                      7.0%
#####                                                                      7.3%
#####                                                                      7.6%
#####                                                                      8.0%
- 
#####                                                                      8.2%
######                                                                     8.5%
######                                                                     8.8%
######                                                                     9.0%
######                                                                     9.3%
######                                                                     9.6%
#######                                                                   10.0%
#######                                                                   10.2%
#######                                                                   10.5%
#######                                                                   10.8%
#######                                                                   11.0%
- 
########                                                                  11.4%
########                                                                  11.7%
########                                                                  12.0%
########                                                                  12.2%
########                                                                  12.5%
#########                                                                 12.8%
#########                                                                 13.0%
#########                                                                 13.3%
#########                                                                 13.6%
##########                                                                14.0%
- 
##########                                                                14.2%
##########                                                                14.5%
##########                                                                14.8%
##########                                                                14.9%
##########                                                                15.2%
###########                                                               15.4%
###########                                                               15.6%
###########                                                               15.8%
###########                                                               16.1%
###########                                                               16.2%
###########                                                               16.5%
- 
############                                                              16.8%
############                                                              16.9%
############                                                              17.2%
############                                                              17.4%
############                                                              17.6%
############                                                              17.8%
#############                                                             18.1%
#############                                                             18.2%
#############                                                             18.5%
#############                                                             18.8%
- 
#############                                                             18.9%
#############                                                             19.2%
#############                                                             19.4%
##############                                                            19.6%
##############                                                            19.8%
##############                                                            19.9%
##############                                                            20.2%
##############                                                            20.5%
##############                                                            20.6%
###############                                                           20.9%
###############                                                           21.1%
- 
###############                                                           21.5%
###############                                                           22.1%
################                                                          22.5%
################                                                          22.9%
################                                                          23.3%
#################                                                         23.8%
#################                                                         24.2%
#################                                                         24.6%
##################                                                        25.0%
##################                                                        25.3%
##################                                                        25.5%
- 
##################                                                        25.8%
##################                                                        26.1%
###################                                                       26.5%
###################                                                       26.7%
###################                                                       27.0%
###################                                                       27.3%
###################                                                       27.7%
####################                                                      27.9%
####################                                                      28.2%
####################                                                      28.5%
####################                                                      28.7%
- 
####################                                                      29.0%
#####################                                                     29.3%
#####################                                                     29.5%
#####################                                                     29.9%
#####################                                                     30.2%
#####################                                                     30.5%
######################                                                    30.7%
######################                                                    31.0%
######################                                                    31.3%
######################                                                    31.5%
######################                                                    31.9%
- 
#######################                                                   32.2%
#######################                                                   32.5%
#######################                                                   32.7%
#######################                                                   33.0%
#######################                                                   33.3%
########################                                                  33.7%
########################                                                  33.9%
########################                                                  34.2%
########################                                                  34.5%
########################                                                  34.7%
- 
#########################                                                 35.0%
#########################                                                 35.3%
#########################                                                 35.7%
#########################                                                 35.9%
##########################                                                36.2%
##########################                                                36.5%
##########################                                                36.7%
##########################                                                37.0%
##########################                                                37.2%
###########################                                               37.6%
###########################                                               37.9%
- 
###########################                                               38.2%
###########################                                               38.4%
###########################                                               38.7%
############################                                              39.1%
############################                                              39.4%
############################                                              39.6%
############################                                              39.9%
############################                                              40.2%
#############################                                             40.4%
#############################                                             40.7%
#############################                                             41.1%
- 
#############################                                             41.4%
#############################                                             41.6%
##############################                                            41.9%
##############################                                            42.2%
##############################                                            42.4%
##############################                                            43.0%
###############################                                           43.4%
###############################                                           43.8%
###############################                                           44.2%
################################                                          44.6%
################################                                          45.0%
- 
################################                                          45.5%
#################################                                         45.9%
#################################                                         46.3%
#################################                                         46.7%
#################################                                         47.1%
##################################                                        47.5%
##################################                                        47.9%
##################################                                        48.4%
###################################                                       48.8%
###################################                                       49.2%
###################################                                       49.6%
- 
####################################                                      50.0%
####################################                                      50.6%
####################################                                      51.0%
####################################                                      51.4%
#####################################                                     51.8%
#####################################                                     52.2%
#####################################                                     52.7%
######################################                                    53.1%
######################################                                    53.6%
######################################                                    54.0%
#######################################                                   54.4%
- 
#######################################                                   54.8%
#######################################                                   55.2%
########################################                                  55.7%
########################################                                  56.1%
########################################                                  56.5%
########################################                                  56.9%
#########################################                                 57.5%
#########################################                                 57.9%
#########################################                                 58.3%
##########################################                                58.7%
- 
##########################################                                59.1%
##########################################                                59.6%
###########################################                               60.0%
###########################################                               60.4%
###########################################                               60.8%
############################################                              61.2%
############################################                              61.7%
############################################                              62.1%
#############################################                             62.5%
#############################################                             62.9%
#############################################                             63.5%
- 
#############################################                             63.9%
##############################################                            64.3%
##############################################                            64.7%
##############################################                            65.1%
###############################################                           65.6%
###############################################                           66.0%
###############################################                           66.5%
################################################                          66.9%
################################################                          67.3%
################################################                          67.7%
- 
#################################################                         68.3%
#################################################                         68.7%
#################################################                         69.1%
##################################################                        69.5%
##################################################                        69.9%
##################################################                        70.3%
##################################################                        70.6%
###################################################                       71.2%
###################################################                       71.6%
###################################################                       72.0%
####################################################                      72.4%
####################################################                      72.8%
- 
####################################################                      73.2%
####################################################                      73.6%
#####################################################                     74.1%
#####################################################                     74.5%
#####################################################                     74.9%
######################################################                    75.3%
######################################################                    75.8%
######################################################                    76.2%
#######################################################                   76.6%
#######################################################                   77.0%
- 
#######################################################                   77.4%
########################################################                  78.0%
########################################################                  78.4%
########################################################                  78.8%
########################################################                  79.2%
#########################################################                 79.6%
#########################################################                 80.1%
#########################################################                 80.5%
##########################################################                80.9%
##########################################################                81.3%
##########################################################                81.7%
- 
###########################################################               82.2%
###########################################################               82.6%
###########################################################               83.0%
############################################################              83.4%
############################################################              83.8%
############################################################              84.4%
#############################################################             84.8%
#############################################################             85.2%
#############################################################             85.6%
#############################################################             86.0%
##############################################################            86.4%
- 
##############################################################            86.9%
##############################################################            87.3%
###############################################################           87.7%
###############################################################           88.1%
###############################################################           88.5%
###############################################################           88.9%
################################################################          89.4%
################################################################          89.8%
################################################################          90.2%
#################################################################         90.6%
#################################################################         91.0%
- 
#################################################################         91.4%
##################################################################        91.9%
##################################################################        92.3%
##################################################################        92.7%
###################################################################       93.1%
###################################################################       93.7%
###################################################################       94.1%
####################################################################      94.5%
####################################################################      94.9%
####################################################################      95.4%
####################################################################      95.8%
- 
#####################################################################     96.2%
#####################################################################     96.6%
#####################################################################     97.0%
######################################################################    97.4%
######################################################################    97.9%
######################################################################    98.3%
#######################################################################   98.7%
#######################################################################   99.1%
#######################################################################   99.5%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.5.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-05-23 16:32.23 ---> using "c911977074df3b2f048642388d79fb4e66f125439277553cc6f380788a8ee54d" from cache

/: (run (shell "opam pin add -k version -yn lua-ml.0.9.5 0.9.5"))
lua-ml is now pinned to version 0.9.5
2026-05-23 16:32.23 ---> using "2f0778e427bb1d821db8b1a0355719eac9c16311d3ac6bf2b5e248a18bc980e7" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall lua-ml.0.9.5;\
               \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\" != 'lua-ml.0.9.5' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
lua-ml.0.9.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
  - install dune      3.23.1         [required by lua-ml]
  - install lua-ml    0.9.5 (pinned)
  - install menhir    20260209       [required by lua-ml]
  - install menhirCST 20260209       [required by menhir]
  - install menhirGLR 20260209       [required by menhir]
  - install menhirLib 20260209       [required by menhir]
  - install menhirSdk 20260209       [required by menhir]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.1  (cached)
-> retrieved lua-ml.0.9.5  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed dune.3.23.1
-> installed menhirCST.20260209
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> installed menhir.20260209
-> installed lua-ml.0.9.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-23 16:32.23 ---> using "3acaa566008501b54b3c473affc5d0c284ab1ccbb268bcc3875e526fbd223b51" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   lua-ml.0.9.5
-> installed lua-ml.0.9.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-23 16:32.31 ---> saved as "37e921bf66bea460fa7f5cd0308ca28033007ad4ab21199696f5e1be601bfdac"

/: (run (shell  "opam reinstall --with-test --verbose lua-ml.0.9.5;\
               \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\" != 'lua-ml.0.9.5' && 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 lua-ml 0.9.5 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [lua-ml: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lua-ml" "-j" "11" "--promote-install-files=false" "@install" "@runtest" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/lua-ml.0.9.5)
- (cd _build/default && /Users/mac1000/.opam/5.4.0/bin/menhir --external-tokens Luaparser_tokens src/luaparser_impl.mly src/luaparser_tokens.mly --base src/luaparser_impl --infer-write-query src/luaparser_impl__mock.ml.mock)
- File "src/luaparser_tokens.mly", line 12, characters 7-12:
- Warning: the token ARROW is unused.
- File "src/luaparser_tokens.mly", line 7, characters 49-53:
- Warning: the token CASE is unused.
- File "src/luaparser_tokens.mly", line 7, characters 54-63:
- Warning: the token GLOBMATCH is unused.
- File "src/luaparser_tokens.mly", line 7, characters 64-66:
- Warning: the token OF is unused.
- File "src/luaparser_tokens.mly", line 5, characters 7-17:
- Warning: the token WRONGTOKEN is unused.
Processing  2/4: [lua-ml: dune install]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "lua-ml" "--create-install-files" "lua-ml" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/lua-ml.0.9.5)
-> compiled  lua-ml.0.9.5
-> removed   lua-ml.0.9.5
-> installed lua-ml.0.9.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-23 16:32.39 ---> saved as "e8198f01dcf8aaae11a272f1a3ebc72f2ce8bf8d1a52282bbcc9b8fb5fc2956f"
Job succeeded
2026-05-23 16:32.52: Job succeeded