(not at the head of any monitored branch or PR)
2026-04-30 16:22.15: New job: test ppx_deriving_jsonschema.0.0.7, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29819/head (34d3b72424802d46cb5a85dace3093ac6dd31d75)
                              on macos-homebrew-ocaml-5.4/arm64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29819/head" && git reset --hard 34d3b724
git fetch origin master
git merge --no-edit 6eba819fc9cf11948f2ec0ccb35df7352e130ee2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-5.4
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ppx_deriving_jsonschema.0.0.7 0.0.7
RUN opam reinstall ppx_deriving_jsonschema.0.0.7; \
    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_deriving_jsonschema.0.0.7' && 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_deriving_jsonschema.0.0.7) || true
RUN opam reinstall --with-test --verbose ppx_deriving_jsonschema.0.0.7; \
    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_deriving_jsonschema.0.0.7' && 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-04-30 16:22.15: Using cache hint "macos-homebrew-ocaml-5.4-ppx_deriving_jsonschema.0.0.7-34d3b72424802d46cb5a85dace3093ac6dd31d75"
2026-04-30 16:22.15: Using OBuilder spec:
((from macos-homebrew-ocaml-5.4)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url -k local --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ppx_deriving_jsonschema.0.0.7 0.0.7"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall ppx_deriving_jsonschema.0.0.7;\
             \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_deriving_jsonschema.0.0.7' && 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_deriving_jsonschema.0.0.7) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_deriving_jsonschema.0.0.7;\
             \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_deriving_jsonschema.0.0.7' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-30 16:22.15: Waiting for resource in pool OCluster
2026-04-30 16:22.16: Waiting for worker…
2026-04-30 16:26.12: Got resource from pool OCluster
Building on m1-worker-02
All commits already cached
Updating files:  66% (12530/18873)
Updating files:  67% (12645/18873)
Updating files:  68% (12834/18873)
Updating files:  69% (13023/18873)
Updating files:  70% (13212/18873)
Updating files:  71% (13400/18873)
Updating files:  72% (13589/18873)
Updating files:  73% (13778/18873)
Updating files:  74% (13967/18873)
Updating files:  75% (14155/18873)
Updating files:  76% (14344/18873)
Updating files:  77% (14533/18873)
Updating files:  78% (14721/18873)
Updating files:  79% (14910/18873)
Updating files:  80% (15099/18873)
Updating files:  81% (15288/18873)
Updating files:  82% (15476/18873)
Updating files:  83% (15665/18873)
Updating files:  84% (15854/18873)
Updating files:  85% (16043/18873)
Updating files:  86% (16231/18873)
Updating files:  87% (16420/18873)
Updating files:  88% (16609/18873)
Updating files:  89% (16797/18873)
Updating files:  90% (16986/18873)
Updating files:  91% (17175/18873)
Updating files:  92% (17364/18873)
Updating files:  93% (17552/18873)
Updating files:  94% (17741/18873)
Updating files:  95% (17930/18873)
Updating files:  96% (18119/18873)
Updating files:  97% (18307/18873)
Updating files:  98% (18496/18873)
Updating files:  99% (18685/18873)
Updating files: 100% (18873/18873)
Updating files: 100% (18873/18873), done.
HEAD is now at 6eba819fc9 Merge pull request #29818 from Vlam9988/opam-publish-ip2proxy.3.2.0
Updating 6eba819fc9..34d3b72424
Fast-forward
 .../ppx_deriving_jsonschema.0.0.7/opam             | 57 ++++++++++++++++++++++
 1 file changed, 57 insertions(+)
 create mode 100644 packages/ppx_deriving_jsonschema/ppx_deriving_jsonschema.0.0.7/opam

(from macos-homebrew-ocaml-5.4)
2026-04-30 16:26.14 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache

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

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-04-30 16:26.14 ---> using "7aa34524ca0a69b4a488c30909f7495a04a243f9066091b1dfe73b446b0dfcd3" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-04-30 16:26.15 ---> using "91dcaa513ca3161d91620d0583acdea5310cd52ccab1dfbdd183600da37afdb2" from cache

/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=arm64 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                 7
# repositories         1 (version-controlled)
# pinned               0
# current-switch       5.4.0
# invariant            ["ocaml-base-compiler" {= "5.4.0"} | "ocaml-system" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /Users/mac1000/.opam/5.4.0/lib/ocaml/stublibs:/Users/mac1000/.opam/5.4.0/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-04-30 16:26.15 ---> using "cea1bfc0b1cda73d964aa2fc69cc828a6e6d8edd86f991754707e8b004a3cb09" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-04-30 16:26.15 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache

/: (copy (src .) (dst opam-repository/))
2026-04-30 16:26.16 ---> using "46dd95becf27f1e200e2bd97d30a4273ff8c60149ff451de6f4594004980e76b" from cache

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

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

2026-04-30 16:26.16 ---> using "c2e050068543bf533665168be178877d1aa91637f28d846f6690d98b558f7a15" from cache

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

                                                                           0.1%
                                                                           0.3%
                                                                           0.7%
                                                                           0.8%
#                                                                          1.6%
- 
#                                                                          1.7%
#                                                                          2.1%
#                                                                          2.4%
#                                                                          2.6%
##                                                                         2.9%
##                                                                         3.0%
##                                                                         3.3%
##                                                                         3.5%
##                                                                         3.6%
##                                                                         3.9%
- 
##                                                                         4.2%
###                                                                        4.3%
###                                                                        4.5%
###                                                                        4.8%
###                                                                        5.0%
###                                                                        5.2%
###                                                                        5.4%
###                                                                        5.5%
####                                                                       5.8%
####                                                                       6.1%
####                                                                       6.2%
- 
####                                                                       6.4%
####                                                                       6.6%
####                                                                       6.8%
#####                                                                      7.1%
#####                                                                      7.2%
#####                                                                      7.5%
#####                                                                      7.6%
#####                                                                      7.9%
#####                                                                      8.1%
######                                                                     8.4%
- 
######                                                                     8.5%
######                                                                     8.8%
######                                                                     9.0%
######                                                                     9.2%
######                                                                     9.4%
######                                                                     9.6%
#######                                                                    9.8%
#######                                                                   10.0%
#######                                                                   10.3%
#######                                                                   10.5%
#######                                                                   10.7%
- 
#######                                                                   10.9%
#######                                                                   11.1%
########                                                                  11.3%
########                                                                  11.6%
########                                                                  11.7%
########                                                                  12.0%
########                                                                  12.2%
########                                                                  12.3%
#########                                                                 12.6%
#########                                                                 12.9%
#########                                                                 13.0%
- 
#########                                                                 13.3%
#########                                                                 13.4%
#########                                                                 13.6%
#########                                                                 13.8%
##########                                                                14.0%
##########                                                                14.2%
##########                                                                14.5%
##########                                                                14.6%
##########                                                                14.9%
##########                                                                15.0%
##########                                                                15.3%
- 
###########                                                               15.5%
###########                                                               15.8%
###########                                                               16.2%
###########                                                               16.4%
############                                                              16.7%
############                                                              17.0%
############                                                              17.1%
############                                                              17.3%
############                                                              17.5%
############                                                              17.7%
############                                                              18.0%
- 
#############                                                             18.2%
#############                                                             18.4%
#############                                                             18.6%
#############                                                             18.9%
#############                                                             19.2%
#############                                                             19.3%
##############                                                            19.5%
##############                                                            19.8%
##############                                                            19.9%
- 
##############                                                            20.2%
##############                                                            20.4%
##############                                                            20.7%
##############                                                            20.8%
###############                                                           21.1%
###############                                                           21.2%
###############                                                           21.4%
###############                                                           21.7%
###############                                                           21.8%
###############                                                           22.1%
###############                                                           22.2%
- 
################                                                          22.5%
################                                                          22.7%
################                                                          23.0%
################                                                          23.1%
################                                                          23.4%
#################                                                         23.6%
#################                                                         23.8%
#################                                                         24.0%
#################                                                         24.3%
#################                                                         24.4%
#################                                                         24.7%
- 
#################                                                         24.9%
##################                                                        25.1%
##################                                                        25.3%
##################                                                        25.5%
##################                                                        25.8%
##################                                                        25.9%
##################                                                        26.2%
###################                                                       26.4%
###################                                                       26.6%
###################                                                       26.8%
###################                                                       27.0%
- 
###################                                                       27.2%
###################                                                       27.5%
###################                                                       27.6%
####################                                                      27.9%
####################                                                      28.0%
####################                                                      28.2%
####################                                                      28.5%
####################                                                      28.8%
####################                                                      28.9%
####################                                                      29.1%
- 
#####################                                                     29.4%
#####################                                                     29.5%
#####################                                                     29.8%
#####################                                                     30.0%
#####################                                                     30.3%
#####################                                                     30.4%
######################                                                    30.7%
######################                                                    30.8%
######################                                                    31.0%
######################                                                    31.3%
######################                                                    31.4%
- 
######################                                                    31.7%
#######################                                                   31.9%
#######################                                                   32.1%
#######################                                                   32.3%
#######################                                                   32.5%
#######################                                                   32.7%
#######################                                                   33.0%
#######################                                                   33.1%
########################                                                  33.4%
########################                                                  33.5%
########################                                                  33.8%
- 
########################                                                  34.0%
########################                                                  34.1%
########################                                                  34.4%
########################                                                  34.5%
#########################                                                 34.8%
#########################                                                 35.0%
#########################                                                 35.3%
#########################                                                 35.4%
#########################                                                 35.7%
- 
#########################                                                 35.9%
#########################                                                 36.0%
##########################                                                36.4%
##########################                                                36.6%
##########################                                                36.8%
##########################                                                36.9%
##########################                                                37.2%
##########################                                                37.3%
###########################                                               37.6%
###########################                                               37.8%
###########################                                               38.0%
- 
###########################                                               38.2%
###########################                                               38.4%
###########################                                               38.6%
###########################                                               38.9%
############################                                              39.0%
############################                                              39.3%
############################                                              39.4%
############################                                              39.7%
############################                                              39.9%
############################                                              40.0%
- 
############################                                              40.3%
#############################                                             40.5%
#############################                                             40.7%
#############################                                             40.9%
#############################                                             41.0%
#############################                                             41.3%
#############################                                             41.6%
##############################                                            41.7%
##############################                                            41.9%
##############################                                            42.1%
##############################                                            42.3%
- 
##############################                                            42.6%
##############################                                            42.7%
###############################                                           43.1%
###############################                                           43.2%
###############################                                           43.5%
###############################                                           43.6%
###############################                                           43.9%
###############################                                           44.1%
###############################                                           44.3%
################################                                          44.5%
- 
################################                                          44.7%
################################                                          44.9%
################################                                          45.1%
################################                                          45.4%
################################                                          45.5%
################################                                          45.8%
#################################                                         46.0%
#################################                                         46.2%
#################################                                         46.4%
#################################                                         46.7%
#################################                                         46.8%
- 
#################################                                         47.1%
#################################                                         47.2%
##################################                                        47.5%
##################################                                        47.7%
##################################                                        47.8%
##################################                                        48.1%
##################################                                        48.4%
##################################                                        48.5%
###################################                                       48.7%
###################################                                       48.9%
###################################                                       49.1%
- 
###################################                                       49.4%
###################################                                       49.6%
###################################                                       49.7%
###################################                                       50.0%
####################################                                      50.3%
####################################                                      50.4%
####################################                                      50.6%
####################################                                      50.9%
####################################                                      51.0%
####################################                                      51.3%
#####################################                                     51.6%
- 
#####################################                                     51.8%
#####################################                                     52.1%
#####################################                                     52.4%
#####################################                                     52.6%
######################################                                    52.9%
######################################                                    53.3%
######################################                                    53.5%
######################################                                    53.9%
#######################################                                   54.4%
#######################################                                   54.8%
#######################################                                   55.2%
- 
########################################                                  55.6%
########################################                                  55.9%
########################################                                  56.2%
########################################                                  56.4%
########################################                                  56.7%
#########################################                                 57.1%
#########################################                                 57.4%
#########################################                                 57.6%
#########################################                                 57.9%
#########################################                                 58.1%
##########################################                                58.5%
- 
##########################################                                58.8%
##########################################                                58.9%
##########################################                                59.2%
##########################################                                59.3%
##########################################                                59.5%
###########################################                               59.8%
###########################################                               60.1%
###########################################                               60.2%
###########################################                               60.4%
###########################################                               60.7%
- 
###########################################                               60.8%
###########################################                               61.1%
############################################                              61.3%
############################################                              61.4%
############################################                              61.7%
############################################                              62.0%
############################################                              62.1%
############################################                              62.3%
#############################################                             62.6%
#############################################                             62.7%
- 
#############################################                             63.0%
#############################################                             63.1%
#############################################                             63.4%
#############################################                             63.6%
#############################################                             63.8%
##############################################                            64.0%
##############################################                            64.3%
##############################################                            64.4%
##############################################                            64.7%
##############################################                            64.8%
##############################################                            65.1%
- 
##############################################                            65.3%
###############################################                           65.5%
###############################################                           65.7%
###############################################                           65.9%
###############################################                           66.2%
###############################################                           66.3%
###############################################                           66.6%
################################################                          66.8%
################################################                          67.0%
################################################                          67.2%
################################################                          67.4%
- 
################################################                          67.6%
################################################                          67.8%
################################################                          68.0%
#################################################                         68.1%
#################################################                         68.4%
#################################################                         68.7%
#################################################                         68.8%
#################################################                         69.1%
#################################################                         69.3%
#################################################                         69.4%
##################################################                        69.7%
- 
##################################################                        70.0%
##################################################                        70.1%
##################################################                        70.3%
##################################################                        70.5%
##################################################                        70.7%
###################################################                       71.0%
###################################################                       71.1%
###################################################                       71.4%
###################################################                       71.6%
###################################################                       71.7%
- 
###################################################                       72.0%
###################################################                       72.1%
####################################################                      72.4%
####################################################                      72.6%
####################################################                      72.8%
####################################################                      73.0%
####################################################                      73.3%
####################################################                      73.4%
#####################################################                     73.7%
#####################################################                     73.9%
#####################################################                     74.1%
- 
#####################################################                     74.3%
#####################################################                     74.6%
#####################################################                     74.8%
#####################################################                     75.0%
######################################################                    75.2%
######################################################                    75.3%
######################################################                    75.6%
######################################################                    75.9%
######################################################                    76.0%
######################################################                    76.2%
#######################################################                   76.5%
- 
#######################################################                   76.7%
#######################################################                   76.9%
#######################################################                   77.1%
#######################################################                   77.4%
#######################################################                   77.5%
#######################################################                   77.8%
########################################################                  78.0%
########################################################                  78.1%
########################################################                  78.4%
########################################################                  78.5%
########################################################                  78.8%
- 
########################################################                  79.0%
#########################################################                 79.2%
#########################################################                 79.4%
#########################################################                 79.7%
#########################################################                 79.8%
#########################################################                 80.1%
#########################################################                 80.2%
#########################################################                 80.5%
##########################################################                80.7%
##########################################################                80.8%
- 
##########################################################                81.1%
##########################################################                81.3%
##########################################################                81.5%
##########################################################                81.7%
###########################################################               82.0%
###########################################################               82.2%
###########################################################               82.4%
###########################################################               82.6%
###########################################################               82.8%
###########################################################               83.0%
###########################################################               83.3%
- 
############################################################              83.4%
############################################################              83.7%
############################################################              83.8%
############################################################              84.0%
############################################################              84.3%
############################################################              84.4%
############################################################              84.7%
#############################################################             84.9%
#############################################################             85.1%
#############################################################             85.3%
#############################################################             85.6%
- 
#############################################################             85.7%
#############################################################             86.0%
##############################################################            86.2%
##############################################################            86.4%
##############################################################            86.6%
##############################################################            86.9%
##############################################################            87.1%
##############################################################            87.2%
##############################################################            87.5%
###############################################################           87.7%
###############################################################           87.9%
- 
###############################################################           88.1%
###############################################################           88.4%
###############################################################           88.7%
###############################################################           88.8%
################################################################          89.0%
################################################################          89.2%
################################################################          89.4%
################################################################          89.7%
################################################################          89.8%
################################################################          90.1%
- 
#################################################################         90.3%
#################################################################         90.5%
#################################################################         90.7%
#################################################################         91.0%
#################################################################         91.1%
#################################################################         91.4%
#################################################################         91.6%
##################################################################        91.7%
##################################################################        92.0%
##################################################################        92.2%
##################################################################        92.4%
- 
##################################################################        92.6%
##################################################################        92.7%
##################################################################        93.0%
###################################################################       93.3%
###################################################################       93.5%
###################################################################       93.8%
###################################################################       93.9%
###################################################################       94.2%
###################################################################       94.4%
####################################################################      94.6%
####################################################################      94.8%
- 
####################################################################      94.9%
####################################################################      95.2%
####################################################################      95.5%
####################################################################      95.6%
#####################################################################     95.8%
#####################################################################     96.0%
#####################################################################     96.2%
#####################################################################     96.5%
#####################################################################     96.7%
#####################################################################     97.0%
- 
#####################################################################     97.1%
######################################################################    97.4%
######################################################################    97.6%
######################################################################    97.7%
######################################################################    98.0%
######################################################################    98.3%
######################################################################    98.4%
#######################################################################   98.6%
#######################################################################   98.8%
#######################################################################   99.0%
#######################################################################   99.2%
- 
#######################################################################   99.4%
#######################################################################   99.7%
#######################################################################   99.8%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.3.arm64_big_sur.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-04-30 16:26.16 ---> using "5c1969b1bed48470d16280191589a9b0f6dd67b45dfe4a22125fe7ce497dc822" from cache

/: (run (shell "opam pin add -k version -yn ppx_deriving_jsonschema.0.0.7 0.0.7"))
ppx_deriving_jsonschema is now pinned to version 0.0.7
2026-04-30 16:26.16 ---> using "1e119c813caf73e0bafde3cc2d92386ae69bb48e81695b1799e0c24724410517" 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_deriving_jsonschema.0.0.7;\
               \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_deriving_jsonschema.0.0.7' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
ppx_deriving_jsonschema.0.0.7 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 49 packages
  - install angstrom                0.16.1         [required by uri]
  - install base-bytes              base           [required by ocplib-endian]
  - install bigstringaf             0.10.0         [required by angstrom]
  - install cmdliner                2.1.1          [required by melange]
  - install conf-gmp                5              [required by zarith]
  - install conf-pkg-config         4              [required by zarith]
  - install cppo                    1.8.0          [required by melange]
  - install csexp                   1.5.2          [required by dune-configurator]
  - install ctypes                  0.24.0         [required by quickjs]
  - install dune                    3.22.2         [required by ppx_deriving_jsonschema]
  - install dune-build-info         3.22.2         [required by melange]
  - install dune-configurator       3.22.2         [required by lwt]
  - install fix                     20250919       [required by reason]
  - install integers                0.7.0          [required by server-reason-react]
  - install lwt                     6.1.2          [required by server-reason-react]
  - install lwt_ppx                 6.1.0          [required by server-reason-react]
  - install melange                 6.0.1-54       [required by ppx_deriving_jsonschema]
  - install melange-fetch           0.2.0          [required by server-reason-react]
  - install melange-json            2.0.0          [required by server-reason-react]
  - install melange-json-native     2.0.0          [required by server-reason-react]
  - install melange-webapi          0.22.0         [required by server-reason-react]
  - install menhir                  20260209       [required by melange]
  - install menhirCST               20260209       [required by menhir]
  - install menhirGLR               20260209       [required by menhir]
  - install menhirLib               20260209       [required by menhir]
  - install menhirSdk               20260209       [required by menhir]
  - install merlin-extend           0.6.2          [required by reason]
  - install ocaml-compiler-libs     v0.17.0        [required by ppxlib]
  - install ocaml-syntax-shims      1.0.0          [required by angstrom]
  - install ocamlbuild              0.16.1         [required by uucp, uutf]
  - install ocamlfind               1.9.8          [required by uutf, uucp, zarith]
  - install ocplib-endian           1.2            [required by lwt]
  - install ppx_derivers            1.2.1          [required by ppxlib]
  - install ppx_deriving_jsonschema 0.0.7 (pinned)
  - install ppxlib                  0.38.0         [required by ppx_deriving_jsonschema]
  - install quickjs                 0.4.2          [required by server-reason-react]
  - install reason                  3.17.3         [required by server-reason-react]
  - install reason-react            0.17.0         [required by server-reason-react]
  - install reason-react-ppx        0.17.0         [required by reason-react]
  - install server-reason-react     0.4.1          [required by ppx_deriving_jsonschema]
  - install sexplib0                v0.17.0        [required by ppxlib]
  - install stdlib-shims            0.3.0          [required by ppxlib, integers]
  - install stringext               1.6.0          [required by uri]
  - install topkg                   1.1.1          [required by uucp, uutf]
  - install uri                     4.4.0          [required by server-reason-react]
  - install uucp                    17.0.0         [required by server-reason-react]
  - install uutf                    1.0.4          [required by server-reason-react]
  - install yojson                  3.0.0          [required by server-reason-react]
  - install zarith                  1.14           [required by server-reason-react]

The following system packages will first need to be installed:
    gmp pkgconf

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /opt/homebrew/bin/brew "install" "gmp" "pkgconf"
- ==> Fetching downloads for: gmp and pkgconf
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle gmp (6.3.0)
- ✔︎ Bottle pkgconf (2.5.1)
- ==> Pouring gmp--6.3.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/gmp/6.3.0: 22 files, 3.4MB
- ==> Running `brew cleanup gmp`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> Pouring pkgconf--2.5.1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/pkgconf/2.5.1: 28 files, 531.2KB
- ==> Running `brew cleanup pkgconf`...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cmdliner.2.1.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.5
-> retrieved ctypes.0.24.0  (cached)
-> retrieved dune.3.22.2, dune-build-info.3.22.2, dune-configurator.3.22.2  (cached)
-> retrieved fix.20250919  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved lwt.6.1.2  (cached)
-> retrieved lwt_ppx.6.1.0  (cached)
-> installed cmdliner.2.1.1
-> retrieved melange.6.0.1-54  (cached)
-> retrieved melange-fetch.0.2.0  (cached)
-> retrieved melange-json.2.0.0, melange-json-native.2.0.0  (cached)
-> retrieved melange-webapi.0.22.0  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved merlin-extend.0.6.2  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving_jsonschema.0.0.7  (https://github.com/ahrefs/ppx_deriving_jsonschema/releases/download/0.0.7/ppx_deriving_jsonschema-0.0.7.tbz)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved quickjs.0.4.2  (cached)
-> retrieved reason.3.17.3  (cached)
-> retrieved reason-react.0.17.0, reason-react-ppx.0.17.0  (cached)
-> retrieved server-reason-react.0.4.1  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved uucp.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed menhirCST.20260209
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed fix.20250919
-> installed dune-build-info.3.22.2
-> installed cppo.1.8.0
-> installed ppx_derivers.1.2.1
-> installed menhirSdk.20260209
-> installed ocaml-syntax-shims.1.0.0
-> installed merlin-extend.0.6.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.22.2
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed bigstringaf.0.10.0
-> installed integers.0.7.0
-> installed angstrom.0.16.1
-> installed yojson.3.0.0
-> installed uri.4.4.0
-> installed lwt.6.1.2
-> installed ctypes.0.24.0
-> installed menhir.20260209
-> installed quickjs.0.4.2
-> installed uucp.17.0.0
-> installed ppxlib.0.38.0
-> installed lwt_ppx.6.1.0
-> installed melange-json-native.2.0.0
-> installed reason.3.17.3
-> installed reason-react-ppx.0.17.0
-> installed melange.6.0.1-54
-> installed melange-fetch.0.2.0
-> installed reason-react.0.17.0
-> installed melange-json.2.0.0
-> installed melange-webapi.0.22.0
-> installed server-reason-react.0.4.1
-> installed ppx_deriving_jsonschema.0.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 16:26.16 ---> using "68cb181b08b7a829658137b31240ff86fbbf9d232fc1656e8df4292744fd4daa" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test ppx_deriving_jsonschema.0.0.7) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ppx_deriving_jsonschema 0.0.7 (pinned)
=== install 2 packages
  - install   conf-npm                1              [required by ppx_deriving_jsonschema]
  - install   conf-python-3           9.0.0          [required by ppx_deriving_jsonschema]

The following system packages will first need to be installed:
    node python@3.9

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run brew to install them (may need root/sudo access)
  2. Display the recommended brew command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /opt/homebrew/bin/brew "install" "node" "python@3.9"
- ==> Fetching downloads for: node and python@3.9
- Warning: python@3.9 has been deprecated because it is deprecated upstream! It will be disabled on 2026-10-15.
- ✔︎ Bottle Manifest node (25.9.0_2)
- ✔︎ Bottle Manifest python@3.9 (3.9.25)
- ✔︎ Bottle Manifest fmt (12.1.0)
- ✔︎ Bottle Manifest ada-url (3.4.4)
- ✔︎ Bottle Manifest brotli (1.2.0)
- ✔︎ Bottle Manifest c-ares (1.34.6)
- ✔︎ Bottle Manifest hdrhistogram_c (0.11.9)
- ✔︎ Bottle Manifest icu4c@78 (78.3)
- ✔︎ Bottle Manifest libnghttp2 (1.69.0)
- ✔︎ Bottle Manifest libnghttp3 (1.15.0)
- ✔︎ Bottle Manifest ca-certificates (2026-03-19)
- ✔︎ Bottle Manifest openssl@3 (3.6.2)
- ✔︎ Bottle Manifest libngtcp2 (1.22.1)
- ✔︎ Bottle Manifest libuv (1.52.1)
- ✔︎ Bottle Manifest llhttp (9.3.1)
- ✔︎ Bottle Manifest simdutf (9.0.0)
- ✔︎ Bottle Manifest merve (1.2.2_1)
- ✔︎ Bottle Manifest nbytes (0.1.4)
- ✔︎ Bottle llhttp (9.3.1)
- ✔︎ Bottle hdrhistogram_c (0.11.9)
- ✔︎ Bottle merve (1.2.2_1)
- ✔︎ Bottle Manifest simdjson (4.6.3)
- ✔︎ Bottle nbytes (0.1.4)
- ✔︎ Bottle Manifest readline (8.3.3)
- ✔︎ Bottle Manifest sqlite (3.53.0)
- ✔︎ Bottle ca-certificates (2026-03-19)
- ✔︎ Bottle Manifest uvwasi (0.0.23)
- ✔︎ Bottle Manifest lz4 (1.10.0)
- ✔︎ Bottle libnghttp2 (1.69.0)
- ✔︎ Bottle Manifest xz (5.8.3)
- ✔︎ Bottle libnghttp3 (1.15.0)
- ✔︎ Bottle uvwasi (0.0.23)
- ✔︎ Bottle Manifest zstd (1.5.7_1)
- ✔︎ Bottle fmt (12.1.0)
- ✔︎ Bottle libuv (1.52.1)
- ✔︎ Bottle Manifest gdbm (1.26)
- ✔︎ Bottle c-ares (1.34.6)
- ✔︎ Bottle Manifest mpdecimal (4.0.1)
- ✔︎ Bottle libngtcp2 (1.22.1)
- ✔︎ Bottle ada-url (3.4.4)
- ✔︎ Bottle simdutf (9.0.0)
- ✔︎ Bottle lz4 (1.10.0)
- ✔︎ Bottle mpdecimal (4.0.1)
- ✔︎ Bottle gdbm (1.26)
- ✔︎ Bottle brotli (1.2.0)
- ✔︎ Bottle readline (8.3.3)
- ✔︎ Bottle xz (5.8.3)
- ✔︎ Bottle zstd (1.5.7_1)
- ✔︎ Bottle simdjson (4.6.3)
- ✔︎ Bottle sqlite (3.53.0)
- ✔︎ Bottle openssl@3 (3.6.2)
- ✔︎ Bottle python@3.9 (3.9.25)
- ✔︎ Bottle node (25.9.0_2)
- ✔︎ Bottle icu4c@78 (78.3)
- ==> Installing dependencies for node: fmt, ada-url, brotli, c-ares, hdrhistogram_c, icu4c@78, libnghttp2, libnghttp3, ca-certificates, openssl@3, libngtcp2, libuv, llhttp, simdutf, merve, nbytes, simdjson, readline, sqlite, uvwasi, lz4, xz and zstd
- ==> Installing node dependency: fmt
- ==> Pouring fmt--12.1.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/fmt/12.1.0: 29 files, 1MB
- ==> Installing node dependency: ada-url
- ==> Pouring ada-url--3.4.4.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/ada-url/3.4.4: 55 files, 1.3MB
- ==> Installing node dependency: brotli
- ==> Pouring brotli--1.2.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/brotli/1.2.0: 33 files, 1.9MB
- ==> Installing node dependency: c-ares
- ==> Pouring c-ares--1.34.6.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/c-ares/1.34.6: 176 files, 1MB
- ==> Installing node dependency: hdrhistogram_c
- ==> Pouring hdrhistogram_c--0.11.9.arm64_sequoia.bottle.1.tar.gz
- 🍺  /opt/homebrew/Cellar/hdrhistogram_c/0.11.9: 22 files, 171.7KB
- ==> Installing node dependency: icu4c@78
- ==> Pouring icu4c@78--78.3.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/icu4c@78/78.3: 279 files, 87.9MB
- ==> Installing node dependency: libnghttp2
- ==> Pouring libnghttp2--1.69.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/libnghttp2/1.69.0: 14 files, 849.5KB
- ==> Installing node dependency: libnghttp3
- ==> Pouring libnghttp3--1.15.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/libnghttp3/1.15.0: 20 files, 603KB
- ==> Installing node dependency: ca-certificates
- ==> Pouring ca-certificates--2026-03-19.all.bottle.tar.gz
- ==> Regenerating CA certificate bundle from keychain, this may take a while...
- 🍺  /opt/homebrew/Cellar/ca-certificates/2026-03-19: 4 files, 237KB
- ==> Installing node dependency: openssl@3
- ==> Pouring openssl@3--3.6.2.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/openssl@3/3.6.2: 7,627 files, 37.5MB
- ==> Installing node dependency: libngtcp2
- ==> Pouring libngtcp2--1.22.1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/libngtcp2/1.22.1: 21 files, 1.3MB
- ==> Installing node dependency: libuv
- ==> Pouring libuv--1.52.1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/libuv/1.52.1: 35 files, 1.3MB
- ==> Installing node dependency: llhttp
- ==> Pouring llhttp--9.3.1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/llhttp/9.3.1: 13 files, 159.6KB
- ==> Installing node dependency: simdutf
- ==> Pouring simdutf--9.0.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/simdutf/9.0.0: 65 files, 2MB
- ==> Installing node dependency: merve
- ==> Pouring merve--1.2.2_1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/merve/1.2.2_1: 19 files, 153.5KB
- ==> Installing node dependency: nbytes
- ==> Pouring nbytes--0.1.4.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/nbytes/0.1.4: 9 files, 89.9KB
- ==> Installing node dependency: simdjson
- ==> Pouring simdjson--4.6.3.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/simdjson/4.6.3: 19 files, 8.0MB
- ==> Installing node dependency: readline
- ==> Pouring readline--8.3.3.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/readline/8.3.3: 56 files, 2.7MB
- ==> Installing node dependency: sqlite
- ==> Pouring sqlite--3.53.0.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/sqlite/3.53.0: 13 files, 5.3MB
- ==> Installing node dependency: uvwasi
- ==> Pouring uvwasi--0.0.23.arm64_sequoia.bottle.1.tar.gz
- 🍺  /opt/homebrew/Cellar/uvwasi/0.0.23: 15 files, 288.4KB
- ==> Installing node dependency: lz4
- ==> Pouring lz4--1.10.0.arm64_sequoia.bottle.1.tar.gz
- 🍺  /opt/homebrew/Cellar/lz4/1.10.0: 24 files, 729.2KB
- ==> Installing node dependency: xz
- ==> Pouring xz--5.8.3.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/xz/5.8.3: 96 files, 2.7MB
- ==> Installing node dependency: zstd
- ==> Pouring zstd--1.5.7_1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/zstd/1.5.7_1: 32 files, 2.3MB
- ==> Installing node
- ==> Pouring node--25.9.0_2.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/node/25.9.0_2: 1,889 files, 78.4MB
- ==> Running `brew cleanup node`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> Installing dependencies for python@3.9: gdbm and mpdecimal
- ==> Installing python@3.9 dependency: gdbm
- ==> Pouring gdbm--1.26.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/gdbm/1.26: 25 files, 1.1MB
- ==> Installing python@3.9 dependency: mpdecimal
- ==> Pouring mpdecimal--4.0.1.arm64_sequoia.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/mpdecimal/4.0.1: 22 files, 659.6KB
- ==> Installing python@3.9
- ==> Pouring python@3.9--3.9.25.arm64_sequoia.bottle.1.tar.gz
- ==> /opt/homebrew/Cellar/python@3.9/3.9.25/bin/python3.9 -Im ensurepip
- ==> /opt/homebrew/Cellar/python@3.9/3.9.25/bin/python3.9 -Im pip install -v --no-index --upgrade --isolated --target=/opt/homebrew/lib/python3.9/site-packages /opt/homebrew/Cellar/python@3.9/3.9.25/Frameworks/Python.framework/Versions/3.9/lib/python3.9/ensurepip/_bundled/setuptools-80.9.0-py3-none-any.whl /opt/homebrew/Cellar/python@3.9/3.9.25/Frameworks/Python.framework/Versions/3.9/lib/python3.9/ensurepip/_bundled/pip-25.3-py3-none-any.whl /opt/homebrew/Cellar/python@3.9/3.9.25/libexec/wheel-0.45.1-py3-none-any.whl
- ==> Caveats
- Python is installed as
-   /opt/homebrew/bin/python3.9
- 
- Unversioned and major-versioned symlinks `python`, `python3`, `python-config`, `python3-config`, `pip`, `pip3`, etc. pointing to
- `python3.9`, `python3.9-config`, `pip3.9` etc., respectively, are installed into
-   /opt/homebrew/opt/python@3.9/libexec/bin
- 
- You can install Python packages with
-   pip3.9 install <package>
- They will install into the site-package directory
-   /opt/homebrew/lib/python3.9/site-packages
- 
- `idle3.9` requires tkinter, which is available separately:
-   brew install python-tk@3.9
- 
- If you do not need a specific version of Python, and always want Homebrew's `python3` in your PATH:
-   brew install python3
- 
- See: https://docs.brew.sh/Homebrew-and-Python
- ==> Summary
- 🍺  /opt/homebrew/Cellar/python@3.9/3.9.25: 3,039 files, 59.4MB
- ==> Running `brew cleanup python@3.9`...
- ==> Caveats
- Bash completion has been installed to:
-   /opt/homebrew/etc/bash_completion.d
- ==> python@3.9
- Python is installed as
-   /opt/homebrew/bin/python3.9
- 
- Unversioned and major-versioned symlinks `python`, `python3`, `python-config`, `python3-config`, `pip`, `pip3`, etc. pointing to
- `python3.9`, `python3.9-config`, `pip3.9` etc., respectively, are installed into
-   /opt/homebrew/opt/python@3.9/libexec/bin
- 
- You can install Python packages with
-   pip3.9 install <package>
- They will install into the site-package directory
-   /opt/homebrew/lib/python3.9/site-packages
- 
- `idle3.9` requires tkinter, which is available separately:
-   brew install python-tk@3.9
- 
- If you do not need a specific version of Python, and always want Homebrew's `python3` in your PATH:
-   brew install python3
- 
- See: https://docs.brew.sh/Homebrew-and-Python

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-npm.1
-> retrieved conf-python-3.9.0.0  (https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-python-3/test.py)
-> removed   ppx_deriving_jsonschema.0.0.7
-> installed conf-python-3.9.0.0
-> installed ppx_deriving_jsonschema.0.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 16:28.50 ---> saved as "de4be3f4e907fd5616a0b25e8ae5fefdd3c59b7095ee0926cec08cac3b833236"

/: (run (shell  "opam reinstall --with-test --verbose ppx_deriving_jsonschema.0.0.7;\
               \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_deriving_jsonschema.0.0.7' && 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_deriving_jsonschema 0.0.7 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ppx_deriving_jsonschema: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_deriving_jsonschema" "-j" "7" "@install" "@runtest" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/ppx_deriving_jsonschema.0.0.7)
- (cd _build/.sandbox/ef3ce84211c79b80e13d780033ddbc9b/default && /Users/mac1000/.opam/5.4.0/bin/melc -w -40 -g -bin-annot -bin-annot-occurrences -I test/melange/.output.mobjs/melange -I /Users/mac1000/.opam/5.4.0/lib/melange-json/melange -I /Users/mac1000/.opam/5.4.0/lib/melange/js/melange -I /Users/mac1000/.opam/5.4.0/lib/melange/melange -I /Users/mac1000/.opam/5.4.0/lib/server-reason-react/runtime/melange -I runtime/melange/.ppx_deriving_jsonschema_runtime_melange.objs/melange --bs-stop-after-cmj --bs-package-output test/melange --bs-module-name cases -no-alias-deps -open Melange -o test/melange/.output.mobjs/melange/melange__Cases.cmj -c -impl test/melange/cases.pp.ml)
- File "test/melange/cases.ml", line 129, characters 2-20:
- 129 |   c : node_c option;
-         ^^^^^^^^^^^^^^^^^^
- Warning 30 [duplicate-definitions]: the label c is defined in both types node_a and node_b.
- 
- File "test/melange/cases.ml", line 132, characters 2-20:
- 132 |   a : node_a option;
-         ^^^^^^^^^^^^^^^^^^
- Warning 30 [duplicate-definitions]: the label a is defined in both types node_b and node_c.
- 
- File "test/melange/cases.ml", line 133, characters 2-20:
- 133 |   b : node_b option;
-         ^^^^^^^^^^^^^^^^^^
- Warning 30 [duplicate-definitions]: the label b is defined in both types node_a and node_c.
-> compiled  ppx_deriving_jsonschema.0.0.7
-> removed   ppx_deriving_jsonschema.0.0.7
-> installed ppx_deriving_jsonschema.0.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 16:28.58 ---> saved as "149e702a4ba714a9af5c47bd6275f3f2c2240761af99e629cc5aad373b187c09"
Job succeeded
2026-04-30 16:29.07: Job succeeded