(for PR #27506)

2025-02-28 11:21.23: New job: test yocaml_cmark.1.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27506/head (75eef35b619bf9c3f461991842637fa9cca93c84)
                              on macos-homebrew-ocaml-5.3/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-5.3
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_cmark.1.0.0 1.0.0
RUN opam reinstall yocaml_cmark.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_cmark.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_cmark.1.0.0) || true
RUN opam reinstall --with-test --verbose yocaml_cmark.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_cmark.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-5.3-yocaml_cmark.1.0.0-75eef35b619bf9c3f461991842637fa9cca93c84"
2025-02-28 11:21.23: Using OBuilder spec:
((from macos-homebrew-ocaml-5.3)
 (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_cmark.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_cmark.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_cmark.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_cmark.1.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose yocaml_cmark.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_cmark.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:36.01: Got resource from pool OCluster
Building on i7-worker-03
All commits already cached
Updating files:  28% (6406/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:  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:  51% (11639/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:  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:  76% (17317/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-5.3)
2025-02-28 11:36.07 ---> using "6ee950b55569b1a3f8a7953dc679318bf303d3a70ac7d49901c0ac2ca3805d7c" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2025-02-28 11:36.07 ---> using "daf13cd85321dca2abefeec4b24cfce5d94aff7b852ffa868e4c5535b37a2285" 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:36.08 ---> using "b44331ef0e2a1f949f81555f074a313d66c5d4355f7385be6765b19cf7bc8136" 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       5.3.0
# invariant            ["ocaml-base-compiler" {= "5.3.0"} | "ocaml-system" {= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /Users/mac1000/.opam/5.3.0/lib/ocaml/stublibs:/Users/mac1000/.opam/5.3.0/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-02-28 11:36.08 ---> using "9a7889cfd2de27772065fdd759bc9c801c28f8cc8252bd01d09de9ac80c0ddfc" 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:36.08 ---> using "d17ed0ae9a502c5679ac6c71732a210cdcb974067ebb6cb03f2c6ee2249d5077" from cache

/: (copy (src .) (dst opam-repository/))
2025-02-28 11:36.10 ---> using "7e617f2f92f3e1d8d002f08366cbbb25651f8a573c563fde987e84e60671ecac" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-02-28 11:36.10 ---> using "062ce5efcd91cad536ec2c44ecb8b781293ca0eeedf2ad04c15d5d7ed8c98535" 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.7%
#                                                                          1.6%
- 
#                                                                          2.5%
##                                                                         3.4%
###                                                                        4.3%
###                                                                        5.2%
####                                                                       6.2%
#####                                                                      7.2%
#####                                                                      8.0%
######                                                                     8.9%
#######                                                                    9.9%
#######                                                                   10.8%
########                                                                  11.7%
- 
#########                                                                 12.6%
#########                                                                 13.6%
##########                                                                14.5%
###########                                                               15.3%
###########                                                               16.3%
############                                                              17.2%
#############                                                             18.2%
#############                                                             19.2%
##############                                                            20.1%
###############                                                           21.0%
###############                                                           22.0%
- 
################                                                          22.8%
#################                                                         23.9%
#################                                                         24.7%
##################                                                        25.6%
###################                                                       26.6%
###################                                                       27.4%
####################                                                      28.3%
#####################                                                     29.2%
#####################                                                     30.1%
######################                                                    31.0%
#######################                                                   32.0%
- 
#######################                                                   32.9%
########################                                                  33.8%
########################                                                  34.6%
#########################                                                 35.6%
##########################                                                36.5%
##########################                                                37.4%
###########################                                               38.4%
############################                                              39.2%
############################                                              40.1%
#############################                                             41.0%
##############################                                            42.0%
- 
##############################                                            42.8%
###############################                                           43.7%
################################                                          44.7%
################################                                          45.6%
#################################                                         46.4%
##################################                                        47.3%
##################################                                        48.3%
###################################                                       49.1%
####################################                                      50.2%
####################################                                      51.2%
#####################################                                     52.0%
- 
######################################                                    53.0%
######################################                                    53.9%
#######################################                                   54.7%
########################################                                  55.6%
########################################                                  56.6%
#########################################                                 57.5%
##########################################                                58.4%
##########################################                                59.2%
###########################################                               60.2%
###########################################                               61.1%
############################################                              61.9%
- 
#############################################                             62.9%
#############################################                             63.8%
##############################################                            64.8%
###############################################                           65.8%
###############################################                           66.7%
################################################                          67.5%
#################################################                         68.4%
#################################################                         69.4%
##################################################                        70.2%
###################################################                       71.1%
###################################################                       72.1%
- 
####################################################                      73.0%
#####################################################                     74.0%
#####################################################                     74.9%
######################################################                    75.9%
#######################################################                   76.7%
#######################################################                   77.7%
########################################################                  78.6%
#########################################################                 79.4%
#########################################################                 80.3%
##########################################################                81.3%
###########################################################               82.1%
- 
###########################################################               83.0%
############################################################              84.0%
#############################################################             84.9%
#############################################################             85.8%
##############################################################            86.6%
###############################################################           87.6%
###############################################################           88.6%
################################################################          89.5%
#################################################################         90.4%
#################################################################         91.2%
##################################################################        92.2%
- 
###################################################################       93.1%
###################################################################       94.1%
####################################################################      95.0%
#####################################################################     95.8%
#####################################################################     96.7%
######################################################################    97.6%
######################################################################    98.6%
#######################################################################   99.5%
######################################################################## 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:36.11 ---> using "8523c91c60a0a1083a2d57af505bc70c2fc806e4e45f9ce3b4828ea2f016ba49" from cache

/: (run (shell "opam pin add -k version -yn yocaml_cmark.1.0.0 1.0.0"))
yocaml_cmark is now pinned to version 1.0.0
2025-02-28 11:36.11 ---> using "a614c2799a4c2d6c54601958fef15b4731d9f5cd21b8711045c723b39a94d0e8" 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_cmark.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_cmark.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_cmark.1.0.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 9 packages
  - install cmarkit      0.3.0          [required by yocaml_cmark]
  - install dune         3.17.2         [required by yocaml_cmark]
  - install either       1.0.0          [required by preface]
  - install ocamlbuild   0.16.1         [required by cmarkit]
  - install ocamlfind    1.9.8          [required by cmarkit]
  - install preface      1.0.0          [required by yocaml_cmark]
  - install topkg        1.0.7          [required by cmarkit]
  - install yocaml       1.0.0          [required by yocaml_cmark]
  - install yocaml_cmark 1.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmarkit.0.3.0  (cached)
-> retrieved dune.3.17.2  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved preface.1.0.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved yocaml.1.0.0, yocaml_cmark.1.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.7
-> installed cmarkit.0.3.0
-> installed dune.3.17.2
-> installed either.1.0.0
-> installed preface.1.0.0
-> installed yocaml.1.0.0
-> installed yocaml_cmark.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-28 11:36.11 ---> using "c92495b82689d64a0839b046836c3783ab9e17c4e2ff0ad2ed1bc7a5007c3616" from cache

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

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

/: (run (shell  "opam reinstall --with-test --verbose yocaml_cmark.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_cmark.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_cmark 1.0.0 (pinned)

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