Build:
  1. 0
2025-12-30 12:34.49: New job: test raygui.1.6.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29008/head (450fcb54eb97683228045509526518426f9b6bde)
                              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/29008/head" && git reset --hard 450fcb54
git fetch origin master
git merge --no-edit c239a62d58deaede2e5dce17c2715a55397b73f2
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 raygui.1.6.0 1.6.0
RUN opam reinstall raygui.1.6.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" != 'raygui.1.6.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 raygui.1.6.0) || true
RUN opam reinstall --with-test --verbose raygui.1.6.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" != 'raygui.1.6.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-12-30 12:34.49: Using cache hint "macos-homebrew-ocaml-4.14-raygui.1.6.0-450fcb54eb97683228045509526518426f9b6bde"
2025-12-30 12:34.49: 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 raygui.1.6.0 1.6.0"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall raygui.1.6.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\" != 'raygui.1.6.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 raygui.1.6.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose raygui.1.6.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\" != 'raygui.1.6.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-12-30 12:34.49: Waiting for resource in pool OCluster
2025-12-30 12:34.49: Waiting for worker…
2025-12-30 12:44.31: Got resource from pool OCluster
Building on i7-worker-04
All commits already cached
Updating files:  34% (6512/19114)
Updating files:  35% (6690/19114)
Updating files:  36% (6882/19114)
Updating files:  37% (7073/19114)
Updating files:  38% (7264/19114)
Updating files:  39% (7455/19114)
Updating files:  40% (7646/19114)
Updating files:  41% (7837/19114)
Updating files:  42% (8028/19114)
Updating files:  43% (8220/19114)
Updating files:  44% (8411/19114)
Updating files:  45% (8602/19114)
Updating files:  46% (8793/19114)
Updating files:  47% (8984/19114)
Updating files:  48% (9175/19114)
Updating files:  49% (9366/19114)
Updating files:  50% (9557/19114)
Updating files:  51% (9749/19114)
Updating files:  52% (9940/19114)
Updating files:  53% (10131/19114)
Updating files:  54% (10322/19114)
Updating files:  55% (10513/19114)
Updating files:  56% (10704/19114)
Updating files:  57% (10895/19114)
Updating files:  58% (11087/19114)
Updating files:  59% (11278/19114)
Updating files:  60% (11469/19114)
Updating files:  61% (11660/19114)
Updating files:  62% (11851/19114)
Updating files:  63% (12042/19114)
Updating files:  63% (12044/19114)
Updating files:  64% (12233/19114)
Updating files:  65% (12425/19114)
Updating files:  66% (12616/19114)
Updating files:  67% (12807/19114)
Updating files:  68% (12998/19114)
Updating files:  69% (13189/19114)
Updating files:  70% (13380/19114)
Updating files:  71% (13571/19114)
Updating files:  72% (13763/19114)
Updating files:  73% (13954/19114)
Updating files:  74% (14145/19114)
Updating files:  75% (14336/19114)
Updating files:  76% (14527/19114)
Updating files:  77% (14718/19114)
Updating files:  78% (14909/19114)
Updating files:  79% (15101/19114)
Updating files:  80% (15292/19114)
Updating files:  81% (15483/19114)
Updating files:  82% (15674/19114)
Updating files:  83% (15865/19114)
Updating files:  84% (16056/19114)
Updating files:  85% (16247/19114)
Updating files:  86% (16439/19114)
Updating files:  87% (16630/19114)
Updating files:  88% (16821/19114)
Updating files:  89% (17012/19114)
Updating files:  90% (17203/19114)
Updating files:  91% (17394/19114)
Updating files:  92% (17585/19114)
Updating files:  93% (17777/19114)
Updating files:  93% (17912/19114)
Updating files:  94% (17968/19114)
Updating files:  95% (18159/19114)
Updating files:  96% (18350/19114)
Updating files:  97% (18541/19114)
Updating files:  98% (18732/19114)
Updating files:  99% (18923/19114)
Updating files: 100% (19114/19114)
Updating files: 100% (19114/19114), done.
HEAD is now at c239a62d58 Merge pull request #29143 from filipeom/opam-publish-smtml.0.18.0
Merge made by the 'ort' strategy.
 packages/raygui/raygui.1.6.0/opam                  | 43 +++++++++++++++++
 .../raylib-callbacks/raylib-callbacks.1.6.0/opam   | 39 +++++++++++++++
 packages/raylib/raylib.1.6.0/opam                  | 55 ++++++++++++++++++++++
 3 files changed, 137 insertions(+)
 create mode 100644 packages/raygui/raygui.1.6.0/opam
 create mode 100644 packages/raylib-callbacks/raylib-callbacks.1.6.0/opam
 create mode 100644 packages/raylib/raylib.1.6.0/opam

(from macos-homebrew-ocaml-4.14)
2025-12-30 12:44.37 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2025-12-30 12:44.37 ---> 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-12-30 12:44.37 ---> 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
2025-12-30 12:44.38 ---> 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-12-30 12:44.38 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2025-12-30 12:44.40 ---> using "9a24467353693ef2217ef1ee9ea7f0298ff963bdde134c43f8f18dd0d18de2fe" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-12-30 12:44.41 ---> using "d8913ece8dafdbe0013c9882e17ac71875b83eccba5ee9d1f92b1eb517d038f8" 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.1%
                                                                           1.2%
