- github
- ocaml
- opam-repository
- 14cf1d
- macos,macos-homebrew-ocaml-5.4-arm64,ppx_bin_there.0.1.12,tests
(not at the head of any monitored branch or PR)
2026-04-08 12:35.25: New job: test ppx_bin_there.0.1.12, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29677/head (14cf1d5d7d35bdd290559dd76592f432c2d3ef63)
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/29677/head" && git reset --hard 14cf1d5d
git fetch origin master
git merge --no-edit 6b534cc83dbfe7a87165d088a7003b5a0cd906f1
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_bin_there.0.1.12 0.1.12
RUN opam reinstall ppx_bin_there.0.1.12; \
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_bin_there.0.1.12' && 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_bin_there.0.1.12) || true
RUN opam reinstall --with-test --verbose ppx_bin_there.0.1.12; \
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_bin_there.0.1.12' && 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-08 12:35.25: Using cache hint "macos-homebrew-ocaml-5.4-ppx_bin_there.0.1.12-14cf1d5d7d35bdd290559dd76592f432c2d3ef63"
2026-04-08 12:35.25: 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_bin_there.0.1.12 0.1.12"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall ppx_bin_there.0.1.12;\
\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_bin_there.0.1.12' && 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_bin_there.0.1.12) || true"))
(run (shell "opam reinstall --with-test --verbose ppx_bin_there.0.1.12;\
\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_bin_there.0.1.12' && 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-08 12:35.25: Waiting for resource in pool OCluster
2026-04-08 12:35.25: Waiting for worker…
2026-04-08 12:38.27: Got resource from pool OCluster
Building on m1-worker-01
All commits already cached
Updating files: 67% (12593/18641)
Updating files: 68% (12676/18641)
Updating files: 69% (12863/18641)
Updating files: 70% (13049/18641)
Updating files: 71% (13236/18641)
Updating files: 72% (13422/18641)
Updating files: 73% (13608/18641)
Updating files: 74% (13795/18641)
Updating files: 75% (13981/18641)
Updating files: 76% (14168/18641)
Updating files: 77% (14354/18641)
Updating files: 78% (14540/18641)
Updating files: 79% (14727/18641)
Updating files: 80% (14913/18641)
Updating files: 81% (15100/18641)
Updating files: 82% (15286/18641)
Updating files: 83% (15473/18641)
Updating files: 84% (15659/18641)
Updating files: 85% (15845/18641)
Updating files: 86% (16032/18641)
Updating files: 87% (16218/18641)
Updating files: 88% (16405/18641)
Updating files: 89% (16591/18641)
Updating files: 90% (16777/18641)
Updating files: 91% (16964/18641)
Updating files: 92% (17150/18641)
Updating files: 93% (17337/18641)
Updating files: 94% (17523/18641)
Updating files: 95% (17709/18641)
Updating files: 96% (17896/18641)
Updating files: 97% (18082/18641)
Updating files: 98% (18269/18641)
Updating files: 99% (18455/18641)
Updating files: 100% (18641/18641)
Updating files: 100% (18641/18641), done.
HEAD is now at 6b534cc83d Merge pull request #29654 from astrada/gdfuse082
Updating 6b534cc83d..14cf1d5d7d
Fast-forward
packages/bin_there/bin_there.0.1.12/opam | 28 ++++++++++++++++++++++
packages/ppx_bin_there/ppx_bin_there.0.1.12/opam | 30 ++++++++++++++++++++++++
2 files changed, 58 insertions(+)
create mode 100644 packages/bin_there/bin_there.0.1.12/opam
create mode 100644 packages/ppx_bin_there/ppx_bin_there.0.1.12/opam
(from macos-homebrew-ocaml-5.4)
2026-04-08 12:38.29 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-04-08 12:38.29 ---> 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-08 12:38.30 ---> 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-08 12:38.30 ---> 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-08 12:38.30 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache
/: (copy (src .) (dst opam-repository/))
2026-04-08 12:38.31 ---> using "3cb9dba26eb39b2c3609fa684e5191f98b6bf6a7977e50d77b54134834d03dc5" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-04-08 12:38.31 ---> using "b9f9bec70fe04f3a4cdad7facc99de0d2e78fe5f26c5745f78c106b2f7b534d0" 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:f41c72b891c40623f9d5cd2135f58a1b8a5c014ae04149888289409316276c72
- #=#=#
- ##O#-#
0.5%
# 1.4%
# 2.1%
## 3.0%
## 3.8%
### 4.3%
### 4.7%
### 5.1%
#### 5.6%
#### 6.0%
-
#### 6.4%
#### 6.9%
##### 7.3%
##### 7.7%
##### 8.0%
###### 8.4%
###### 8.8%
###### 9.3%
###### 9.5%
####### 9.8%
####### 10.2%
-
####### 10.5%
####### 10.7%
####### 11.0%
######## 11.2%
######## 11.5%
######## 11.6%
######## 11.7%
######## 12.0%
######## 12.3%
######## 12.4%
-
######### 12.5%
######### 12.6%
######### 12.8%
######### 13.0%
######### 13.2%
######### 13.3%
######### 13.4%
######### 13.5%
######### 13.8%
########## 13.9%
########## 14.1%
-
########## 14.2%
########## 14.4%
########## 14.6%
########## 14.7%
########## 14.8%
########## 15.0%
########## 15.1%
########## 15.2%
########### 15.4%
########### 15.5%
-
########### 15.7%
########### 15.8%
########### 16.1%
########### 16.2%
########### 16.3%
########### 16.5%
########### 16.6%
############ 16.7%
############ 16.9%
############ 17.0%
############ 17.1%
-
############ 17.4%
############ 17.5%
############ 17.7%
############ 17.8%
############ 17.9%
############ 18.1%
############# 18.2%
############# 18.3%
############# 18.6%
############# 18.7%
-
############# 18.8%
############# 19.0%
############# 19.2%
############# 19.3%
############## 19.5%
############## 19.6%
############## 19.7%
############## 20.0%
############## 20.1%
############## 20.2%
############## 20.4%
-
############## 20.6%
############## 20.8%
############### 20.9%
############### 21.0%
############### 21.3%
############### 21.4%
############### 21.5%
############### 21.7%
############### 21.8%
############### 22.1%
-
############### 22.2%
################ 22.3%
################ 22.4%
################ 22.5%
################ 22.8%
################ 22.9%
################ 23.0%
################ 23.2%
################ 23.3%
################ 23.6%
################# 23.7%
-
################# 23.8%
################# 23.9%
################# 24.1%
################# 24.2%
################# 24.3%
################# 24.5%
################# 24.6%
################# 24.7%
################# 24.8%
################## 25.1%
################## 25.2%
-
################## 25.4%
################## 25.5%
################## 25.6%
################## 25.8%
################## 26.0%
################## 26.1%
################## 26.3%
################### 26.4%
################### 26.5%
################### 26.7%
################### 26.9%
-
################### 27.0%
################### 27.1%
################### 27.3%
################### 27.4%
################### 27.5%
################### 27.6%
#################### 27.9%
#################### 28.0%
#################### 28.2%
#################### 28.3%
#################### 28.4%
-
#################### 28.7%
#################### 28.8%
#################### 28.9%
#################### 29.1%
##################### 29.2%
##################### 29.3%
##################### 29.5%
##################### 29.6%
##################### 29.8%
##################### 30.0%
-
##################### 30.1%
##################### 30.2%
##################### 30.4%
##################### 30.5%
###################### 30.6%
###################### 30.9%
###################### 31.0%
###################### 31.1%
###################### 31.3%
###################### 31.4%
###################### 31.5%
-
###################### 31.6%
###################### 31.9%
####################### 32.0%
####################### 32.1%
####################### 32.2%
####################### 32.4%
####################### 32.6%
####################### 32.8%
####################### 32.9%
####################### 33.0%
####################### 33.2%
-
####################### 33.3%
######################## 33.4%
######################## 33.6%
######################## 33.7%
######################## 33.8%
######################## 34.0%
######################## 34.2%
######################## 34.3%
######################## 34.5%
######################## 34.6%
-
######################### 34.7%
######################### 34.9%
######################### 35.1%
######################### 35.2%
######################### 35.4%
######################### 35.5%
######################### 35.6%
######################### 35.8%
######################### 35.9%
######################### 36.0%
########################## 36.2%
########################## 36.3%
-
########################## 36.4%
########################## 36.7%
########################## 36.8%
########################## 36.9%
########################## 37.1%
########################## 37.2%
########################## 37.3%
########################## 37.4%
########################### 37.6%
########################### 37.8%
-
########################### 37.9%
########################### 38.0%
########################### 38.2%
########################### 38.3%
########################### 38.6%
########################### 38.7%
########################### 38.8%
############################ 38.9%
############################ 39.1%
############################ 39.2%
-
############################ 39.3%
############################ 39.6%
############################ 39.7%
############################ 39.9%
############################ 40.0%
############################ 40.1%
############################ 40.2%
############################# 40.4%
############################# 40.5%
############################# 40.8%
-
############################# 40.9%
############################# 41.0%
############################# 41.1%
############################# 41.3%
############################# 41.4%
############################# 41.5%
############################# 41.7%
############################## 41.8%
############################## 42.0%
############################## 42.2%
############################## 42.3%
-
############################## 42.5%
############################## 42.7%
############################## 42.8%
############################## 42.9%
############################## 43.0%
############################### 43.3%
############################### 43.4%
############################### 43.6%
############################### 43.7%
############################### 43.9%
-
############################### 44.1%
############################### 44.2%
############################### 44.3%
################################ 44.5%
################################ 44.6%
################################ 44.7%
################################ 44.8%
################################ 45.1%
################################ 45.2%
################################ 45.4%
################################ 45.5%
-
################################ 45.6%
################################ 45.7%
################################# 45.9%
################################# 46.1%
################################# 46.3%
################################# 46.4%
################################# 46.5%
################################# 46.7%
################################# 46.8%
################################# 47.0%
################################# 47.1%
-
################################## 47.3%
################################## 47.4%
################################## 47.6%
################################## 47.8%
################################## 47.9%
################################## 48.0%
################################## 48.2%
################################## 48.3%
################################## 48.4%
################################### 48.7%
-
################################### 48.8%
################################### 48.9%
################################### 49.1%
################################### 49.2%
################################### 49.3%
################################### 49.4%
################################### 49.7%
################################### 49.8%
################################### 50.0%
#################################### 50.1%
-
#################################### 50.4%
#################################### 50.5%
#################################### 50.6%
#################################### 50.7%
#################################### 50.9%
#################################### 51.0%
#################################### 51.1%
#################################### 51.3%
#################################### 51.4%
##################################### 51.5%
##################################### 51.6%
-
##################################### 51.9%
##################################### 52.0%
##################################### 52.2%
##################################### 52.3%
##################################### 52.4%
##################################### 52.5%
###################################### 52.8%
###################################### 52.9%
###################################### 53.1%
###################################### 53.2%
-
###################################### 53.4%
###################################### 53.5%
###################################### 53.7%
###################################### 53.8%
###################################### 53.9%
###################################### 54.1%
####################################### 54.2%
####################################### 54.4%
####################################### 54.6%
####################################### 54.7%
####################################### 54.8%
-
####################################### 55.0%
####################################### 55.1%
####################################### 55.2%
####################################### 55.3%
######################################## 55.6%
######################################## 55.7%
######################################## 55.9%
######################################## 56.1%
######################################## 56.2%
######################################## 56.4%
-
######################################## 56.6%
######################################## 56.8%
######################################### 57.0%
######################################### 57.2%
######################################### 57.4%
######################################### 57.5%
######################################### 57.8%
######################################### 58.0%
######################################### 58.1%
########################################## 58.4%
########################################## 58.5%
-
########################################## 58.7%
########################################## 58.9%
########################################## 59.0%
########################################## 59.2%
########################################## 59.3%
########################################## 59.4%
########################################## 59.7%
########################################### 59.8%
########################################### 59.9%
########################################### 60.1%
########################################### 60.3%
-
########################################### 60.5%
########################################### 60.6%
########################################### 60.9%
########################################### 61.0%
############################################ 61.2%
############################################ 61.5%
############################################ 61.6%
############################################ 61.9%
############################################ 62.1%
############################################ 62.3%
############################################ 62.5%
-
############################################# 62.6%
############################################# 62.9%
############################################# 63.0%
############################################# 63.1%
############################################# 63.3%
############################################# 63.5%
############################################# 63.6%
############################################# 63.8%
############################################## 63.9%
############################################## 64.0%
-
############################################## 64.2%
############################################## 64.3%
############################################## 64.4%
############################################## 64.7%
############################################## 64.8%
############################################## 64.9%
############################################## 65.1%
############################################## 65.2%
############################################### 65.3%
############################################### 65.5%
############################################### 65.6%
-
############################################### 65.8%
############################################### 66.0%
############################################### 66.1%
############################################### 66.2%
############################################### 66.5%
############################################### 66.6%
################################################ 66.7%
################################################ 66.9%
################################################ 67.0%
################################################ 67.1%
-
################################################ 67.3%
################################################ 67.5%
################################################ 67.6%
################################################ 67.8%
################################################ 67.9%
################################################ 68.0%
################################################# 68.2%
################################################# 68.3%
################################################# 68.4%
################################################# 68.6%
-
################################################# 68.8%
################################################# 68.9%
################################################# 69.0%
################################################# 69.2%
################################################# 69.3%
################################################# 69.4%
################################################## 69.5%
################################################## 69.7%
################################################## 69.9%
################################################## 70.1%
################################################## 70.2%
-
################################################## 70.3%
################################################## 70.4%
################################################## 70.6%
################################################## 70.7%
################################################### 71.0%
################################################### 71.1%
################################################### 71.2%
################################################### 71.4%
################################################### 71.5%
################################################### 71.6%
################################################### 71.7%
-
################################################### 71.9%
################################################### 72.1%
#################################################### 72.3%
#################################################### 72.4%
#################################################### 72.5%
#################################################### 72.6%
#################################################### 72.8%
#################################################### 72.9%
#################################################### 73.0%
#################################################### 73.2%
-
#################################################### 73.4%
#################################################### 73.5%
##################################################### 73.6%
##################################################### 73.8%
##################################################### 74.0%
##################################################### 74.1%
##################################################### 74.3%
##################################################### 74.4%
##################################################### 74.5%
##################################################### 74.7%
-
##################################################### 74.8%
##################################################### 74.9%
###################################################### 75.1%
###################################################### 75.3%
###################################################### 75.4%
###################################################### 75.6%
###################################################### 75.7%
###################################################### 75.8%
###################################################### 76.0%
###################################################### 76.1%
###################################################### 76.3%
-
####################################################### 76.5%
####################################################### 76.6%
####################################################### 76.7%
####################################################### 76.9%
####################################################### 77.0%
####################################################### 77.1%
####################################################### 77.2%
####################################################### 77.4%
####################################################### 77.5%
####################################################### 77.6%
-
######################################################## 77.9%
######################################################## 78.0%
######################################################## 78.1%
######################################################## 78.2%
######################################################## 78.5%
######################################################## 78.6%
######################################################## 78.8%
######################################################## 78.9%
######################################################## 79.0%
######################################################### 79.3%
-
######################################################### 79.4%
######################################################### 79.5%
######################################################### 79.7%
######################################################### 79.8%
######################################################### 79.9%
######################################################### 80.0%
######################################################### 80.2%
######################################################### 80.3%
########################################################## 80.6%
########################################################## 80.7%
-
########################################################## 80.8%
########################################################## 80.9%
########################################################## 81.1%
########################################################## 81.2%
########################################################## 81.3%
########################################################## 81.5%
########################################################## 81.6%
########################################################## 81.8%
########################################################### 82.0%
########################################################### 82.1%
-
########################################################### 82.2%
########################################################### 82.5%
########################################################### 82.6%
########################################################### 82.7%
########################################################### 82.8%
########################################################### 83.0%
########################################################### 83.1%
########################################################### 83.2%
############################################################ 83.4%
############################################################ 83.6%
############################################################ 83.7%
-
############################################################ 83.9%
############################################################ 84.0%
############################################################ 84.1%
############################################################ 84.3%
############################################################ 84.4%
############################################################ 84.5%
############################################################ 84.7%
############################################################# 84.8%
############################################################# 84.9%
############################################################# 85.1%
-
############################################################# 85.2%
############################################################# 85.5%
############################################################# 85.6%
############################################################# 85.7%
############################################################# 85.8%
############################################################# 86.0%
############################################################## 86.2%
############################################################## 86.4%
############################################################## 86.5%
############################################################## 86.6%
-
############################################################## 86.7%
############################################################## 86.9%
############################################################## 87.0%
############################################################## 87.1%
############################################################## 87.3%
############################################################### 87.5%
############################################################### 87.6%
############################################################### 87.8%
############################################################### 87.9%
############################################################### 88.0%
############################################################### 88.2%
-
############################################################### 88.3%
############################################################### 88.5%
############################################################### 88.7%
############################################################### 88.8%
################################################################ 88.9%
################################################################ 89.0%
################################################################ 89.2%
################################################################ 89.4%
################################################################ 89.5%
################################################################ 89.7%
-
################################################################ 89.8%
################################################################ 89.9%
################################################################ 90.1%
################################################################ 90.2%
################################################################# 90.3%
################################################################# 90.6%
################################################################# 90.7%
################################################################# 90.8%
################################################################# 91.0%
################################################################# 91.1%
################################################################# 91.2%
-
################################################################# 91.3%
################################################################# 91.5%
################################################################# 91.6%
################################################################## 91.7%
################################################################## 91.9%
################################################################## 92.1%
################################################################## 92.2%
################################################################## 92.4%
################################################################## 92.5%
################################################################## 92.6%
-
################################################################## 92.8%
################################################################## 92.9%
################################################################### 93.2%
################################################################### 93.3%
################################################################### 93.4%
################################################################### 93.5%
################################################################### 93.6%
################################################################### 93.9%
################################################################### 94.0%
################################################################### 94.1%
-
################################################################### 94.3%
################################################################### 94.4%
#################################################################### 94.5%
#################################################################### 94.7%
#################################################################### 94.9%
#################################################################### 95.0%
#################################################################### 95.2%
#################################################################### 95.3%
#################################################################### 95.4%
#################################################################### 95.6%
#################################################################### 95.7%
-
#################################################################### 95.8%
##################################################################### 96.0%
##################################################################### 96.1%
##################################################################### 96.2%
##################################################################### 96.5%
##################################################################### 96.6%
##################################################################### 96.7%
##################################################################### 96.9%
##################################################################### 97.0%
##################################################################### 97.1%
###################################################################### 97.2%
-
###################################################################### 97.4%
###################################################################### 97.6%
###################################################################### 97.8%
###################################################################### 97.9%
###################################################################### 98.0%
###################################################################### 98.1%
###################################################################### 98.2%
###################################################################### 98.4%
###################################################################### 98.5%
####################################################################### 98.6%
-
####################################################################### 98.9%
####################################################################### 99.0%
####################################################################### 99.1%
####################################################################### 99.3%
####################################################################### 99.4%
####################################################################### 99.5%
####################################################################### 99.8%
####################################################################### 99.9%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.2_1.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-08 12:38.31 ---> using "a76b8315c8d8d097f52472529561a096d40055f633983fa9325c1608237f940f" from cache
/: (run (shell "opam pin add -k version -yn ppx_bin_there.0.1.12 0.1.12"))
ppx_bin_there is now pinned to version 0.1.12
2026-04-08 12:38.31 ---> using "9e619094b5b0e3b70b33fc1da1b8717bfd1fcabc3e0f9250263f85300ab7bf11" 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_bin_there.0.1.12;\
\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_bin_there.0.1.12' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ppx_bin_there.0.1.12 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install bin_there 0.1.12 [required by ppx_bin_there]
- install dune 3.22.1 [required by ppx_bin_there]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ppx_bin_there 0.1.12 (pinned)
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.38.0 [required by ppx_bin_there]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bin_there.0.1.12 (cached)
-> retrieved dune.3.22.1 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ppx_bin_there.0.1.12 (https://gitlab.com/api/v4/projects/81089450/packages/generic/ppx_bin_there/0.1.12/ppx_bin_there-0.1.12.tar.gz)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.22.1
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed bin_there.0.1.12
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppxlib.0.38.0
-> installed ppx_bin_there.0.1.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-08 12:38.31 ---> using "1664f14ee20a50790408830e9bd2c0e836706701f4060cda55b7a06965bdbbca" from cache
/: (run (network host)
(shell "(opam reinstall --with-test ppx_bin_there.0.1.12) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ppx_bin_there 0.1.12 (pinned)
=== install 10 packages
- install alcotest 1.9.1 [required by ppx_bin_there]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install re 1.14.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
-> retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved cmdliner.2.1.0 (https://erratique.ch/software/cmdliner/releases/cmdliner-2.1.0.tbz)
-> retrieved fmt.0.11.0 (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
-> retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ocamlbuild.0.16.1 (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz)
-> retrieved ocamlfind.1.9.8 (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> retrieved re.1.14.0 (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> retrieved topkg.1.1.1 (https://erratique.ch/software/topkg/releases/topkg-1.1.1.tbz)
-> installed cmdliner.2.1.0
-> retrieved uutf.1.0.4 (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> removed ppx_bin_there.0.1.12
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed ppx_bin_there.0.1.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-08 12:38.52 ---> saved as "7949c3f9d137adc96ef786f7d02e46d0bc795b2083d96bda4977bfea112c5a45"
/: (run (shell "opam reinstall --with-test --verbose ppx_bin_there.0.1.12;\
\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_bin_there.0.1.12' && 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_bin_there 0.1.12 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ppx_bin_there: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_bin_there" "-j" "7" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/ppx_bin_there.0.1.12)
Processing 2/4: [ppx_bin_there: dune runtest]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "ppx_bin_there" "-j" "7" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/ppx_bin_there.0.1.12)
- (cd _build/default/test && ./test_ppx_bin_there.exe)
- Testing `ppx_bin_there'.
- This run has ID `ZHX16IK9'.
-
- [OK] derived 0 point.
- [OK] derived 1 point no header.
- [OK] derived 2 color.
- [OK] derived 3 color tags.
- [OK] derived 4 shape.
- [OK] derived 5 shape wire.
- [OK] derived 6 singleton.
- [OK] derived 7 singleton no header.
- [OK] derived 8 unit_like.
- [OK] derived 9 unit_like no header.
- [OK] derived 10 my_int.
- [OK] derived 11 box.
- [OK] derived 12 pair.
- [OK] derived 13 polvar.
- [OK] derived 14 polvar hash header.
- [OK] derived 15 sharing.
- [OK] derived 16 bp alias.
- [OK] derived 17 module sig+impl.
- [OK] derived 18 mutual rec types.
- [OK] derived 19 mutual rec modules.
- [OK] derived 20 type alias.
- [OK] derived 21 parametric alias.
- [OK] derived 22 inline record single.
- [OK] derived 23 inline record multi.
- [OK] derived 24 polvar record field.
- [OK] derived 25 polvar inheritance.
- [OK] derived 26 polvar inheritance field.
- [OK] derived 27 recursive tree.
- [OK] derived 28 single ctor parametric.
- [OK] derived 29 parametric sig+impl.
- [OK] derived 30 parametric tuple alias.
- [OK] derived 31 concrete triple alias.
- [OK] derived 32 bracket alias.
- [OK] derived 33 mutually recursive bracket.
- [OK] derived 34 tuple arities 4-9.
- [OK] derived 35 tok bracket.
- [OK] derived 36 lazy_t.
- [OK] derived 37 Lazy.t.
- [OK] derived 38 unknown tag variant.
- [OK] derived 39 unknown tag polvar.
- [OK] derived 40 qualified alias.
- [OK] derived 41 phantom alias.
- [OK] derived 42 renamed type variable.
-
- Full test results in `~/.opam/5.4.0/.opam-switch/build/ppx_bin_there.0.1.12/_build/default/test/_build/_tests/ppx_bin_there'.
- Test Successful in 0.003s. 43 tests run.
-> compiled ppx_bin_there.0.1.12
-> removed ppx_bin_there.0.1.12
-> installed ppx_bin_there.0.1.12
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-08 12:38.57 ---> saved as "4fd0a48e6a6e1a5d84831a986f215ad1fd3f789b7e794cdfb07b1d25fa02aa09"
Job succeeded
2026-04-08 12:39.05: Job succeeded