(for PR #27506)

2025-02-28 11:21.23: New job: test yocaml_mustache.1.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27506/head (75eef35b619bf9c3f461991842637fa9cca93c84)
                              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/27506/head" && git reset --hard 75eef35b
git fetch origin master
git merge --no-edit c27f09fa9e7c90f754413780e15d13ba8c13d377
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 yocaml_mustache.1.0.0 1.0.0
RUN opam reinstall yocaml_mustache.1.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'yocaml_mustache.1.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test yocaml_mustache.1.0.0) || true
RUN opam reinstall --with-test --verbose yocaml_mustache.1.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'yocaml_mustache.1.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2025-02-28 11:21.23: Using cache hint "macos-homebrew-ocaml-4.14-yocaml_mustache.1.0.0-75eef35b619bf9c3f461991842637fa9cca93c84"
2025-02-28 11:21.23: 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 yocaml_mustache.1.0.0 1.0.0"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall yocaml_mustache.1.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'yocaml_mustache.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test yocaml_mustache.1.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose yocaml_mustache.1.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'yocaml_mustache.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-02-28 11:21.23: Waiting for resource in pool OCluster
2025-02-28 11:21.26: Waiting for worker…
2025-02-28 11:42.04: Got resource from pool OCluster
Building on i7-worker-01
All commits already cached
Updating files:  24% (5585/22532)
Updating files:  25% (5633/22532)
Updating files:  26% (5859/22532)
Updating files:  27% (6084/22532)
Updating files:  28% (6309/22532)
Updating files:  29% (6535/22532)
Updating files:  30% (6760/22532)
Updating files:  31% (6985/22532)
Updating files:  32% (7211/22532)
Updating files:  33% (7436/22532)
Updating files:  34% (7661/22532)
Updating files:  35% (7887/22532)
Updating files:  36% (8112/22532)
Updating files:  37% (8337/22532)
Updating files:  38% (8563/22532)
Updating files:  39% (8788/22532)
Updating files:  40% (9013/22532)
Updating files:  41% (9239/22532)
Updating files:  42% (9464/22532)
Updating files:  43% (9689/22532)
Updating files:  44% (9915/22532)
Updating files:  45% (10140/22532)
Updating files:  46% (10365/22532)
Updating files:  46% (10431/22532)
Updating files:  47% (10591/22532)
Updating files:  48% (10816/22532)
Updating files:  49% (11041/22532)
Updating files:  50% (11266/22532)
Updating files:  51% (11492/22532)
Updating files:  52% (11717/22532)
Updating files:  53% (11942/22532)
Updating files:  54% (12168/22532)
Updating files:  55% (12393/22532)
Updating files:  56% (12618/22532)
Updating files:  57% (12844/22532)
Updating files:  58% (13069/22532)
Updating files:  59% (13294/22532)
Updating files:  60% (13520/22532)
Updating files:  61% (13745/22532)
Updating files:  62% (13970/22532)
Updating files:  63% (14196/22532)
Updating files:  64% (14421/22532)
Updating files:  65% (14646/22532)
Updating files:  66% (14872/22532)
Updating files:  67% (15097/22532)
Updating files:  67% (15150/22532)
Updating files:  68% (15322/22532)
Updating files:  69% (15548/22532)
Updating files:  70% (15773/22532)
Updating files:  71% (15998/22532)
Updating files:  72% (16224/22532)
Updating files:  73% (16449/22532)
Updating files:  74% (16674/22532)
Updating files:  75% (16899/22532)
Updating files:  76% (17125/22532)
Updating files:  77% (17350/22532)
Updating files:  78% (17575/22532)
Updating files:  79% (17801/22532)
Updating files:  80% (18026/22532)
Updating files:  81% (18251/22532)
Updating files:  82% (18477/22532)
Updating files:  83% (18702/22532)
Updating files:  84% (18927/22532)
Updating files:  85% (19153/22532)
Updating files:  86% (19378/22532)
Updating files:  87% (19603/22532)
Updating files:  88% (19829/22532)
Updating files:  89% (20054/22532)
Updating files:  90% (20279/22532)
Updating files:  91% (20505/22532)
Updating files:  92% (20730/22532)
Updating files:  93% (20955/22532)
Updating files:  94% (21181/22532)
Updating files:  95% (21406/22532)
Updating files:  96% (21631/22532)
Updating files:  97% (21857/22532)
Updating files:  98% (22082/22532)
Updating files:  99% (22307/22532)
Updating files: 100% (22532/22532)
Updating files: 100% (22532/22532), done.
HEAD is now at c27f09fa9e Merge pull request #27515 from xavierleroy/Xft
Merge made by the 'ort' strategy.
 packages/preface/preface.1.1.0/opam                | 46 ++++++++++++++++++++++
 packages/yocaml/yocaml.1.0.0/opam                  |  2 +-
 packages/yocaml_cmark/yocaml_cmark.1.0.0/opam      |  2 +-
 packages/yocaml_git/yocaml_git.1.0.0/opam          |  2 +-
 packages/yocaml_jingoo/yocaml_jingoo.1.0.0/opam    |  2 +-
 .../yocaml_markdown/yocaml_markdown.1.0.0/opam     |  2 +-
 .../yocaml_mustache/yocaml_mustache.1.0.0/opam     |  2 +-
 packages/yocaml_unix/yocaml_unix.1.0.0/opam        |  2 +-
 packages/yocaml_yaml/yocaml_yaml.1.0.0/opam        |  2 +-
 9 files changed, 54 insertions(+), 8 deletions(-)
 create mode 100644 packages/preface/preface.1.1.0/opam

(from macos-homebrew-ocaml-4.14)
2025-02-28 11:42.11 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2025-02-28 11:42.11 ---> 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
2025-02-28 11:42.12 ---> 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.3.0
# self-upgrade         no
# system               arch=x86_64 os=macos os-distribution=homebrew os-version=14.4.1
# 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
2025-02-28 11:42.12 ---> 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/"))
2025-02-28 11:42.12 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2025-02-28 11:42.15 ---> using "837da677694f888e864fe9120bd2ae4438559f940b406b8bc2a13b4b2d5f4b99" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-02-28 11:42.15 ---> using "e7e39cbc70287acf2070bc799574eacef29fed95b5d05813b327e4a60273ec17" from cache

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

                                                                           0.1%
                                                                           1.3%
#                                                                          2.5%
##                                                                         3.3%
###                                                                        4.2%
- 
###                                                                        5.2%
####                                                                       6.1%
#####                                                                      6.9%
#####                                                                      8.0%
######                                                                     8.8%
######                                                                     9.7%
#######                                                                   10.6%
########                                                                  11.6%
########                                                                  12.4%
#########                                                                 13.3%
##########                                                                14.2%
##########                                                                15.2%
- 
###########                                                               16.1%
############                                                              16.9%
############                                                              17.8%
#############                                                             18.8%
##############                                                            19.7%
##############                                                            20.5%
###############                                                           21.6%
################                                                          22.4%
################                                                          23.3%
#################                                                         24.3%
##################                                                        25.2%
- 
##################                                                        26.0%
###################                                                       27.1%
####################                                                      27.9%
####################                                                      28.8%
#####################                                                     29.7%
######################                                                    30.7%
######################                                                    31.5%
#######################                                                   32.4%
#######################                                                   33.3%
########################                                                  34.3%
- 
#########################                                                 35.2%
#########################                                                 36.0%
##########################                                                36.9%
###########################                                               37.8%
###########################                                               38.8%
############################                                              39.6%
#############################                                             40.5%
#############################                                             41.4%
##############################                                            42.4%
###############################                                           43.3%
###############################                                           44.1%
- 
################################                                          45.1%
#################################                                         46.0%
#################################                                         46.9%
##################################                                        47.9%
###################################                                       48.8%
###################################                                       49.6%
####################################                                      50.5%
#####################################                                     51.5%
#####################################                                     52.4%
######################################                                    53.2%
######################################                                    54.1%
- 
#######################################                                   55.0%
########################################                                  56.1%
#########################################                                 57.0%
#########################################                                 57.9%
##########################################                                58.7%
###########################################                               59.8%
###########################################                               60.8%
############################################                              61.6%
#############################################                             62.5%
#############################################                             63.4%
##############################################                            64.4%
- 
##############################################                            65.3%
###############################################                           66.1%
################################################                          67.1%
################################################                          68.0%
#################################################                         68.9%
##################################################                        69.9%
##################################################                        70.8%
###################################################                       71.6%
####################################################                      72.5%
####################################################                      73.4%
#####################################################                     74.4%
- 
######################################################                    75.2%
######################################################                    76.1%
#######################################################                   77.1%
########################################################                  78.0%
########################################################                  78.9%
#########################################################                 79.7%
##########################################################                80.7%
##########################################################                81.6%
###########################################################               82.5%
############################################################              83.3%
############################################################              84.4%
- 
#############################################################             85.2%
#############################################################             86.1%
##############################################################            87.0%
###############################################################           87.8%
###############################################################           88.7%
################################################################          89.7%
#################################################################         90.6%
#################################################################         91.4%
##################################################################        92.5%
###################################################################       93.3%
###################################################################       94.2%
- 
####################################################################      95.1%
#####################################################################     96.1%
#####################################################################     96.9%
######################################################################    97.8%
#######################################################################   98.7%
#######################################################################   99.7%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.3.7.el_capitan.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.
2025-02-28 11:42.16 ---> using "a3bf00bad12881a314997b75cc0b64d7a10b4ff41c69cd2ee951b46d61a517c4" from cache

/: (run (shell "opam pin add -k version -yn yocaml_mustache.1.0.0 1.0.0"))
yocaml_mustache is now pinned to version 1.0.0
2025-02-28 11:42.16 ---> using "8166392faddd528802e6788638178d2d84714facc52a8f11e8b9b7e371d4155b" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall yocaml_mustache.1.0.0;\
               \n        res=$?;\
               \n        test \"$res\" != 31 && exit \"$res\";\
               \n        export OPAMCLI=2.0;\
               \n        build_dir=$(opam var prefix)/.opam-switch/build;\
               \n        failed=$(ls \"$build_dir\");\
               \n        partial_fails=\"\";\
               \n        for pkg in $failed; do\
               \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'yocaml_mustache.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
yocaml_mustache.1.0.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 10 packages
  - install dune            3.17.2         [required by yocaml_mustache]
  - install either          1.0.0          [required by preface]
  - install menhir          20240715       [required by mustache]
  - install menhirCST       20240715       [required by menhir]
  - install menhirLib       20240715       [required by menhir]
  - install menhirSdk       20240715       [required by menhir]
  - install mustache        3.3.0          [required by yocaml_mustache]
  - install preface         1.0.0          [required by yocaml_mustache]
  - install yocaml          1.0.0          [required by yocaml_mustache]
  - install yocaml_mustache 1.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.17.2  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved mustache.3.3.0  (https://github.com/rgrinberg/ocaml-mustache/releases/download/v3.3.0/mustache-3.3.0.tbz)
-> retrieved preface.1.0.0  (cached)
-> retrieved yocaml.1.0.0, yocaml_mustache.1.0.0  (cached)
-> installed dune.3.17.2
-> installed either.1.0.0
-> installed menhirCST.20240715
-> installed menhirSdk.20240715
-> installed menhirLib.20240715
-> installed preface.1.0.0
-> installed yocaml.1.0.0
-> installed menhir.20240715
-> installed mustache.3.3.0
-> installed yocaml_mustache.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-28 11:42.16 ---> using "9c96d074114eda2a5132377647e9c204657c3dbdb1bf0bef59b9ecc39d140b13" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   yocaml_mustache.1.0.0
-> installed yocaml_mustache.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-28 11:42.24 ---> saved as "e75b40932bc5ab277e7948f773e11f3b7ff93ca3cf122367fd29243d3a201248"

/: (run (shell  "opam reinstall --with-test --verbose yocaml_mustache.1.0.0;\
               \n        res=$?;\
               \n        test \"$res\" != 31 && exit \"$res\";\
               \n        export OPAMCLI=2.0;\
               \n        build_dir=$(opam var prefix)/.opam-switch/build;\
               \n        failed=$(ls \"$build_dir\");\
               \n        partial_fails=\"\";\
               \n        for pkg in $failed; do\
               \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'yocaml_mustache.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile yocaml_mustache 1.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [yocaml_mustache: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yocaml_mustache" "-j" "11" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/yocaml_mustache.1.0.0)
Processing  2/4: [yocaml_mustache: dune runtest]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "yocaml_mustache" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/yocaml_mustache.1.0.0)
-> compiled  yocaml_mustache.1.0.0
-> removed   yocaml_mustache.1.0.0
-> installed yocaml_mustache.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-28 11:42.32 ---> saved as "76b64630d45a15dfc216989ead26c32086d91e416851cd1a1618ff74bdd9062c"
Job succeeded
2025-02-28 11:42.46: Job succeeded