#                                                                          2.3%
##                                                                         3.2%
##                                                                         4.1%
- 
###                                                                        4.9%
####                                                                       5.8%
####                                                                       6.6%
#####                                                                      7.5%
######                                                                     8.4%
######                                                                     9.2%
#######                                                                   10.0%
#######                                                                   11.0%
########                                                                  11.8%
#########                                                                 12.6%
#########                                                                 13.6%
- 
##########                                                                14.4%
##########                                                                15.2%
###########                                                               16.0%
############                                                              17.0%
############                                                              17.8%
#############                                                             18.7%
##############                                                            19.5%
##############                                                            20.4%
###############                                                           21.3%
###############                                                           22.1%
################                                                          22.9%
- 
#################                                                         23.9%
#################                                                         24.7%
##################                                                        25.5%
##################                                                        26.3%
###################                                                       27.3%
####################                                                      28.1%
####################                                                      28.9%
#####################                                                     29.8%
######################                                                    30.7%
######################                                                    31.7%
#######################                                                   32.5%
- 
#######################                                                   33.3%
########################                                                  34.3%
#########################                                                 35.1%
#########################                                                 35.9%
##########################                                                36.8%
###########################                                               37.7%
###########################                                               38.5%
############################                                              39.5%
#############################                                             40.3%
#############################                                             41.1%
- 
##############################                                            42.0%
##############################                                            42.9%
###############################                                           43.7%
################################                                          44.6%
################################                                          45.4%
#################################                                         46.4%
#################################                                         47.2%
##################################                                        48.0%
###################################                                       48.8%
###################################                                       49.8%
####################################                                      50.6%
#####################################                                     51.4%
- 
#####################################                                     52.4%
######################################                                    53.2%
######################################                                    54.0%
#######################################                                   54.9%
########################################                                  55.8%
########################################                                  56.6%
#########################################                                 57.6%
##########################################                                58.4%
##########################################                                59.2%
###########################################                               60.2%
###########################################                               61.0%
- 
############################################                              61.8%
#############################################                             62.7%
#############################################                             63.6%
##############################################                            64.5%
##############################################                            65.3%
###############################################                           66.2%
################################################                          67.1%
################################################                          67.9%
#################################################                         68.7%
##################################################                        69.7%
##################################################                        70.5%
- 
###################################################                       71.3%
###################################################                       72.1%
####################################################                      73.1%
#####################################################                     73.9%
#####################################################                     74.7%
######################################################                    75.6%
#######################################################                   76.5%
#######################################################                   77.3%
########################################################                  78.2%
########################################################                  79.0%
#########################################################                 79.9%
- 
##########################################################                80.8%
##########################################################                81.7%
###########################################################               82.6%
############################################################              83.4%
############################################################              84.2%
#############################################################             85.2%
#############################################################             86.0%
##############################################################            86.8%
###############################################################           87.6%
###############################################################           88.6%
################################################################          89.4%
- 
################################################################          90.2%
#################################################################         91.1%
##################################################################        92.0%
##################################################################        92.8%
###################################################################       93.7%
####################################################################      94.5%
####################################################################      95.4%
#####################################################################     96.3%
#####################################################################     97.1%
######################################################################    97.9%
#######################################################################   98.9%
- 
#######################################################################   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.
2025-12-30 12:44.41 ---> using "c4a5cbb8c8dde4338ff77570752e8d5f708f92897674a3588aafba7dcb78c7f6" from cache

/: (run (shell "opam pin add -k version -yn raygui.1.6.0 1.6.0"))
raygui is now pinned to version 1.6.0
2025-12-30 12:44.42 ---> using "1aa1082e04ec686ccfefa84e975e657b47ccc4b821b5bd1ef2840565e279c2ee" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall raygui.1.6.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\" != 'raygui.1.6.0' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
raygui.1.6.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install csexp             1.5.2          [required by dune-configurator]
  - install ctypes            0.24.0         [required by raylib]
  - install dune              3.20.2         [required by raygui]
  - install dune-configurator 3.20.2         [required by raylib]
  - install integers          0.7.0          [required by raylib]
  - install patch             3.1.0          [required by raylib]
  - install raygui            1.6.0 (pinned)
  - install raylib            1.6.0          [required by raygui]
  - install stdlib-shims      0.3.0          [required by integers]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved patch.3.1.0  (cached)
-> retrieved raygui.1.6.0, raylib.1.6.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed csexp.1.5.2
-> installed integers.0.7.0
-> installed patch.3.1.0
-> installed dune-configurator.3.20.2
-> installed ctypes.0.24.0
-> installed raylib.1.6.0
-> installed raygui.1.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 12:44.42 ---> using "0e5f6b42a651e4921eeec0e512c4fa257fc0267c44f4c4380b7aa091627b22ba" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   raygui.1.6.0
-> installed raygui.1.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 12:44.52 ---> saved as "919d5a0b0a4660fc4a5b678421b5a8f1a72136ce00cdee2297347cb4474d7433"

/: (run (shell  "opam reinstall --with-test --verbose raygui.1.6.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\" != 'raygui.1.6.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 raygui 1.6.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [raygui: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "raygui" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/raygui.1.6.0)
-> compiled  raygui.1.6.0
-> removed   raygui.1.6.0
-> installed raygui.1.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 12:45.02 ---> saved as "fa771d3760440d76fccb6e61dd7e64cb22d2657b5a0a8a0dbec452818e7f1f82"
Job succeeded
2025-12-30 12:45.15: Job succeeded