Build:
  1. 0
2026-01-17 20:26.31: New job: test ppx_subliner.0.2.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29237/head (f14cb352e3f8994f042e0794667f2cf7199b1cb0)
                              on macos-homebrew-ocaml-4.14/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/29237/head" && git reset --hard f14cb352
git fetch origin master
git merge --no-edit 6bda456f941d6c1e0773fcb1fd57c0eb54b8a2c1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ppx_subliner.0.2.2 0.2.2
RUN opam reinstall ppx_subliner.0.2.2; \
    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" != 'ppx_subliner.0.2.2' && 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 ppx_subliner.0.2.2) || true
RUN opam reinstall --with-test --verbose ppx_subliner.0.2.2; \
    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" != 'ppx_subliner.0.2.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-01-17 20:26.31: Using cache hint "macos-homebrew-ocaml-4.14-ppx_subliner.0.2.2-f14cb352e3f8994f042e0794667f2cf7199b1cb0"
2026-01-17 20:26.31: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url -k local --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ppx_subliner.0.2.2 0.2.2"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall ppx_subliner.0.2.2;\
             \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\" != 'ppx_subliner.0.2.2' && 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 ppx_subliner.0.2.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_subliner.0.2.2;\
             \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\" != 'ppx_subliner.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-17 20:26.31: Waiting for resource in pool OCluster
2026-01-17 20:26.32: Waiting for worker…
2026-01-17 20:29.57: Got resource from pool OCluster
Building on i7-worker-01
All commits already cached
Updating files:  30% (5790/19221)
Updating files:  31% (5959/19221)
Updating files:  32% (6151/19221)
Updating files:  33% (6343/19221)
Updating files:  34% (6536/19221)
Updating files:  35% (6728/19221)
Updating files:  36% (6920/19221)
Updating files:  37% (7112/19221)
Updating files:  38% (7304/19221)
Updating files:  39% (7497/19221)
Updating files:  40% (7689/19221)
Updating files:  41% (7881/19221)
Updating files:  42% (8073/19221)
Updating files:  43% (8266/19221)
Updating files:  44% (8458/19221)
Updating files:  45% (8650/19221)
Updating files:  46% (8842/19221)
Updating files:  47% (9034/19221)
Updating files:  48% (9227/19221)
Updating files:  49% (9419/19221)
Updating files:  50% (9611/19221)
Updating files:  51% (9803/19221)
Updating files:  52% (9995/19221)
Updating files:  52% (10000/19221)
Updating files:  53% (10188/19221)
Updating files:  54% (10380/19221)
Updating files:  55% (10572/19221)
Updating files:  56% (10764/19221)
Updating files:  57% (10956/19221)
Updating files:  58% (11149/19221)
Updating files:  59% (11341/19221)
Updating files:  60% (11533/19221)
Updating files:  61% (11725/19221)
Updating files:  62% (11918/19221)
Updating files:  63% (12110/19221)
Updating files:  64% (12302/19221)
Updating files:  65% (12494/19221)
Updating files:  66% (12686/19221)
Updating files:  67% (12879/19221)
Updating files:  68% (13071/19221)
Updating files:  69% (13263/19221)
Updating files:  70% (13455/19221)
Updating files:  71% (13647/19221)
Updating files:  72% (13840/19221)
Updating files:  73% (14032/19221)
Updating files:  74% (14224/19221)
Updating files:  75% (14416/19221)
Updating files:  76% (14608/19221)
Updating files:  77% (14801/19221)
Updating files:  78% (14993/19221)
Updating files:  79% (15185/19221)
Updating files:  79% (15304/19221)
Updating files:  80% (15377/19221)
Updating files:  81% (15570/19221)
Updating files:  82% (15762/19221)
Updating files:  83% (15954/19221)
Updating files:  84% (16146/19221)
Updating files:  85% (16338/19221)
Updating files:  86% (16531/19221)
Updating files:  87% (16723/19221)
Updating files:  88% (16915/19221)
Updating files:  89% (17107/19221)
Updating files:  90% (17299/19221)
Updating files:  91% (17492/19221)
Updating files:  92% (17684/19221)
Updating files:  93% (17876/19221)
Updating files:  94% (18068/19221)
Updating files:  95% (18260/19221)
Updating files:  96% (18453/19221)
Updating files:  97% (18645/19221)
Updating files:  98% (18837/19221)
Updating files:  99% (19029/19221)
Updating files: 100% (19221/19221)
Updating files: 100% (19221/19221), done.
HEAD is now at 6bda456f94 Merge pull request #29229 from elias-utf8/opam-publish-qcaml.0.1.7
Updating 6bda456f94..f14cb352e3
Fast-forward
 packages/ppx_subliner/ppx_subliner.0.2.2/opam | 44 +++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 packages/ppx_subliner/ppx_subliner.0.2.2/opam

(from macos-homebrew-ocaml-4.14)
2026-01-17 20:30.03 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-01-17 20:30.03 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-01-17 20:30.03 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache

/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=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       4.14.2
# invariant            ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-01-17 20:30.04 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-01-17 20:30.04 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-01-17 20:30.06 ---> using "075f6d7d25cbc9b3cd8fa176839dd677ab9ed040bcfedd123ddce573835186f2" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-01-17 20:30.07 ---> using "bd018a3c3e205ded041f9cfc5ea1edf0287deb062f5f1f6ab3a53f046569ab72" from cache

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

                                                                           0.3%
                                                                           0.8%
#                                                                          1.5%
#                                                                          2.1%
##                                                                         2.9%
##                                                                         3.6%
- 
##                                                                         4.0%
###                                                                        4.5%
###                                                                        4.9%
###                                                                        5.3%
####                                                                       5.8%
####                                                                       6.2%
####                                                                       6.7%
#####                                                                      7.1%
#####                                                                      7.5%
#####                                                                      8.0%
######                                                                     8.4%
- 
######                                                                     8.8%
######                                                                     9.2%
######                                                                     9.7%
#######                                                                   10.1%
#######                                                                   10.5%
#######                                                                   11.0%
########                                                                  11.4%
########                                                                  11.9%
########                                                                  12.4%
#########                                                                 12.8%
#########                                                                 13.2%
- 
#########                                                                 13.6%
##########                                                                14.0%
##########                                                                14.6%
##########                                                                15.0%
###########                                                               15.4%
###########                                                               15.8%
###########                                                               16.2%
###########                                                               16.6%
############                                                              17.2%
############                                                              17.6%
############                                                              18.0%
- 
#############                                                             18.4%
#############                                                             18.9%
#############                                                             19.4%
##############                                                            19.8%
##############                                                            20.2%
##############                                                            20.6%
###############                                                           21.0%
###############                                                           21.6%
###############                                                           22.0%
################                                                          22.5%
- 
################                                                          23.0%
################                                                          23.4%
#################                                                         23.8%
#################                                                         24.3%
#################                                                         24.7%
##################                                                        25.1%
##################                                                        25.5%
##################                                                        25.9%
##################                                                        26.3%
###################                                                       26.8%
###################                                                       27.3%
- 
###################                                                       27.7%
####################                                                      28.1%
####################                                                      28.7%
####################                                                      29.1%
#####################                                                     29.5%
#####################                                                     29.9%
#####################                                                     30.4%
######################                                                    30.8%
######################                                                    31.2%
######################                                                    31.6%
#######################                                                   32.1%
- 
#######################                                                   32.6%
#######################                                                   33.0%
########################                                                  33.4%
########################                                                  33.8%
########################                                                  34.2%
#########################                                                 34.8%
#########################                                                 35.0%
#########################                                                 35.4%
#########################                                                 35.9%
##########################                                                36.3%
##########################                                                36.7%
- 
##########################                                                37.1%
###########################                                               37.5%
###########################                                               37.9%
###########################                                               38.5%
############################                                              38.9%
############################                                              39.3%
############################                                              39.7%
############################                                              40.1%
#############################                                             40.7%
#############################                                             41.1%
#############################                                             41.5%
- 
##############################                                            41.9%
##############################                                            42.4%
##############################                                            42.8%
###############################                                           43.2%
###############################                                           43.7%
###############################                                           44.1%
################################                                          44.6%
################################                                          45.0%
################################                                          45.4%
#################################                                         45.9%
#################################                                         46.4%
- 
#################################                                         46.8%
#################################                                         47.2%
##################################                                        47.7%
##################################                                        48.1%
##################################                                        48.6%
###################################                                       48.8%
###################################                                       49.4%
###################################                                       49.8%
####################################                                      50.2%
####################################                                      50.7%
####################################                                      51.1%
- 
#####################################                                     51.5%
#####################################                                     51.9%
#####################################                                     52.5%
######################################                                    52.9%
######################################                                    53.3%
######################################                                    53.7%
#######################################                                   54.3%
#######################################                                   54.7%
#######################################                                   55.1%
#######################################                                   55.5%
########################################                                  55.9%
- 
########################################                                  56.3%
########################################                                  56.9%
#########################################                                 57.2%
#########################################                                 57.7%
#########################################                                 58.1%
##########################################                                58.6%
##########################################                                59.0%
##########################################                                59.4%
###########################################                               59.9%
###########################################                               60.3%
###########################################                               60.7%
- 
############################################                              61.2%
############################################                              61.6%
############################################                              62.0%
############################################                              62.4%
#############################################                             63.0%
#############################################                             63.4%
#############################################                             63.8%
##############################################                            64.3%
##############################################                            64.7%
##############################################                            65.2%
###############################################                           65.6%
- 
###############################################                           66.0%
###############################################                           66.4%
################################################                          66.9%
################################################                          67.3%
################################################                          67.7%
#################################################                         68.3%
#################################################                         68.7%
#################################################                         69.1%
##################################################                        69.5%
##################################################                        69.9%
##################################################                        70.5%
- 
###################################################                       70.9%
###################################################                       71.3%
###################################################                       71.7%
###################################################                       72.1%
####################################################                      72.7%
####################################################                      73.1%
####################################################                      73.6%
#####################################################                     74.0%
#####################################################                     74.4%
#####################################################                     74.8%
######################################################                    75.4%
- 
######################################################                    75.8%
######################################################                    76.2%
#######################################################                   76.6%
#######################################################                   77.0%
#######################################################                   77.4%
########################################################                  77.8%
########################################################                  78.2%
########################################################                  78.7%
########################################################                  79.2%
#########################################################                 79.6%
#########################################################                 80.1%
- 
#########################################################                 80.5%
##########################################################                80.9%
##########################################################                81.4%
##########################################################                81.8%
###########################################################               82.2%
###########################################################               82.6%
###########################################################               83.1%
############################################################              83.5%
############################################################              83.9%
############################################################              84.3%
#############################################################             84.9%
- 
#############################################################             85.3%
#############################################################             85.7%
#############################################################             86.1%
##############################################################            86.7%
##############################################################            87.1%
##############################################################            87.5%
###############################################################           87.9%
###############################################################           88.3%
###############################################################           88.9%
################################################################          89.3%
################################################################          89.7%
- 
################################################################          90.2%
#################################################################         90.6%
#################################################################         91.0%
#################################################################         91.4%
##################################################################        92.0%
##################################################################        92.4%
##################################################################        92.8%
###################################################################       93.2%
###################################################################       93.6%
###################################################################       94.0%
###################################################################       94.4%
- 
####################################################################      94.9%
####################################################################      95.5%
#####################################################################     95.9%
#####################################################################     96.3%
#####################################################################     96.7%
#####################################################################     97.1%
######################################################################    97.5%
######################################################################    98.0%
######################################################################    98.5%
#######################################################################   98.9%
#######################################################################   99.3%
- 
#######################################################################   99.7%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.8.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-01-17 20:30.07 ---> using "9143e1fc69a40513468036c079d611c0371f682c4cf5853519c6f8c3db5df57a" from cache

/: (run (shell "opam pin add -k version -yn ppx_subliner.0.2.2 0.2.2"))
ppx_subliner is now pinned to version 0.2.2
2026-01-17 20:30.07 ---> using "15c54e7ee7e9a22b413c63949271d5fe87134c1ec01823cf719091692e2212b1" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall ppx_subliner.0.2.2;\
               \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\" != 'ppx_subliner.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
ppx_subliner.0.2.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install cmdliner            2.1.0          [required by ppx_subliner]
  - install dune                3.21.0         [required by ppx_subliner]
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppx_make            0.3.4          [required by ppx_subliner]
  - install ppx_subliner        0.2.2 (pinned)
  - install ppxlib              0.35.0         [required by ppx_subliner]
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install stdlib-shims        0.3.0          [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved dune.3.21.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_make.0.3.4  (cached)
-> retrieved ppx_subliner.0.2.2  (https://github.com/bn-d/ppx_subliner/archive/refs/tags/v0.2.2.tar.gz)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed cmdliner.2.1.0
-> installed dune.3.21.0
-> installed stdlib-shims.0.3.0
-> installed ppx_derivers.1.2.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed ppxlib.0.35.0
-> installed ppx_make.0.3.4
-> installed ppx_subliner.0.2.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-17 20:30.07 ---> using "b65f0f90ac5f7275945118547cd1da2923aca133aec80dae2355b1962f52ce20" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test ppx_subliner.0.2.2) || true"))
The following actions will be performed:
=== downgrade 2 packages
  - downgrade cmdliner              2.1.0 to 1.3.0   [required by ppx_subliner]
  - downgrade ppxlib                0.35.0 to 0.25.1 [required by ppx_subliner]
=== recompile 2 packages
  - recompile ppx_make              0.3.4            [uses ppxlib]
  - recompile ppx_subliner          0.2.2 (pinned)
=== install 16 packages
  - install   alcotest              1.9.1            [required by ppx_subliner]
  - install   astring               0.8.5            [required by alcotest]
  - install   bisect_ppx            2.8.1            [required by ppx_subliner]
  - install   cppo                  1.8.0            [required by ppx_deriving]
  - install   fmt                   0.11.0           [required by alcotest]
  - install   ocaml-syntax-shims    1.0.0            [required by alcotest]
  - install   ocamlbuild            0.16.1           [required by fmt, astring, uutf]
  - install   ocamlfind             1.9.8            [required by uutf, astring, fmt, ppx_deriving]
  - install   ppx_deriving          5.2.1            [required by ppx_deriving_cmdliner]
  - install   ppx_deriving_cmdliner 0.6.0            [required by ppx_subliner]
  - install   ppx_show              0.2.1            [required by ppx_subliner]
  - install   re                    1.14.0           [required by alcotest]
  - install   result                1.5              [required by ppx_deriving_cmdliner]
  - install   stdcompat             21.1             [required by ppx_show]
  - install   topkg                 1.1.1            [required by fmt, astring, uutf]
  - install   uutf                  1.0.4            [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
-> retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved bisect_ppx.2.8.1  (https://github.com/aantron/bisect_ppx/archive/2.8.1.tar.gz)
-> retrieved cmdliner.1.3.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> retrieved cppo.1.8.0  (https://github.com/ocaml-community/cppo/archive/v1.8.0.tar.gz)
-> retrieved fmt.0.11.0  (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
-> retrieved ocaml-syntax-shims.1.0.0  (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved ocamlbuild.0.16.1  (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ocamlfind.1.9.8  (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> retrieved ppx_deriving.5.2.1  (https://github.com/ocaml-ppx/ppx_deriving/releases/download/v5.2.1/ppx_deriving-v5.2.1.tbz)
-> installed cppo.1.8.0
-> retrieved ppx_deriving_cmdliner.0.6.0  (https://github.com/hammerlab/ppx_deriving_cmdliner/archive/refs/tags/v0.6.0.tar.gz)
-> retrieved ppx_make.0.3.4  (https://github.com/bn-d/ppx_make/archive/refs/tags/v0.3.4.tar.gz)
-> retrieved ppx_show.0.2.1  (https://github.com/thierry-martinez/ppx_show/archive/v0.2.1.tar.gz)
-> retrieved ppxlib.0.25.1  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.25.1/ppxlib-0.25.1.tbz)
-> retrieved re.1.14.0  (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> retrieved result.1.5  (https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz)
-> installed result.1.5
-> retrieved stdcompat.21.1  (https://github.com/ocamllibs/stdcompat/archive/refs/tags/21.1.tar.gz)
-> installed re.1.14.0
-> retrieved topkg.1.1.1  (https://erratique.ch/software/topkg/releases/topkg-1.1.1.tbz)
-> retrieved uutf.1.0.4  (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> installed ocamlfind.1.9.8
-> installed stdcompat.21.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> removed   ppx_subliner.0.2.2
-> removed   cmdliner.2.1.0
-> removed   ppx_make.0.3.4
-> removed   ppxlib.0.35.0
-> installed cmdliner.1.3.0
-> installed ppxlib.0.25.1
-> installed astring.0.8.5
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ppx_make.0.3.4
-> installed ppx_show.0.2.1
-> installed bisect_ppx.2.8.1
-> installed ppx_deriving.5.2.1
-> installed alcotest.1.9.1
-> installed ppx_deriving_cmdliner.0.6.0
-> installed ppx_subliner.0.2.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-17 20:30.47 ---> saved as "6a00182499c7805e1edbb8738f64a29427ad95014c41431ee8a474e8f871a163"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ppx_subliner: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_subliner" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ppx_subliner.0.2.2)
- (cd _build/default/test/cmdliner && ./test_ppx_deriving_cmdliner.exe)
- Testing `Ppx_deriving_cmdliner'.
- This run has ID `A8GAS2QU'.
- 
-   [OK]          test          0   simple types.
-   [OK]          test          1   default types.
-   [OK]          test          2   ENV types.
-   [OK]          test          3   list sep types.
-   [OK]          test          4   positional types.
-   [OK]          test          5   custom types.
-   [OK]          test          6   opt_all type.
-   [OK]          test          7   term type.
- 
- Full test results in `~/.opam/4.14.2/.opam-switch/build/ppx_subliner.0.2.2/_build/default/test/cmdliner/_build/_tests/Ppx_deriving_cmdliner'.
- Test Successful in 0.002s. 8 tests run.
- (cd _build/default/test && ./test_subliner.exe)
- Testing `ppx_subliner'.
- This run has ID `L3USZ5J0'.
- 
-   [OK]          attr                      0   derived.
-   [OK]          attr                      1   prefixed.
-   [OK]          attr                      2   priority_0.
-   [OK]          attr                      3   priority_1.
-   [OK]          attr                      4   priority_2.
-   [OK]          attr                      5   priority_3.
-   [OK]          attr                      6   priority_4.
-   [OK]          attr                      7   invalid_payload.
-   [OK]          attr                      8   invalid_attr.
-   [OK]          attr.term                 0   empty.
-   [OK]          attr.term                 1   term.
-   [OK]          attr.term                 2   deprecated.
-   [OK]          attr.term                 3   deprecated_.
-   [OK]          attr.term                 4   absent.
-   [OK]          attr.term                 5   docs.
-   [OK]          attr.term                 6   docv.
-   [OK]          attr.term                 7   doc.
-   [OK]          attr.term                 8   env.
-   [OK]          attr.term                 9   env.deprecated.
-   [OK]          attr.term                10   env.docs.
-   [OK]          attr.term                11   env.doc.
-   [OK]          attr.term                12   names.
-   [OK]          attr.term                13   opt_all.
-   [OK]          attr.term                14   pos.
-   [OK]          attr.term                15   pos_all.
-   [OK]          attr.term                16   pos_left.
-   [OK]          attr.term                17   pos_right.
-   [OK]          attr.term                18   rev.
-   [OK]          attr.term                19   non_empty.
-   [OK]          attr.term                20   last.
-   [OK]          attr.term                21   last.sep.
-   [OK]          attr.term                22   default.
-   [OK]          attr.string_conv          0   empty.
-   [OK]          attr.string_conv          1   file.
-   [OK]          attr.string_conv          2   dir.
-   [OK]          attr.string_conv          3   non_dir_file.
-   [OK]          attr.cmd_info             0   empty.
-   [OK]          attr.cmd_info             1   deprecated.
-   [OK]          attr.cmd_info             2   deprecated_.
-   [OK]          attr.cmd_info             3   man_xrefs.
-   [OK]          attr.cmd_info             4   man.
-   [OK]          attr.cmd_info             5   envs.
-   [OK]          attr.cmd_info             6   exits.
-   [OK]          attr.cmd_info             7   sdocs.
-   [OK]          attr.cmd_info             8   docs.
-   [OK]          attr.cmd_info             9   doc.
-   [OK]          attr.cmd_info            10   version.
-   [OK]          attr.cmd_info            11   name.
-   [OK]          attr.single               0   conv.empty.
-   [OK]          attr.single               1   conv.
-   [OK]          attr.single               2   sep.empty.
-   [OK]          attr.single               3   sep.
-   [OK]          attr.single               4   enum.empty.
-   [OK]          attr.single               5   enum.
-   [OK]          attr.single               6   default.empty.
-   [OK]          attr.single               7   default.
-   [OK]          term.conv                 0   bool.
-   [OK]          term.conv                 1   Bool.t.
-   [OK]          term.conv                 2   char.
-   [OK]          term.conv                 3   Char.t`.
-   [OK]          term.conv                 4   int.
-   [OK]          term.conv                 5   Int.t.
-   [OK]          term.conv                 6   nativeint.
-   [OK]          term.conv                 7   Nativeint.t.
-   [OK]          term.conv                 8   int32.
-   [OK]          term.conv                 9   Int32.t.
-   [OK]          term.conv                10   int64.
-   [OK]          term.conv                11   Int64.t.
-   [OK]          term.conv                12   float.
-   [OK]          term.conv                13   Float.t.
-   [OK]          term.conv                14   string.
-   [OK]          term.conv                15   String.t.
-   [OK]          term.conv                16   file.
-   [OK]          term.conv                17   dir.
-   [OK]          term.conv                18   non_dir_file.
-   [OK]          term.conv                19   option.
-   [OK]          term.conv                20   Option.t.
-   [OK]          term.conv                21   list.
-   [OK]          term.conv                22   List.t.
-   [OK]          term.conv                23   list.sep.
-   [OK]          term.conv                24   array.
-   [OK]          term.conv                25   Array.t.
-   [OK]          term.conv                26   array.sep.
-   [OK]          term.conv                27   pair.
-   [OK]          term.conv                28   pair.sep.
-   [OK]          term.conv                29   t3.
-   [OK]          term.conv                30   t3.sep.
-   [OK]          term.conv                31   t4.
-   [OK]          term.conv                32   t4.sep.
-   [OK]          term.conv                33   nested.
-   [OK]          term.conv                34   inside_attr.
-   [OK]          term.conv                35   custom.
-   [OK]          term.conv                36   invalid_1.
-   [OK]          term.conv                37   invalid_2.
-   [OK]          term.conv                38   gen.basic.
-   [OK]          term.conv                39   gen.option.
-   [OK]          term.conv                40   gen.list.
-   [OK]          term.conv                41   gen.list.sep.
-   [OK]          term.conv                42   gen.array.
-   [OK]          term.conv                43   gen.array.sep.
-   [OK]          term.conv                44   gen.pair.
-   [OK]          term.conv                45   gen.pair.sep.
-   [OK]          term.conv                46   gen.t3.
-   [OK]          term.conv                47   gen.t3.sep.
-   [OK]          term.conv                48   gen.t4.
-   [OK]          term.conv                49   gen.t4.sep.
-   [OK]          term.conv                50   gen.custom.
-   [OK]          term.info                 0   empty.
-   [OK]          term.info                 1   all.
-   [OK]          term.as-term              0   empty.
-   [OK]          term.as-term              1   default.
-   [OK]          term.as-term              2   default.invalid.
-   [OK]          term.as-term              3   non_empty.
-   [OK]          term.as-term              4   non_empty.invalid.
-   [OK]          term.as-term              5   last.
-   [OK]          term.as-term              6   last.default.
-   [OK]          term.as-term              7   last.sep.
-   [OK]          term.as-term              8   last.invalid.
-   [OK]          term.as-term              9   non_empty_last_conflict.
-   [OK]          term.as-term             10   non_empty_default_conflict.
-   [OK]          term.named                0   simple.simple.
-   [OK]          term.named                1   simple.default.
-   [OK]          term.named                2   simple.required.
-   [OK]          term.named                3   simple.non-empty.
-   [OK]          term.named                4   simple.last.
-   [OK]          term.named                5   opt_all.simple.
-   [OK]          term.named                6   opt_all.default.
-   [OK]          term.named                7   opt_all.non-empty.
-   [OK]          term.named                8   opt_all.last.
-   [OK]          term.postional            0   simple.simple.
-   [OK]          term.postional            1   simple.default.
-   [OK]          term.postional            2   simple.required.
-   [OK]          term.postional            3   simple.non_empty.
-   [OK]          term.postional            4   simple.too_many.
-   [OK]          term.postional            5   list_pos.left_1.
-   [OK]          term.postional            6   list_pos.left_2.
-   [OK]          term.postional            7   list_pos.right.
-   [OK]          term.postional            8   list_pos.non_empty.
-   [OK]          term.postional            9   list_pos.nested.
-   [OK]          term.postional           10   list_pos.empty.
-   [OK]          term.postional           11   pos_list.rev.
-   [OK]          term                      0   names.long.
-   [OK]          term                      1   names.short.
-   [OK]          term                      2   sep.simple.
-   [OK]          term                      3   term.simple.
-   [OK]          term                      4   conv.simple.
-   [OK]          term                      5   multi_pos.
-   [OK]          term                      6   pos_names_conflict.
-   [OK]          term                      7   pos_opt_all_conflict.
-   [OK]          term                      8   pos_all_rev_conflict.
-   [OK]          term                      9   pos_sep_conflict.
-   [OK]          term                     10   pos.invalid.
-   [OK]          term                     11   opt_all_sep_conflict.
-   [OK]          term                     12   opt_all.invalid.
-   [OK]          term                     13   non_empty.invalid.
-   [OK]          group-cmd                 0   simple.simple_t.
-   [OK]          group-cmd                 1   simple.simple_m.
-   [OK]          group-cmd                 2   simple.simple_name_attr.
-   [OK]          group-cmd                 3   simple.simple_no_arg.
-   [OK]          group-cmd                 4   simple.simple_inline.
-   [OK]          group-cmd                 5   simple.simple_cmdliner.
-   [OK]          group-cmd                 6   simple.simple_multi.
-   [OK]          enum                      0   simple.simple.
-   [OK]          enum                      1   simple.names_1.
-   [OK]          enum                      2   simple.names_2.
-   [OK]          enum                      3   simple.invalid.
- 
- Full test results in `~/.opam/4.14.2/.opam-switch/build/ppx_subliner.0.2.2/_build/default/test/_build/_tests/ppx_subliner'.
- Test Successful in 0.025s. 166 tests run.
-> compiled  ppx_subliner.0.2.2
-> removed   ppx_subliner.0.2.2
-> installed ppx_subliner.0.2.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-17 20:30.57 ---> saved as "07a52c3b9a27ebcce5fb24c2a3de147121fde5e5f83eb1970c2cc1d7329214c9"
Job succeeded
2026-01-17 20:31.11: Job succeeded