- github
- ocaml
- opam-repository
- 48fdb7
- macos,macos-homebrew-ocaml-4.14-amd64,irmin-tezos.3.11.0,tests
(not at the head of any monitored branch or PR)
2025-06-22 15:08.56: New job: test irmin-tezos.3.11.0, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28048/head (48fdb7b54bcc9118691798729e3e6d75987a782e)
on macos-homebrew-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28048/head" && git reset --hard 48fdb7b5
git fetch origin master
git merge --no-edit 2cd8e78594a8943245b8061dbdabd39e7ca492fb
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-2.3 ~/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 irmin-tezos.3.11.0 3.11.0
RUN opam reinstall irmin-tezos.3.11.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'irmin-tezos.3.11.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test irmin-tezos.3.11.0) || true
RUN opam reinstall --with-test --verbose irmin-tezos.3.11.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'irmin-tezos.3.11.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-06-22 15:08.56: Using cache hint "macos-homebrew-ocaml-4.14-irmin-tezos.3.11.0-48fdb7b54bcc9118691798729e3e6d75987a782e"
2025-06-22 15:08.56: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
(user (uid 1000) (gid 1000))
(run (shell "ln -f ~/local/bin/opam-2.3 ~/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 irmin-tezos.3.11.0 3.11.0"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall irmin-tezos.3.11.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'irmin-tezos.3.11.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test irmin-tezos.3.11.0) || true"))
(run (shell "opam reinstall --with-test --verbose irmin-tezos.3.11.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'irmin-tezos.3.11.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-06-22 15:08.56: Waiting for resource in pool OCluster
2025-06-22 15:08.58: Waiting for workerโฆ
2025-06-22 16:54.55: Got resource from pool OCluster
Building on i7-worker-04
All commits already cached
Updating files: 35% (6348/17661)
Updating files: 36% (6358/17661)
Updating files: 37% (6535/17661)
Updating files: 38% (6712/17661)
Updating files: 39% (6888/17661)
Updating files: 40% (7065/17661)
Updating files: 41% (7242/17661)
Updating files: 42% (7418/17661)
Updating files: 43% (7595/17661)
Updating files: 44% (7771/17661)
Updating files: 45% (7948/17661)
Updating files: 46% (8125/17661)
Updating files: 47% (8301/17661)
Updating files: 48% (8478/17661)
Updating files: 49% (8654/17661)
Updating files: 50% (8831/17661)
Updating files: 51% (9008/17661)
Updating files: 52% (9184/17661)
Updating files: 53% (9361/17661)
Updating files: 54% (9537/17661)
Updating files: 55% (9714/17661)
Updating files: 56% (9891/17661)
Updating files: 57% (10067/17661)
Updating files: 58% (10244/17661)
Updating files: 59% (10420/17661)
Updating files: 60% (10597/17661)
Updating files: 61% (10774/17661)
Updating files: 61% (10939/17661)
Updating files: 62% (10950/17661)
Updating files: 63% (11127/17661)
Updating files: 64% (11304/17661)
Updating files: 65% (11480/17661)
Updating files: 66% (11657/17661)
Updating files: 67% (11833/17661)
Updating files: 68% (12010/17661)
Updating files: 69% (12187/17661)
Updating files: 70% (12363/17661)
Updating files: 71% (12540/17661)
Updating files: 72% (12716/17661)
Updating files: 73% (12893/17661)
Updating files: 74% (13070/17661)
Updating files: 75% (13246/17661)
Updating files: 76% (13423/17661)
Updating files: 77% (13599/17661)
Updating files: 78% (13776/17661)
Updating files: 79% (13953/17661)
Updating files: 80% (14129/17661)
Updating files: 81% (14306/17661)
Updating files: 82% (14483/17661)
Updating files: 83% (14659/17661)
Updating files: 84% (14836/17661)
Updating files: 85% (15012/17661)
Updating files: 86% (15189/17661)
Updating files: 87% (15366/17661)
Updating files: 88% (15542/17661)
Updating files: 89% (15719/17661)
Updating files: 90% (15895/17661)
Updating files: 91% (16072/17661)
Updating files: 92% (16249/17661)
Updating files: 93% (16425/17661)
Updating files: 94% (16602/17661)
Updating files: 94% (16655/17661)
Updating files: 95% (16778/17661)
Updating files: 96% (16955/17661)
Updating files: 97% (17132/17661)
Updating files: 98% (17308/17661)
Updating files: 99% (17485/17661)
Updating files: 100% (17661/17661)
Updating files: 100% (17661/17661), done.
HEAD is now at 2cd8e78594 Merge pull request #28046 from valoran-M/master
Merge made by the 'ort' strategy.
packages/irmin-bench/irmin-bench.3.11.0/opam | 60 +++++++++++++++++++
packages/irmin-chunk/irmin-chunk.3.11.0/opam | 36 +++++++++++
packages/irmin-cli/irmin-cli.3.11.0/opam | 70 ++++++++++++++++++++++
packages/irmin-client/irmin-client.3.11.0/opam | 43 +++++++++++++
.../irmin-containers/irmin-containers.3.11.0/opam | 43 +++++++++++++
packages/irmin-fs/irmin-fs.3.11.0/opam | 38 ++++++++++++
packages/irmin-git/irmin-git.3.11.0/opam | 54 +++++++++++++++++
packages/irmin-graphql/irmin-graphql.3.11.0/opam | 46 ++++++++++++++
.../irmin-mirage-git/irmin-mirage-git.3.11.0/opam | 37 ++++++++++++
.../irmin-mirage-graphql.3.11.0/opam | 36 +++++++++++
packages/irmin-mirage/irmin-mirage.3.11.0/opam | 33 ++++++++++
.../irmin-pack-tools/irmin-pack-tools.3.11.0/opam | 50 ++++++++++++++++
packages/irmin-pack/irmin-pack.3.11.0/opam | 45 ++++++++++++++
packages/irmin-server/irmin-server.3.11.0/opam | 46 ++++++++++++++
packages/irmin-test/irmin-test.3.11.0/opam | 51 ++++++++++++++++
packages/irmin-tezos/irmin-tezos.3.11.0/opam | 39 ++++++++++++
packages/irmin/irmin.3.11.0/opam | 65 ++++++++++++++++++++
packages/libirmin/libirmin.3.11.0/opam | 35 +++++++++++
packages/ppx_irmin/ppx_irmin.3.11.0/opam | 35 +++++++++++
19 files changed, 862 insertions(+)
create mode 100644 packages/irmin-bench/irmin-bench.3.11.0/opam
create mode 100644 packages/irmin-chunk/irmin-chunk.3.11.0/opam
create mode 100644 packages/irmin-cli/irmin-cli.3.11.0/opam
create mode 100644 packages/irmin-client/irmin-client.3.11.0/opam
create mode 100644 packages/irmin-containers/irmin-containers.3.11.0/opam
create mode 100644 packages/irmin-fs/irmin-fs.3.11.0/opam
create mode 100644 packages/irmin-git/irmin-git.3.11.0/opam
create mode 100644 packages/irmin-graphql/irmin-graphql.3.11.0/opam
create mode 100644 packages/irmin-mirage-git/irmin-mirage-git.3.11.0/opam
create mode 100644 packages/irmin-mirage-graphql/irmin-mirage-graphql.3.11.0/opam
create mode 100644 packages/irmin-mirage/irmin-mirage.3.11.0/opam
create mode 100644 packages/irmin-pack-tools/irmin-pack-tools.3.11.0/opam
create mode 100644 packages/irmin-pack/irmin-pack.3.11.0/opam
create mode 100644 packages/irmin-server/irmin-server.3.11.0/opam
create mode 100644 packages/irmin-test/irmin-test.3.11.0/opam
create mode 100644 packages/irmin-tezos/irmin-tezos.3.11.0/opam
create mode 100644 packages/irmin/irmin.3.11.0/opam
create mode 100644 packages/libirmin/libirmin.3.11.0/opam
create mode 100644 packages/ppx_irmin/ppx_irmin.3.11.0/opam
(from macos-homebrew-ocaml-4.14)
2025-06-22 16:55.01 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam"))
2025-06-22 16:55.01 ---> using "133faf6477bb7d579f4909c1f9ea81a7b33e8728123c32f7ba0f1532c2d3d002" from cache
/: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2025-06-22 16:55.01 ---> using "ef3d87c6398c801c10cf5a6d93f8ba7a7aca8d0c6db9fa9fa49b79f0f9e94e2e" from cache
/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.3.0
# self-upgrade no
# system arch=x86_64 os=macos os-distribution=homebrew os-version=15.5
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 11
# repositories 1 (version-controlled)
# pinned 0
# current-switch 4.14.2
# invariant ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-06-22 16:55.02 ---> using "ac863649c8b1638b67aad7aed774fd3a3fe5d0b0e5eb7991274454937cf65d01" from cache
/: (env OPAMDOWNLOADJOBS 1)
/: (env OPAMERRLOGLEN 0)
/: (env OPAMPRECISETRACKING 1)
/: (env CI true)
/: (env OPAM_REPO_CI true)
/: (run (shell "rm -rf opam-repository/"))
2025-06-22 16:55.02 ---> using "5431cbcc658e0d18f1e86a42b7295d7baef82e74db465ab87f8a15ba49194dde" from cache
/: (copy (src .) (dst opam-repository/))
2025-06-22 16:55.04 ---> using "1bcb7053ba9eb472a4b568e3419930f726d641ff9eb80fb4f5cf369181f065c4" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-06-22 16:55.05 ---> using "8add32e243d5e07c47a64fcae572de1fcd96b696300fbb7aea29de34faa595eb" from cache
/: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/portable-ruby/portable-ruby/blobs/sha256:45cea656cc5b5f5b53a9d4fc9e6c88d3a29b3aac862d1a55f1c70df534df5636
- #=#=#
0.1%
0.4%
0.8%
1.0%
# 1.6%
# 1.8%
# 2.1%
-
# 2.5%
# 2.7%
## 3.0%
## 3.3%
## 3.5%
## 3.7%
## 4.0%
## 4.1%
### 4.4%
### 4.6%
-
### 4.8%
### 5.1%
### 5.3%
### 5.6%
#### 5.8%
#### 6.0%
#### 6.3%
#### 6.4%
#### 6.7%
##### 7.0%
##### 7.1%
-
##### 7.4%
##### 7.7%
##### 8.0%
##### 8.1%
###### 8.4%
###### 8.5%
###### 8.8%
###### 9.1%
###### 9.2%
###### 9.5%
####### 9.8%
-
####### 9.9%
####### 10.2%
####### 10.3%
####### 10.6%
####### 10.9%
######## 11.2%
######## 11.6%
######## 11.9%
######## 12.0%
######## 12.4%
######### 12.7%
-
######### 13.0%
######### 13.3%
######### 13.4%
######### 13.7%
########## 14.0%
########## 14.1%
########## 14.4%
########## 14.7%
########## 14.8%
########## 15.1%
-
########### 15.4%
########### 15.7%
########### 15.8%
########### 16.1%
########### 16.2%
########### 16.5%
############ 16.8%
############ 16.9%
############ 17.2%
############ 17.3%
############ 17.6%
-
############ 17.9%
############# 18.1%
############# 18.3%
############# 18.6%
############# 18.9%
############# 19.2%
############## 19.6%
############## 19.9%
############## 20.0%
############## 20.3%
-
############## 20.5%
############## 20.7%
############### 21.0%
############### 21.4%
############### 21.7%
############### 22.0%
################ 22.3%
################ 22.5%
################ 22.7%
################ 23.0%
-
################ 23.3%
################ 23.4%
################# 23.7%
################# 24.0%
################# 24.1%
################# 24.4%
################# 24.7%
################# 24.8%
################## 25.1%
################## 25.2%
-
################## 25.5%
################## 25.8%
################## 26.1%
################## 26.3%
################### 26.5%
################### 26.7%
################### 26.9%
################### 27.2%
################### 27.5%
################### 27.7%
#################### 28.0%
-
#################### 28.3%
#################### 28.6%
#################### 28.9%
##################### 29.3%
##################### 29.6%
##################### 29.7%
##################### 30.0%
##################### 30.3%
##################### 30.4%
###################### 30.7%
###################### 30.8%
-
###################### 31.1%
###################### 31.4%
###################### 31.7%
###################### 31.8%
####################### 32.1%
####################### 32.2%
####################### 32.5%
####################### 32.8%
####################### 32.9%
####################### 33.2%
######################## 33.4%
-
######################## 33.6%
######################## 33.9%
######################## 34.2%
######################## 34.3%
######################## 34.6%
######################### 34.8%
######################### 35.0%
######################### 35.3%
######################### 35.5%
######################### 35.8%
######################### 35.9%
-
########################## 36.2%
########################## 36.3%
########################## 36.6%
########################## 36.9%
########################## 37.0%
########################## 37.3%
########################## 37.5%
########################### 37.7%
########################### 38.0%
########################### 38.3%
########################### 38.4%
-
########################### 38.7%
############################ 39.1%
############################ 39.4%
############################ 39.7%
############################ 40.0%
############################ 40.2%
############################# 40.5%
############################# 40.7%
############################# 41.0%
############################# 41.2%
-
############################# 41.4%
############################# 41.7%
############################## 41.8%
############################## 42.1%
############################## 42.4%
############################## 42.5%
############################## 42.8%
############################## 42.9%
############################### 43.2%
############################### 43.5%
############################### 43.6%
-
############################### 43.9%
############################### 44.2%
############################### 44.3%
################################ 44.6%
################################ 44.9%
################################ 45.2%
################################ 45.4%
################################ 45.7%
################################# 46.0%
################################# 46.3%
-
################################# 46.6%
################################# 46.7%
################################# 47.0%
################################## 47.4%
################################## 47.6%
################################## 47.8%
################################## 48.2%
################################## 48.5%
################################### 48.8%
################################### 48.9%
################################### 49.2%
################################### 49.5%
-
################################### 49.6%
################################### 49.9%
#################################### 50.2%
#################################### 50.3%
#################################### 50.6%
#################################### 50.9%
#################################### 51.1%
#################################### 51.3%
##################################### 51.6%
##################################### 51.8%
-
##################################### 52.2%
##################################### 52.5%
##################################### 52.7%
###################################### 53.0%
###################################### 53.3%
###################################### 53.6%
###################################### 53.8%
###################################### 54.1%
####################################### 54.3%
####################################### 54.5%
####################################### 55.0%
-
####################################### 55.3%
####################################### 55.4%
######################################## 55.9%
######################################## 56.1%
######################################## 56.4%
######################################## 56.7%
######################################### 57.1%
######################################### 57.4%
######################################### 57.6%
######################################### 57.8%
-
######################################### 58.0%
######################################### 58.3%
########################################## 58.5%
########################################## 58.8%
########################################## 59.1%
########################################## 59.4%
########################################## 59.7%
########################################### 60.0%
########################################### 60.2%
########################################### 60.5%
########################################### 60.8%
-
########################################### 60.9%
############################################ 61.2%
############################################ 61.3%
############################################ 61.6%
############################################ 61.9%
############################################ 62.0%
############################################ 62.3%
############################################# 62.6%
############################################# 62.7%
############################################# 63.0%
############################################# 63.3%
-
############################################# 63.5%
############################################# 63.7%
############################################## 64.0%
############################################## 64.2%
############################################## 64.4%
############################################## 64.7%
############################################## 65.0%
############################################## 65.1%
############################################### 65.4%
############################################### 65.7%
-
############################################### 65.8%
############################################### 66.1%
############################################### 66.2%
############################################### 66.5%
################################################ 66.8%
################################################ 66.9%
################################################ 67.2%
################################################ 67.5%
################################################ 67.7%
################################################ 67.9%
################################################# 68.2%
-
################################################# 68.4%
################################################# 68.6%
################################################# 68.9%
################################################# 69.1%
################################################# 69.3%
################################################## 69.6%
################################################## 69.8%
################################################## 70.1%
################################################## 70.3%
################################################## 70.4%
-
################################################## 70.7%
################################################### 71.0%
################################################### 71.1%
################################################### 71.4%
################################################### 71.6%
################################################### 71.9%
################################################### 72.1%
#################################################### 72.3%
#################################################### 72.6%
#################################################### 72.8%
#################################################### 73.0%
-
#################################################### 73.3%
#################################################### 73.4%
##################################################### 73.7%
##################################################### 74.0%
##################################################### 74.1%
##################################################### 74.4%
##################################################### 74.5%
##################################################### 74.8%
##################################################### 75.0%
###################################################### 75.2%
-
###################################################### 75.5%
###################################################### 75.8%
###################################################### 76.0%
###################################################### 76.2%
###################################################### 76.4%
####################################################### 76.7%
####################################################### 76.9%
####################################################### 77.2%
####################################################### 77.3%
####################################################### 77.6%
####################################################### 77.8%
-
######################################################## 78.0%
######################################################## 78.3%
######################################################## 78.6%
######################################################## 78.7%
######################################################## 79.0%
######################################################### 79.3%
######################################################### 79.5%
######################################################### 79.7%
######################################################### 79.9%
######################################################### 80.2%
######################################################### 80.4%
-
########################################################## 80.6%
########################################################## 80.9%
########################################################## 81.0%
########################################################## 81.3%
########################################################## 81.6%
########################################################## 81.7%
########################################################### 82.0%
########################################################### 82.2%
########################################################### 82.4%
########################################################### 82.7%
-
########################################################### 82.9%
########################################################### 83.1%
############################################################ 83.4%
############################################################ 83.7%
############################################################ 83.8%
############################################################ 84.1%
############################################################ 84.2%
############################################################ 84.5%
############################################################# 84.8%
############################################################# 84.9%
############################################################# 85.2%
-
############################################################# 85.4%
############################################################# 85.6%
############################################################# 85.8%
############################################################# 86.1%
############################################################## 86.3%
############################################################## 86.5%
############################################################## 86.8%
############################################################## 87.0%
############################################################## 87.2%
############################################################## 87.4%
############################################################### 87.7%
-
############################################################### 87.9%
############################################################### 88.1%
############################################################### 88.4%
############################################################### 88.7%
############################################################### 88.8%
################################################################ 89.1%
################################################################ 89.3%
################################################################ 89.6%
################################################################ 89.8%
-
################################################################ 90.0%
################################################################ 90.3%
################################################################# 90.4%
################################################################# 90.7%
################################################################# 91.0%
################################################################# 91.3%
################################################################# 91.4%
################################################################## 91.7%
################################################################## 92.0%
################################################################## 92.1%
################################################################## 92.4%
-
################################################################## 92.5%
################################################################## 92.8%
################################################################### 93.1%
################################################################### 93.2%
################################################################### 93.5%
################################################################### 93.8%
################################################################### 94.0%
################################################################### 94.2%
#################################################################### 94.5%
#################################################################### 94.7%
-
#################################################################### 94.9%
#################################################################### 95.2%
#################################################################### 95.3%
#################################################################### 95.6%
#################################################################### 95.7%
##################################################################### 96.0%
##################################################################### 96.3%
##################################################################### 96.4%
##################################################################### 96.7%
##################################################################### 97.0%
##################################################################### 97.2%
-
###################################################################### 97.4%
###################################################################### 97.7%
###################################################################### 97.9%
###################################################################### 98.1%
###################################################################### 98.4%
###################################################################### 98.6%
####################################################################### 98.9%
####################################################################### 99.1%
####################################################################### 99.2%
####################################################################### 99.5%
####################################################################### 99.8%
-
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.4.el_capitan.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
- https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
-
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
- https://github.com/Homebrew/brew#donations
-
- Already up-to-date.
2025-06-22 16:55.05 ---> using "d15d496229e5be92ed28a16855233747d0e48c9e4450cddb899d822bc1736639" from cache
/: (run (shell "opam pin add -k version -yn irmin-tezos.3.11.0 3.11.0"))
irmin-tezos is now pinned to version 3.11.0
2025-06-22 16:55.05 ---> using "343644f6aa1d47092fa7e1eee7b453b48947ff85d24fa16bfbee64d522a20f47" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall irmin-tezos.3.11.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'irmin-tezos.3.11.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
irmin-tezos.3.11.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 57 packages
- install angstrom 0.16.1 [required by uri]
- install astring 0.8.5 [required by irmin]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.1 [required by repr]
- install bheap 2.0.0 [required by irmin]
- install bigstringaf 0.10.0 [required by irmin]
- install checkseum 0.5.2 [required by irmin-pack]
- install cmdliner 1.3.0 [required by irmin-tezos]
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install digestif 1.3.0 [required by irmin-tezos]
- install dune 3.19.1 [required by irmin-tezos]
- install dune-configurator 3.19.1 [required by bigstringaf, checkseum]
- install either 1.0.0 [required by repr]
- install eqaf 0.10 [required by digestif]
- install fmt 0.10.0 [required by irmin-tezos]
- install index 1.6.2 [required by irmin-pack]
- install irmin 3.11.0 [required by irmin-tezos]
- install irmin-pack 3.11.0 [required by irmin-tezos]
- install irmin-tezos 3.11.0 (pinned)
- install jsonm 1.0.2 [required by irmin]
- install logs 0.7.0 [required by irmin, irmin-pack]
- install lru 0.3.1 [required by index]
- install lwt 5.9.1 [required by irmin, irmin-pack]
- install mtime 2.1.0 [required by irmin, irmin-pack]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlbuild 0.16.1 [required by fmt]
- install ocamlfind 1.9.8 [required by fmt]
- install ocamlgraph 2.2.0 [required by irmin]
- install ocplib-endian 1.2 [required by lwt]
- install optint 0.3.0 [required by irmin-pack]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by ppx_repr]
- install ppx_irmin 3.11.0 [required by irmin-tezos]
- install ppx_repr 0.7.0 [required by ppx_irmin, index]
- install ppxlib 0.35.0 [required by ppx_irmin]
- install progress 0.4.0 [required by index]
- install psq 0.2.1 [required by lru]
- install repr 0.7.0 [required by irmin]
- install rusage 1.0.0 [required by irmin-pack]
- install semaphore-compat 1.0.2 [required by index]
- install seq base [required by psq]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by index]
- install stringext 1.6.0 [required by uri]
- install terminal 0.4.0 [required by progress]
- install tezos-base58 1.0.0 [required by irmin-tezos]
- install topkg 1.0.8 [required by fmt]
- install uri 4.4.0 [required by irmin]
- install uucp 16.0.0 [required by progress]
- install uutf 1.0.4 [required by irmin]
- install vector 1.0.0 [required by progress]
- install yojson 3.0.0 [required by irmin-tezos]
- install zarith 1.14 [required by tezos-base58]
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
+ /usr/local/bin/brew "install" "gmp" "pkgconf"
- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/manifests/6.3.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/70a72a71216843d66a953c06ff6337445ce9bc94fae9f0e301e2f59005274a8e--gmp-6.3.0.bottle_manifest.json
- ==> Fetching gmp
- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/blobs/sha256:d1192da68b2618652f4be0dd9f56b18d2d276481440ae241ce9cc17be0450e07
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ea83c2ee63250dbc931826078df9b212ba8618ad631319170d4cb55723e4fe0b--gmp--6.3.0.sequoia.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/manifests/2.4.3-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f938254e85413ef0d18283c9c932823434b88c0c790e04e7534e2a3e923d0588--pkgconf-2.4.3-1.bottle_manifest.json
- ==> Fetching pkgconf
- ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/blobs/sha256:60803149fa486b8da14591ce5c016e37c9388c1ded2a88d9167a84926cc74957
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/abf6c9afe2a21080057d3d7a2508d5df4c40b6a56c8145f904f1d518a48814d9--pkgconf--2.4.3.sequoia.bottle.1.tar.gz
- ==> Pouring gmp--6.3.0.sequoia.bottle.tar.gz
- ๐บ /usr/local/Cellar/gmp/6.3.0: 22 files, 3.2MB
- ==> Running `brew cleanup gmp`...
- Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
- Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).
- ==> Pouring pkgconf--2.4.3.sequoia.bottle.1.tar.gz
- ๐บ /usr/local/Cellar/pkgconf/2.4.3: 27 files, 339.8KB
- ==> Running `brew cleanup pkgconf`...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved bheap.2.0.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved checkseum.0.5.2 (cached)
-> retrieved cmdliner.1.3.0 (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 digestif.1.3.0 (cached)
-> retrieved dune.3.19.1, dune-configurator.3.19.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.10.0 (cached)
-> retrieved index.1.6.2 (cached)
-> installed cmdliner.1.3.0
-> retrieved irmin.3.11.0, irmin-pack.3.11.0, irmin-tezos.3.11.0, ppx_irmin.3.11.0 (cached)
-> retrieved jsonm.1.0.2 (cached)
-> retrieved logs.0.7.0 (cached)
-> retrieved lru.0.3.1 (cached)
-> retrieved lwt.5.9.1 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlgraph.2.2.0 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved optint.0.3.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_repr.0.7.0, repr.0.7.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved progress.0.4.0, terminal.0.4.0 (cached)
-> retrieved psq.0.2.1 (cached)
-> retrieved rusage.1.0.0 (cached)
-> retrieved semaphore-compat.1.0.2 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved tezos-base58.1.0.0 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved uucp.16.0.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved vector.1.0.0 (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.0.8
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.10.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed dune.3.19.1
-> installed bheap.2.0.0
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed psq.0.2.1
-> installed ppx_derivers.1.2.1
-> installed optint.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed eqaf.0.10
-> installed cppo.1.8.0
-> installed base64.3.5.1
-> installed ocamlgraph.2.2.0
-> installed ocplib-endian.1.2
-> installed stringext.1.6.0
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed semaphore-compat.1.0.2
-> installed lru.0.3.1
-> installed rusage.1.0.0
-> installed vector.1.0.0
-> installed digestif.1.3.0
-> installed tezos-base58.1.0.0
-> installed dune-configurator.3.19.1
-> installed repr.0.7.0
-> installed yojson.3.0.0
-> installed bigstringaf.0.10.0
-> installed checkseum.0.5.2
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed lwt.5.9.1
-> installed logs.0.7.0
-> installed ppxlib.0.35.0
-> installed ppx_deriving.6.0.3
-> installed ppx_repr.0.7.0
-> installed uucp.16.0.0
-> installed terminal.0.4.0
-> installed ppx_irmin.3.11.0
-> installed progress.0.4.0
-> installed index.1.6.2
-> installed irmin.3.11.0
-> installed irmin-pack.3.11.0
-> installed irmin-tezos.3.11.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-22 16:55.06 ---> using "4df18e53f16fd39789598dae14710e306ca9fff87538f2f53759d41014b9fe28" from cache
/: (run (network host)
(shell "(opam reinstall --with-test irmin-tezos.3.11.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile irmin-tezos 3.11.0 (pinned)
=== install 11 packages
- install alcotest 1.9.0 [required by irmin-tezos]
- install alcotest-lwt 1.9.0 [required by irmin-test]
- install conf-gnuplot 0.1 [required by metrics-unix]
- install cstruct 6.2.0 [required by hex]
- install fpath 0.7.3 [required by irmin-tezos]
- install hex 1.5.0 [required by irmin-tezos]
- install irmin-test 3.11.0 [required by irmin-tezos]
- install metrics 0.5.0 [required by irmin-test]
- install metrics-unix 0.5.0 [required by irmin-test]
- install re 1.12.0 [required by alcotest]
- install uuidm 0.9.10 [required by metrics-unix]
The following system packages will first need to be installed:
gnuplot
<><> 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
+ /usr/local/bin/brew "install" "gnuplot"
- ==> Downloading https://ghcr.io/v2/homebrew/core/gnuplot/manifests/6.0.3
- ==> Fetching dependencies for gnuplot: libpng, freetype, fontconfig, pcre2, libunistring, gettext, glib, xorgproto, libxau, libxdmcp, libxcb, libx11, libxext, libxrender, lzo, pixman, cairo, jpeg-turbo, brotli, giflib, highway, imath, xz, lz4, zstd, libtiff, little-cms2, libdeflate, openexr, webp, jpeg-xl, libvmaf, aom, libavif, gd, libcerf, lua, fribidi, graphite2, icu4c@77, harfbuzz, pango, assimp, dbus, double-conversion, readline, hunspell, jasper, libb2, libmng, md4c, ca-certificates, openssl@3, sqlite and qt
- ==> Downloading https://ghcr.io/v2/homebrew/core/libpng/manifests/1.6.49
- ==> Fetching libpng
- ==> Downloading https://ghcr.io/v2/homebrew/core/libpng/blobs/sha256:bc858e121e0cd6049ec041b36d241542e90a23fc1749423193b20f573b57afed
- ==> Downloading https://ghcr.io/v2/homebrew/core/freetype/manifests/2.13.3
- ==> Fetching freetype
- ==> Downloading https://ghcr.io/v2/homebrew/core/freetype/blobs/sha256:e79e0ffb36311b2abbd0cd44abcf5e938768b2d63d6268e68d5eaa4d34d9323e
- ==> Downloading https://ghcr.io/v2/homebrew/core/fontconfig/manifests/2.16.0
- ==> Fetching fontconfig
- ==> Downloading https://ghcr.io/v2/homebrew/core/fontconfig/blobs/sha256:37befec606c968bf0e3664d53a0cef5fbc013aa851f1c3d534b8f5f7a5af1de1
- ==> Downloading https://ghcr.io/v2/homebrew/core/pcre2/manifests/10.45
- ==> Fetching pcre2
- ==> Downloading https://ghcr.io/v2/homebrew/core/pcre2/blobs/sha256:5b1916e8e569da37aabc596561eb93a6bdf7cff4d55d35a351576c071ce723cc
- ==> Downloading https://ghcr.io/v2/homebrew/core/libunistring/manifests/1.3
- ==> Fetching libunistring
- ==> Downloading https://ghcr.io/v2/homebrew/core/libunistring/blobs/sha256:e919f6ee2fe8a40addea1e1840eab8855e66812e18dfe05c130618ce517e2880
- ==> Downloading https://ghcr.io/v2/homebrew/core/gettext/manifests/0.25
- ==> Fetching gettext
- ==> Downloading https://ghcr.io/v2/homebrew/core/gettext/blobs/sha256:6da9896ebaea0fd919d220f661cf8b68397ac038d0c3139ab4132a285496cdf9
- ==> Downloading https://ghcr.io/v2/homebrew/core/glib/manifests/2.84.3
- ==> Fetching glib
- ==> Downloading https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:3e151981197a5c60a3292b61ae0e910a3a0ecf7e46707f2c10abc2827ab7cbeb
- ==> Downloading https://ghcr.io/v2/homebrew/core/xorgproto/manifests/2024.1
- ==> Fetching xorgproto
- ==> Downloading https://ghcr.io/v2/homebrew/core/xorgproto/blobs/sha256:3307601f0a03f6c51b640fb11064ef2c2264cc9c20de0604a255370edee3f7f4
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxau/manifests/1.0.12
- ==> Fetching libxau
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxau/blobs/sha256:46c7dff8ac6917ffc355a1ac7242fb37f53cb4e7276a9c297b31cd0d35b36b6f
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxdmcp/manifests/1.1.5
- ==> Fetching libxdmcp
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxdmcp/blobs/sha256:b43d28c50f25ee0775a1bd4269e236d00e352ac060522bfc9186b35165095c56
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxcb/manifests/1.17.0-1
- ==> Fetching libxcb
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxcb/blobs/sha256:d7cbef805f6d1aab547a65a931972df59a768bb48ff845ecdcbf7b404f64cfa6
- ==> Downloading https://ghcr.io/v2/homebrew/core/libx11/manifests/1.8.12
- ==> Fetching libx11
- ==> Downloading https://ghcr.io/v2/homebrew/core/libx11/blobs/sha256:5d916769cf91a23fff62dbd1b9c791beeca44504e72907511b352f8f758dae4b
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxext/manifests/1.3.6
- ==> Fetching libxext
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxext/blobs/sha256:86fd68fab7f6cdcca7212812b697efc8d2c1349ceada7c74a1eeabf0f9ec8523
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxrender/manifests/0.9.12
- ==> Fetching libxrender
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxrender/blobs/sha256:97554360bb9c9e82ebc7140f0186f02c103e877988c1d4a0139fbd5be1990f6a
- ==> Downloading https://ghcr.io/v2/homebrew/core/lzo/manifests/2.10
- ==> Fetching lzo
- ==> Downloading https://ghcr.io/v2/homebrew/core/lzo/blobs/sha256:11b8557744feb28974cb4caa92a16a89f3ead77468778cc17c2f349502df495e
- ==> Downloading https://ghcr.io/v2/homebrew/core/pixman/manifests/0.46.2
- ==> Fetching pixman
- ==> Downloading https://ghcr.io/v2/homebrew/core/pixman/blobs/sha256:e36b4e62524a998dfcba997b3e827537ef8179df9f9c558e203476cd264e2c9f
- ==> Downloading https://ghcr.io/v2/homebrew/core/cairo/manifests/1.18.4
- ==> Fetching cairo
- ==> Downloading https://ghcr.io/v2/homebrew/core/cairo/blobs/sha256:76a88eab178ee0ada4fa05270834be6808e0f6480f68002d9f21bc41ee2e1cb6
- ==> Downloading https://ghcr.io/v2/homebrew/core/jpeg-turbo/manifests/3.1.1
- ==> Fetching jpeg-turbo
- ==> Downloading https://ghcr.io/v2/homebrew/core/jpeg-turbo/blobs/sha256:c5deecf446ce9684b3f57ad27c34a66dc10937b21427847c3c7306e1d868f0b2
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/manifests/1.1.0-2
- ==> Fetching brotli
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/blobs/sha256:8934e84777d1c6f63d6e4c07213731c9af1b7a66d5f0a6b3ef0bb6d56bb63a86
- ==> Downloading https://ghcr.io/v2/homebrew/core/giflib/manifests/5.2.2
- ==> Fetching giflib
- ==> Downloading https://ghcr.io/v2/homebrew/core/giflib/blobs/sha256:40d390aab5bc396eb3efa0ae00987efd8c9eb8049239f709f486a879577a41ef
- ==> Downloading https://ghcr.io/v2/homebrew/core/highway/manifests/1.2.0
- ==> Fetching highway
- ==> Downloading https://ghcr.io/v2/homebrew/core/highway/blobs/sha256:dd94650f29c85c1e1ed4343d1b3689161671586d2c19d14a42409c383ff0f456
- ==> Downloading https://ghcr.io/v2/homebrew/core/imath/manifests/3.1.12
- ==> Fetching imath
- ==> Downloading https://ghcr.io/v2/homebrew/core/imath/blobs/sha256:6f6d2633c7443723f64753ceac0bd2d69c5954f615fb9d843944f03fc6a9cf32
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/manifests/5.8.1
- ==> Fetching xz
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:6558e19cb2f13893677ec1fe075d268a69ce242a064ce1dc53940234da4b2c5f
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/manifests/1.10.0-1
- ==> Fetching lz4
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/blobs/sha256:f75cb29a4d25d37e1db38d95c5970cc45de7ec63ce43cfa881a877b424154a42
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/manifests/1.5.7
- ==> Fetching zstd
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/blobs/sha256:bcfccd14315dedf3291f77682702f80711fb8829bd14a53431d60204eb99ec32
- ==> Downloading https://ghcr.io/v2/homebrew/core/libtiff/manifests/4.7.0-1
- ==> Fetching libtiff
- ==> Downloading https://ghcr.io/v2/homebrew/core/libtiff/blobs/sha256:5610196cb9396c468513adc5bc7c4834a3f475ff6f3ebd98f77e3f8b2123da3e
- ==> Downloading https://ghcr.io/v2/homebrew/core/little-cms2/manifests/2.17
- ==> Fetching little-cms2
- ==> Downloading https://ghcr.io/v2/homebrew/core/little-cms2/blobs/sha256:6f3a75284dcdd815c90822ac2d7ca5da326f9b1caa429b57bc95bc1f49d76881
- ==> Downloading https://ghcr.io/v2/homebrew/core/libdeflate/manifests/1.24
- ==> Fetching libdeflate
- ==> Downloading https://ghcr.io/v2/homebrew/core/libdeflate/blobs/sha256:2e7067afa9095766f5ea81162c05028e50d433bd334162874974598841fb9415
- ==> Downloading https://ghcr.io/v2/homebrew/core/openexr/manifests/3.3.4
- ==> Fetching openexr
- ==> Downloading https://ghcr.io/v2/homebrew/core/openexr/blobs/sha256:981b5bd76b31301fed78add438c4987ae6c56f119608d213125b16d7788f9f9e
- ==> Downloading https://ghcr.io/v2/homebrew/core/webp/manifests/1.5.0
- ==> Fetching webp
- ==> Downloading https://ghcr.io/v2/homebrew/core/webp/blobs/sha256:18e9cdc6a27311b71e215cfc392f4d2b032a8f9f43b80b65dc920ed1bccbbc34
- ==> Downloading https://ghcr.io/v2/homebrew/core/jpeg-xl/manifests/0.11.1_1
- ==> Fetching jpeg-xl
- ==> Downloading https://ghcr.io/v2/homebrew/core/jpeg-xl/blobs/sha256:5f403648ee1450951c0b2eaba9ea50be2599b35bdaf86f3fb7bf5b46d007e229
- ==> Downloading https://ghcr.io/v2/homebrew/core/libvmaf/manifests/3.0.0-1
- ==> Fetching libvmaf
- ==> Downloading https://ghcr.io/v2/homebrew/core/libvmaf/blobs/sha256:64600bc64ae6dc61c6b9f31c7c4ee35a045b72966ba85d6de1e8f7b0fb575c6f
- ==> Downloading https://ghcr.io/v2/homebrew/core/aom/manifests/3.12.1
- ==> Fetching aom
- ==> Downloading https://ghcr.io/v2/homebrew/core/aom/blobs/sha256:8ddd7ac9825cb9b13af09e3adbd3b14c260d9d76e7d9e76c50e0a11f71e9b25b
- ==> Downloading https://ghcr.io/v2/homebrew/core/libavif/manifests/1.3.0
- ==> Fetching libavif
- ==> Downloading https://ghcr.io/v2/homebrew/core/libavif/blobs/sha256:7f0fbb053b843800ebf5edc64a14d5bfd4fc4c38f63e0c9c23aa1df0e5502d1f
- ==> Downloading https://ghcr.io/v2/homebrew/core/gd/manifests/2.3.3_6
- ==> Fetching gd
- ==> Downloading https://ghcr.io/v2/homebrew/core/gd/blobs/sha256:7bc1099e53432209a4c5da106c8105e0f8e95728a6cc77438e2761c8b6fcf05b
- ==> Downloading https://ghcr.io/v2/homebrew/core/libcerf/manifests/3.0
- ==> Fetching libcerf
- ==> Downloading https://ghcr.io/v2/homebrew/core/libcerf/blobs/sha256:d1f71ef6427fe87f8c1fca1ac83ff534a4b01086ae8835d8b14c2ea72710c97f
- ==> Downloading https://ghcr.io/v2/homebrew/core/lua/manifests/5.4.8
- ==> Fetching lua
- ==> Downloading https://ghcr.io/v2/homebrew/core/lua/blobs/sha256:c8816a8327ee6a27121fa5a955fcfbac1788474f0d72a8c75876170dc455b497
- ==> Downloading https://ghcr.io/v2/homebrew/core/fribidi/manifests/1.0.16
- ==> Fetching fribidi
- ==> Downloading https://ghcr.io/v2/homebrew/core/fribidi/blobs/sha256:abda3f3925574ac53d9fa5a7629102dda29132a64cf1a9f756eedc3258d1e855
- ==> Downloading https://ghcr.io/v2/homebrew/core/graphite2/manifests/1.3.14
- ==> Fetching graphite2
- ==> Downloading https://ghcr.io/v2/homebrew/core/graphite2/blobs/sha256:afd3067ded2f8fb2ae3400d908a271825c5f7013f089312949ac9576b2a26d96
- ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/77/manifests/77.1
- ==> Fetching icu4c@77
- ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/77/blobs/sha256:54d609febedd08e8a4a825435d85f6d4db045f586523edb8965434e8e9c93fa6
- ==> Downloading https://ghcr.io/v2/homebrew/core/harfbuzz/manifests/11.2.1
- ==> Fetching harfbuzz
- ==> Downloading https://ghcr.io/v2/homebrew/core/harfbuzz/blobs/sha256:fa2402380d3f6f5f3c9aa13ea3414c49ffba1f7f243ca78a77e761eabd6beb34
- ==> Downloading https://ghcr.io/v2/homebrew/core/pango/manifests/1.56.3
- ==> Fetching pango
- ==> Downloading https://ghcr.io/v2/homebrew/core/pango/blobs/sha256:2e141cb0c33eb33fd2771efbac614b75dad3db4ed332ef84526e81e6a64b7d01
- ==> Downloading https://ghcr.io/v2/homebrew/core/assimp/manifests/6.0.1
- ==> Fetching assimp
- ==> Downloading https://ghcr.io/v2/homebrew/core/assimp/blobs/sha256:8ba45ccc2774bc0e17f811f836406cb3d5fe129f4a3c087ac2250cc3ab064f69
- ==> Downloading https://ghcr.io/v2/homebrew/core/dbus/manifests/1.16.2
- ==> Fetching dbus
- ==> Downloading https://ghcr.io/v2/homebrew/core/dbus/blobs/sha256:cc14d4e58379b1c86bf51ce3ccb4a56ddf0808de29483cce83f5190c3dc0509b
- ==> Downloading https://ghcr.io/v2/homebrew/core/double-conversion/manifests/3.3.1
- ==> Fetching double-conversion
- ==> Downloading https://ghcr.io/v2/homebrew/core/double-conversion/blobs/sha256:a6b67d2639ee5159aed9ef0a45f5f2ad4962b4f05d69ef538be5b81fb59bf42b
- ==> Downloading https://ghcr.io/v2/homebrew/core/readline/manifests/8.2.13
- ==> Fetching readline
- ==> Downloading https://ghcr.io/v2/homebrew/core/readline/blobs/sha256:becf6fdd835be191881959acd788745c1075eeb70cb1fd9ee646a3080597ea6f
- ==> Downloading https://ghcr.io/v2/homebrew/core/hunspell/manifests/1.7.2
- ==> Fetching hunspell
- ==> Downloading https://ghcr.io/v2/homebrew/core/hunspell/blobs/sha256:824cc2f1c917cc1a43872bbf9b36fba99072458de10b41631097dcf62e0d82f2
- ==> Downloading https://ghcr.io/v2/homebrew/core/jasper/manifests/4.2.5
- ==> Fetching jasper
- ==> Downloading https://ghcr.io/v2/homebrew/core/jasper/blobs/sha256:ba6b449339961161ac625af3590a931be960f4c2275d5cb37fbdef2b87ff37bc
- ==> Downloading https://ghcr.io/v2/homebrew/core/libb2/manifests/0.98.1
- ==> Fetching libb2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libb2/blobs/sha256:747d5e721f9fae99dbc96b9091a4e9f237919f812723d24965846523782b7381
- ==> Downloading https://ghcr.io/v2/homebrew/core/libmng/manifests/2.0.3_1-1
- ==> Fetching libmng
- ==> Downloading https://ghcr.io/v2/homebrew/core/libmng/blobs/sha256:17a8b7fffb5d320e5f0d6535aaf5d25ddde6da85bdaf5b4d260f0703a087a2e0
- ==> Downloading https://ghcr.io/v2/homebrew/core/md4c/manifests/0.5.2
- ==> Fetching md4c
- ==> Downloading https://ghcr.io/v2/homebrew/core/md4c/blobs/sha256:1c0f5cba7d83945b1d458e5dfe5b0fbffd698f7f15a04c63b19f96ed8967a6dc
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-05-20
- ==> Fetching ca-certificates
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/blobs/sha256:dda1100e7f994081a593d6a5e422451bfa20037e29667ed2b79f011ffc9288a7
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.5.0
- ==> Fetching openssl@3
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:15431f4b9cf582e4b9b5d638057c8ed1db23fd166e425d66bcca0d36aa2ab585
- ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/manifests/3.50.1
- ==> Fetching sqlite
- ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/blobs/sha256:550cee3143c8432be0f904cbe88c40ee00405ba0b015c9458dfb3e70df27b2e5
- ==> Downloading https://ghcr.io/v2/homebrew/core/qt/manifests/6.9.0
- ==> Fetching qt
- ==> Downloading https://ghcr.io/v2/homebrew/core/qt/blobs/sha256:1cb92af62ec86c41bd6901428356fc8908ab98706a1f4b1e7791f09fd6cad498
- ==> Fetching gnuplot
- ==> Downloading https://ghcr.io/v2/homebrew/core/gnuplot/blobs/sha256:21c6df11dfcc4a8c37c638b6a5309a3dd21521a450a2cd50a3f8a75d32044de6
- ==> Installing dependencies for gnuplot: libpng, freetype, fontconfig, pcre2, libunistring, gettext, glib, xorgproto, libxau, libxdmcp, libxcb, libx11, libxext, libxrender, lzo, pixman, cairo, jpeg-turbo, brotli, giflib, highway, imath, xz, lz4, zstd, libtiff, little-cms2, libdeflate, openexr, webp, jpeg-xl, libvmaf, aom, libavif, gd, libcerf, lua, fribidi, graphite2, icu4c@77, harfbuzz, pango, assimp, dbus, double-conversion, readline, hunspell, jasper, libb2, libmng, md4c, ca-certificates, openssl@3, sqlite and qt
- ==> Installing gnuplot dependency: libpng
- ==> Downloading https://ghcr.io/v2/homebrew/core/libpng/manifests/1.6.49
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e5b4a9bf70c7e7d587f8d51454aac4583dd0c94374830a805dbd043e88f8ab31--libpng-1.6.49.bottle_manifest.json
- ==> Pouring libpng--1.6.49.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libpng/1.6.49: 28 files, 1.2MB
- ==> Installing gnuplot dependency: freetype
- ==> Downloading https://ghcr.io/v2/homebrew/core/freetype/manifests/2.13.3
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4c4d14d574a7af9a5a0220cd5012c698bd87b75a3d5e39a6a6c34b4c411aab52--freetype-2.13.3.bottle_manifest.json
- ==> Pouring freetype--2.13.3.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/freetype/2.13.3: 68 files, 2.5MB
- ==> Installing gnuplot dependency: fontconfig
- ==> Downloading https://ghcr.io/v2/homebrew/core/fontconfig/manifests/2.16.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6897fed6b85e0f537cb8774ec21346308111caaf26c136f33fdc95302d361fe7--fontconfig-2.16.0.bottle_manifest.json
- ==> Pouring fontconfig--2.16.0.sonoma.bottle.tar.gz
- ==> Regenerating font cache, this may take a while
- ==> /usr/local/Cellar/fontconfig/2.16.0/bin/fc-cache -frv
- ๐บ /usr/local/Cellar/fontconfig/2.16.0: 92 files, 1.1MB
- ==> Installing gnuplot dependency: pcre2
- ==> Downloading https://ghcr.io/v2/homebrew/core/pcre2/manifests/10.45
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/bbac938545583185faba88567f1a952d7cc0b825820a2980533f7b3550dc31ad--pcre2-10.45.bottle_manifest.json
- ==> Pouring pcre2--10.45.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/pcre2/10.45: 242 files, 6.7MB
- ==> Installing gnuplot dependency: libunistring
- ==> Downloading https://ghcr.io/v2/homebrew/core/libunistring/manifests/1.3
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a570da63bc1839c7e217f203abd54d4d873ebd6b99f6e88994d0e79e2ebe987c--libunistring-1.3.bottle_manifest.json
- ==> Pouring libunistring--1.3.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libunistring/1.3: 59 files, 5.5MB
- ==> Installing gnuplot dependency: gettext
- ==> Downloading https://ghcr.io/v2/homebrew/core/gettext/manifests/0.25
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/344607fc5b91bb0c1287d07bb445cc40cc465a163a52e12eed3cc5cd60498f78--gettext-0.25.bottle_manifest.json
- ==> Pouring gettext--0.25.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/gettext/0.25: 2,418 files, 26.4MB
- ==> Installing gnuplot dependency: glib
- ==> Downloading https://ghcr.io/v2/homebrew/core/glib/manifests/2.84.3
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/88d63b55ddeb4b28ab9c7944cbfcc7dc19d04bd0effc32c2e9623ce50a6cd51f--glib-2.84.3.bottle_manifest.json
- ==> Pouring glib--2.84.3.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/glib/2.84.3: 504 files, 34.9MB
- ==> Installing gnuplot dependency: xorgproto
- ==> Downloading https://ghcr.io/v2/homebrew/core/xorgproto/manifests/2024.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d89d69340366d1d015e7214520f64081e2d82d7955fb28c6ea5f6539dcb610b2--xorgproto-2024.1.bottle_manifest.json
- ==> Pouring xorgproto--2024.1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/xorgproto/2024.1: 268 files, 3.9MB
- ==> Installing gnuplot dependency: libxau
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxau/manifests/1.0.12
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6335be202d59f96fdee2e4a02f93d8ee87dfcfdbaa4ed132b8fe8c3e3651e27c--libxau-1.0.12.bottle_manifest.json
- ==> Pouring libxau--1.0.12.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libxau/1.0.12: 21 files, 93KB
- ==> Installing gnuplot dependency: libxdmcp
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxdmcp/manifests/1.1.5
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8713e53f73d0be64780dbea522b0ee07027e6cc7828ff1a4fa0a6596f14cfe25--libxdmcp-1.1.5.bottle_manifest.json
- ==> Pouring libxdmcp--1.1.5.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libxdmcp/1.1.5: 12 files, 120.6KB
- ==> Installing gnuplot dependency: libxcb
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxcb/manifests/1.17.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a17e9d0e04a0013a5be592875b012c409023664b3df084b8051766331d213ff5--libxcb-1.17.0-1.bottle_manifest.json
- ==> Pouring libxcb--1.17.0.sonoma.bottle.1.tar.gz
- ๐บ /usr/local/Cellar/libxcb/1.17.0: 2,498 files, 6.2MB
- ==> Installing gnuplot dependency: libx11
- ==> Downloading https://ghcr.io/v2/homebrew/core/libx11/manifests/1.8.12
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8510ddcf75e7c4313fe4f8b0999d667b22f2ae0b850bc80ba53becb609335934--libx11-1.8.12.bottle_manifest.json
- ==> Pouring libx11--1.8.12.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libx11/1.8.12: 1,043 files, 6.8MB
- ==> Installing gnuplot dependency: libxext
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxext/manifests/1.3.6
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/fedb843acbfcf682fb451396914bfc096f9ea2748376d4c43ce2af7ce1b766b7--libxext-1.3.6.bottle_manifest.json
- ==> Pouring libxext--1.3.6.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libxext/1.3.6: 88 files, 430.1KB
- ==> Installing gnuplot dependency: libxrender
- ==> Downloading https://ghcr.io/v2/homebrew/core/libxrender/manifests/0.9.12
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/152fb22ff88a23b62841dcfa14aac21018e1d736c072d732185f6139ef922e1c--libxrender-0.9.12.bottle_manifest.json
- ==> Pouring libxrender--0.9.12.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libxrender/0.9.12: 13 files, 174.1KB
- ==> Installing gnuplot dependency: lzo
- ==> Downloading https://ghcr.io/v2/homebrew/core/lzo/manifests/2.10
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d4aa5b0c239912c53bc857d1012c6b7feb4acb509618f5e100f95bf8521f08e7--lzo-2.10.bottle_manifest.json
- ==> Pouring lzo--2.10.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/lzo/2.10: 32 files, 555.7KB
- ==> Installing gnuplot dependency: pixman
- ==> Downloading https://ghcr.io/v2/homebrew/core/pixman/manifests/0.46.2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/c608060dd44c7a853d8ac82d8641c6911fcc8d7ba73a07435e0216d210b15842--pixman-0.46.2.bottle_manifest.json
- ==> Pouring pixman--0.46.2.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/pixman/0.46.2: 10 files, 672.7KB
- ==> Installing gnuplot dependency: cairo
- ==> Downloading https://ghcr.io/v2/homebrew/core/cairo/manifests/1.18.4
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/795ef2e2e2a57e6baba0fc9ceedb58980e8ec718aba0170b9441a0b25442cfbf--cairo-1.18.4.bottle_manifest.json
- ==> Pouring cairo--1.18.4.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/cairo/1.18.4: 53 files, 2.0MB
- ==> Installing gnuplot dependency: jpeg-turbo
- ==> Downloading https://ghcr.io/v2/homebrew/core/jpeg-turbo/manifests/3.1.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/c854f6cf182be1d17fc08db542e1a659f58691d8ccc481348465e3a038dbe73b--jpeg-turbo-3.1.1.bottle_manifest.json
- ==> Pouring jpeg-turbo--3.1.1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/jpeg-turbo/3.1.1: 47 files, 4.2MB
- ==> Installing gnuplot dependency: brotli
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/manifests/1.1.0-2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/72b36368116298518fd66e638dfbe8cb541d8db2d33e279683bbdb4b79c73e0d--brotli-1.1.0-2.bottle_manifest.json
- ==> Pouring brotli--1.1.0.sonoma.bottle.2.tar.gz
- ๐บ /usr/local/Cellar/brotli/1.1.0: 28 files, 1.6MB
- ==> Installing gnuplot dependency: giflib
- ==> Downloading https://ghcr.io/v2/homebrew/core/giflib/manifests/5.2.2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/283773c4d2db4fe867419d7eea6811a6417889d78fad8871041c07f49b22d2a1--giflib-5.2.2.bottle_manifest.json
- ==> Pouring giflib--5.2.2.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/giflib/5.2.2: 20 files, 363.7KB
- ==> Installing gnuplot dependency: highway
- ==> Downloading https://ghcr.io/v2/homebrew/core/highway/manifests/1.2.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8cb1608f21fba449c4e34b0a4912e3d73b6f2fa2577c916720799b5057207452--highway-1.2.0.bottle_manifest.json
- ==> Pouring highway--1.2.0.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/highway/1.2.0: 75 files, 7.1MB
- ==> Installing gnuplot dependency: imath
- ==> Downloading https://ghcr.io/v2/homebrew/core/imath/manifests/3.1.12
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6afdf93c912565e828ad2386867db9e96b58441f29b901492560bcde9e8a22ad--imath-3.1.12.bottle_manifest.json
- ==> Pouring imath--3.1.12.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/imath/3.1.12: 50 files, 903.6KB
- ==> Installing gnuplot dependency: xz
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/manifests/5.8.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/86a115cc1d43ff8a480fd907f812e70a403e1675d8a7223f61bbb08cbd2adc27--xz-5.8.1.bottle_manifest.json
- ==> Pouring xz--5.8.1.sequoia.bottle.tar.gz
- ๐บ /usr/local/Cellar/xz/5.8.1: 96 files, 2.3MB
- ==> Installing gnuplot dependency: lz4
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/manifests/1.10.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8e11e90eb21a06e0f199af9d80e011e3693c77dd353b2477579d95c8471a5802--lz4-1.10.0-1.bottle_manifest.json
- ==> Pouring lz4--1.10.0.sequoia.bottle.1.tar.gz
- ๐บ /usr/local/Cellar/lz4/1.10.0: 24 files, 662.3KB
- ==> Installing gnuplot dependency: zstd
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/manifests/1.5.7
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/596a67b1677f62a8e24e6fdfa7c879891221cb8261242f4355fb4deff1a2ec39--zstd-1.5.7.bottle_manifest.json
- ==> Pouring zstd--1.5.7.sequoia.bottle.tar.gz
- ๐บ /usr/local/Cellar/zstd/1.5.7: 32 files, 2.4MB
- ==> Installing gnuplot dependency: libtiff
- ==> Downloading https://ghcr.io/v2/homebrew/core/libtiff/manifests/4.7.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/cc8add3c5369d6c22906554ebc395ebe89f1ac410112bd65bc6d286d4e02f210--libtiff-4.7.0-1.bottle_manifest.json
- ==> Pouring libtiff--4.7.0.sonoma.bottle.1.tar.gz
- ๐บ /usr/local/Cellar/libtiff/4.7.0: 486 files, 7.6MB
- ==> Installing gnuplot dependency: little-cms2
- ==> Downloading https://ghcr.io/v2/homebrew/core/little-cms2/manifests/2.17
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/0e5e5ac9e1df07ae001662a85a70b344b31345897c284172f14874c9d329cb85--little-cms2-2.17.bottle_manifest.json
- ==> Pouring little-cms2--2.17.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/little-cms2/2.17: 23 files, 1.2MB
- ==> Installing gnuplot dependency: libdeflate
- ==> Downloading https://ghcr.io/v2/homebrew/core/libdeflate/manifests/1.24
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f25944af7be6e49fb1ab535f6d86ab11b6414cd8d6fca2fec1817aff2268c451--libdeflate-1.24.bottle_manifest.json
- ==> Pouring libdeflate--1.24.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libdeflate/1.24: 17 files, 351.3KB
- ==> Installing gnuplot dependency: openexr
- ==> Downloading https://ghcr.io/v2/homebrew/core/openexr/manifests/3.3.4
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b25bbda6441cbbae3a0c9a840abc4e9768244d9f4eb755ba4d203d3aea5d6fed--openexr-3.3.4.bottle_manifest.json
- ==> Pouring openexr--3.3.4.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/openexr/3.3.4: 210 files, 4.2MB
- ==> Installing gnuplot dependency: webp
- ==> Downloading https://ghcr.io/v2/homebrew/core/webp/manifests/1.5.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/674b427392a0b30f8c95a3047f8d8b59cc729067bec5e51403e4bb87e009102a--webp-1.5.0.bottle_manifest.json
- ==> Pouring webp--1.5.0.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/webp/1.5.0: 64 files, 2.5MB
- ==> Installing gnuplot dependency: jpeg-xl
- ==> Downloading https://ghcr.io/v2/homebrew/core/jpeg-xl/manifests/0.11.1_1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b1bbb94dec31282c134f452621e3141e9a5127fa90e51ac8d0103430f9b50eb7--jpeg-xl-0.11.1_1.bottle_manifest.json
- ==> Pouring jpeg-xl--0.11.1_1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/jpeg-xl/0.11.1_1: 64 files, 44.3MB
- ==> Installing gnuplot dependency: libvmaf
- ==> Downloading https://ghcr.io/v2/homebrew/core/libvmaf/manifests/3.0.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/3e1a82ebf20a6bd20eace7c0c56b52b096c4fa892466fa0a9e7be486389e0974--libvmaf-3.0.0-1.bottle_manifest.json
- ==> Pouring libvmaf--3.0.0.sonoma.bottle.1.tar.gz
- ๐บ /usr/local/Cellar/libvmaf/3.0.0: 235 files, 7.2MB
- ==> Installing gnuplot dependency: aom
- ==> Downloading https://ghcr.io/v2/homebrew/core/aom/manifests/3.12.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/76daa5795424903e05b46ebd6f7e1d663f893f695dec830c798089c7ffb60f39--aom-3.12.1.bottle_manifest.json
- ==> Pouring aom--3.12.1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/aom/3.12.1: 24 files, 11.9MB
- ==> Installing gnuplot dependency: libavif
- ==> Downloading https://ghcr.io/v2/homebrew/core/libavif/manifests/1.3.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b348d1f41a7bdb0c137f1c665651126f606eea340d8a8f08a38ed5bf401f1c33--libavif-1.3.0.bottle_manifest.json
- ==> Pouring libavif--1.3.0.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libavif/1.3.0: 22 files, 853.5KB
- ==> Installing gnuplot dependency: gd
- ==> Downloading https://ghcr.io/v2/homebrew/core/gd/manifests/2.3.3_6
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/1f63d9efd8c74faa4477bd8b8a3970abd38e51230ed052918bb6f3715aab8b61--gd-2.3.3_6.bottle_manifest.json
- ==> Pouring gd--2.3.3_6.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/gd/2.3.3_6: 34 files, 1.3MB
- ==> Installing gnuplot dependency: libcerf
- ==> Downloading https://ghcr.io/v2/homebrew/core/libcerf/manifests/3.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f5a8f4cfea31821e739573783a2177e9facb6a8d18d867a855377bd18b9a894d--libcerf-3.0.bottle_manifest.json
- ==> Pouring libcerf--3.0.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libcerf/3.0: 42 files, 238.4KB
- ==> Installing gnuplot dependency: lua
- ==> Downloading https://ghcr.io/v2/homebrew/core/lua/manifests/5.4.8
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/cb2b54ca62f0ea5746e4075848ef00a6e9c7d36089fc7be0e188266aeb61a077--lua-5.4.8.bottle_manifest.json
- ==> Pouring lua--5.4.8.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/lua/5.4.8: 30 files, 652.5KB
- ==> Installing gnuplot dependency: fribidi
- ==> Downloading https://ghcr.io/v2/homebrew/core/fribidi/manifests/1.0.16
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/9b4a81e7d1c2fe7c2d8ed4194565744f65bab0238c00f7f3f521f5aec2b8697f--fribidi-1.0.16.bottle_manifest.json
- ==> Pouring fribidi--1.0.16.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/fribidi/1.0.16: 68 files, 475.6KB
- ==> Installing gnuplot dependency: graphite2
- ==> Downloading https://ghcr.io/v2/homebrew/core/graphite2/manifests/1.3.14
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/bbb4dd2ef1846301d1eb08053e19e11ca9c780f93f4d3b2d638fd94a9bf54a0c--graphite2-1.3.14.bottle_manifest.json
- ==> Pouring graphite2--1.3.14.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/graphite2/1.3.14: 19 files, 261.4KB
- ==> Installing gnuplot dependency: icu4c@77
- ==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/77/manifests/77.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/35ec2c3adb94255ba47424a4334da9616d97e1ec6d59ed907b368535018bed0a--icu4c@77-77.1.bottle_manifest.json
- ==> Pouring icu4c@77--77.1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/icu4c@77/77.1: 277 files, 80MB
- ==> Installing gnuplot dependency: harfbuzz
- ==> Downloading https://ghcr.io/v2/homebrew/core/harfbuzz/manifests/11.2.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/541d81ca7e8e8b678fb64d9f758603fe525bfc219f8fb4782fd91fc81f9465aa--harfbuzz-11.2.1.bottle_manifest.json
- ==> Pouring harfbuzz--11.2.1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/harfbuzz/11.2.1: 77 files, 10.3MB
- ==> Installing gnuplot dependency: pango
- ==> Downloading https://ghcr.io/v2/homebrew/core/pango/manifests/1.56.3
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6f0e0f9ffd4d853b6b710a1ab143ecf1dbe833bc2505437fffb38d1a28fef526--pango-1.56.3.bottle_manifest.json
- ==> Pouring pango--1.56.3.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/pango/1.56.3: 69 files, 3MB
- ==> Installing gnuplot dependency: assimp
- ==> Downloading https://ghcr.io/v2/homebrew/core/assimp/manifests/6.0.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e13885ec32038b0293929f9a6313571d0982b3b25adbaedcd081fd09c6e0ea23--assimp-6.0.1.bottle_manifest.json
- ==> Pouring assimp--6.0.1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/assimp/6.0.1: 104 files, 10.7MB
- ==> Installing gnuplot dependency: dbus
- ==> Downloading https://ghcr.io/v2/homebrew/core/dbus/manifests/1.16.2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4d7addc05476f068c217c8e9d9c3a43fd366359d34bd4ad056d0de7568cd8847--dbus-1.16.2.bottle_manifest.json
- ==> Pouring dbus--1.16.2.sonoma.bottle.tar.gz
- ==> /usr/local/Cellar/dbus/1.16.2/bin/dbus-uuidgen --ensure=/usr/local/var/lib/dbus/machine-id
- ๐บ /usr/local/Cellar/dbus/1.16.2: 78 files, 1.6MB
- ==> Installing gnuplot dependency: double-conversion
- ==> Downloading https://ghcr.io/v2/homebrew/core/double-conversion/manifests/3.3.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ea562cf5822e1db7583f6877e2ab750797cff74d91969299f5a2635e9a0e2fb2--double-conversion-3.3.1.bottle_manifest.json
- ==> Pouring double-conversion--3.3.1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/double-conversion/3.3.1: 28 files, 225.8KB
- ==> Installing gnuplot dependency: readline
- ==> Downloading https://ghcr.io/v2/homebrew/core/readline/manifests/8.2.13
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/aa1afa38997a2866d91c81fdda8b36d436cd4ea7a82aed07d13c83c56eb3460e--readline-8.2.13.bottle_manifest.json
- ==> Pouring readline--8.2.13.sequoia.bottle.tar.gz
- ๐บ /usr/local/Cellar/readline/8.2.13: 51 files, 1.6MB
- ==> Installing gnuplot dependency: hunspell
- ==> Downloading https://ghcr.io/v2/homebrew/core/hunspell/manifests/1.7.2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4d645bbbc0d533556a1e9cb6d9c5f6aaeb087a44fe0f7454ceba4878104fecd2--hunspell-1.7.2.bottle_manifest.json
- ==> Pouring hunspell--1.7.2.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/hunspell/1.7.2: 87 files, 2.6MB
- ==> Installing gnuplot dependency: jasper
- ==> Downloading https://ghcr.io/v2/homebrew/core/jasper/manifests/4.2.5
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/0b7879dee43d75b41e26cd2680fb480d314374076cdd50feb7f4ed998ab38964--jasper-4.2.5.bottle_manifest.json
- ==> Pouring jasper--4.2.5.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/jasper/4.2.5: 45 files, 1.4MB
- ==> Installing gnuplot dependency: libb2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libb2/manifests/0.98.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/9bb23dca331f0d74876fa5c769113885b92af8a741a851cdfe99f6dfd420b12d--libb2-0.98.1.bottle_manifest.json
- ==> Pouring libb2--0.98.1.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/libb2/0.98.1: 9 files, 277.2KB
- ==> Installing gnuplot dependency: libmng
- ==> Downloading https://ghcr.io/v2/homebrew/core/libmng/manifests/2.0.3_1-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4f8eabb37dcd8c951fb12065030467aa4a2eac62c1580a2b2af093d169333535--libmng-2.0.3_1-1.bottle_manifest.json
- ==> Pouring libmng--2.0.3_1.sonoma.bottle.1.tar.gz
- ๐บ /usr/local/Cellar/libmng/2.0.3_1: 17 files, 1.1MB
- ==> Installing gnuplot dependency: md4c
- ==> Downloading https://ghcr.io/v2/homebrew/core/md4c/manifests/0.5.2
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ac31308126fdae8184f0e062e2be5eb9463c9a626651fdd99d2539016ee91291--md4c-0.5.2.bottle_manifest.json
- ==> Pouring md4c--0.5.2.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/md4c/0.5.2: 20 files, 262.3KB
- ==> Installing gnuplot dependency: ca-certificates
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2025-05-20
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/bc18acc15e0abddc102f828b57a29cfdbec1b6b002db37ad12bad9dbf0e9d12f--ca-certificates-2025-05-20.bottle_manifest.json
- ==> Pouring ca-certificates--2025-05-20.all.bottle.tar.gz
- ==> Regenerating CA certificate bundle from keychain, this may take a while...
- ๐บ /usr/local/Cellar/ca-certificates/2025-05-20: 4 files, 225.3KB
- ==> Installing gnuplot dependency: openssl@3
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.5.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/d3c8243df37f69247721b1d8a6c51e1a8afd6664b832423921ffd99bb2bb381a--openssl@3-3.5.0.bottle_manifest.json
- ==> Pouring openssl@3--3.5.0.sequoia.bottle.tar.gz
- ๐บ /usr/local/Cellar/openssl@3/3.5.0: 7,563 files, 35.6MB
- ==> Installing gnuplot dependency: sqlite
- ==> Downloading https://ghcr.io/v2/homebrew/core/sqlite/manifests/3.50.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a40fe78724db12f47a20638d2ac82e7057f6f1f425ea185cb180dd97df08cb2e--sqlite-3.50.1.bottle_manifest.json
- ==> Pouring sqlite--3.50.1.sequoia.bottle.tar.gz
- ๐บ /usr/local/Cellar/sqlite/3.50.1: 13 files, 4.8MB
- ==> Installing gnuplot dependency: qt
- ==> Downloading https://ghcr.io/v2/homebrew/core/qt/manifests/6.9.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/5ee8cc16a01a245aa6450a32488bc63048b6abaacf12889817a0b8632cf67724--qt-6.9.0.bottle_manifest.json
- ==> Pouring qt--6.9.0.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/qt/6.9.0: 18,239 files, 777.4MB
- ==> Installing gnuplot
- ==> Pouring gnuplot--6.0.3.sonoma.bottle.tar.gz
- ๐บ /usr/local/Cellar/gnuplot/6.0.3: 48 files, 2.9MB
- ==> Running `brew cleanup gnuplot`...
- Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
- Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0, alcotest-lwt.1.9.0 (https://github.com/mirage/alcotest/releases/download/1.9.0/alcotest-1.9.0.tbz)
-> installed conf-gnuplot.0.1
-> retrieved cstruct.6.2.0 (https://github.com/mirage/ocaml-cstruct/releases/download/v6.2.0/cstruct-6.2.0.tbz)
-> retrieved fpath.0.7.3 (https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz)
-> installed cstruct.6.2.0
-> retrieved hex.1.5.0 (https://github.com/mirage/ocaml-hex/releases/download/v1.5.0/hex-1.5.0.tbz)
-> installed hex.1.5.0
-> installed fpath.0.7.3
-> retrieved irmin-test.3.11.0, irmin-tezos.3.11.0 (https://github.com/mirage/irmin/releases/download/3.11.0/irmin-3.11.0.tbz)
-> retrieved metrics.0.5.0, metrics-unix.0.5.0 (https://github.com/mirage/metrics/releases/download/v0.5.0/metrics-0.5.0.tbz)
-> installed metrics.0.5.0
-> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved uuidm.0.9.10 (https://erratique.ch/software/uuidm/releases/uuidm-0.9.10.tbz)
-> installed uuidm.0.9.10
-> removed irmin-tezos.3.11.0
-> installed re.1.12.0
-> installed metrics-unix.0.5.0
-> installed alcotest.1.9.0
-> installed alcotest-lwt.1.9.0
-> installed irmin-test.3.11.0
-> installed irmin-tezos.3.11.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-22 17:33.51 ---> saved as "654ac88841bdfb9c928ff56e8d66c6163115375fda27f57818e6499c979e1ae2"
/: (run (shell "opam reinstall --with-test --verbose irmin-tezos.3.11.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'irmin-tezos.3.11.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile irmin-tezos 3.11.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [irmin-tezos: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "irmin-tezos" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/irmin-tezos.3.11.0)
- (cd _build/default/test/irmin-pack && ./test.exe -q --color=always)
- Testing `irmin-pack'.
- This run has ID `MDCIAWMW'.
-
- [OK] hashes 0 contents hash.
- [OK] hashes 1 inode_values hash.
- [OK] hashes 2 inode_tree hash.
- [OK] hashes 3 commit hash.
- [OK] hashes 4 V1 commit hash.
- [OK] dict-files 0 dict.
- [OK] dict-files 1 RO dict.
- [OK] pack-files 0 pack.
- [OK] pack-files 1 RO pack.
- [OK] pack-files 2 close.
- [OK] pack-files 3 close readonly.
- [OK] pack-files 4 readonly reload, index flush.
- [OK] pack-files 5 readonly find, index flush.
- [OK] branch-files 0 branch.
- [OK] branch-files 1 branch close.
- [OK] read-only 0 Test open ro after rw closed.
- [OK] read-only 1 Test ro reload after add.
- [OK] read-only 2 Test ro reload after close.
- [OK] read-only 3 Test ro batch.
- [OK] existing stores 0 Test index reconstruction.
- [OK] existing stores 1 Test gc not allowed.
- [OK] existing stores 2 Test integrity check.
- [OK] existing stores 3 Test integrity check minima...
- [OK] existing stores 4 Test integrity check for in...
- [OK] existing stores 5 Test traverse pack on gced ...
- [OK] inodes 0 add values.
- [OK] inodes 1 add values to inodes.
- [OK] inodes 2 remove values.
- [OK] inodes 3 remove inodes.
- [OK] inodes 4 test concrete inodes.
- [OK] inodes 5 test representation uniquen...
- [OK] inodes 6 test encode bin of values.
- [OK] inodes 7 test intermediate inode as ...
- [OK] inodes 8 Child_ordering.seeded_hash.
- [OK] inodes 9 Child_ordering.hash_bits.
- [OK] inodes 10 Child_ordering.custom.
- [OK] trees 0 fold over keys in sorted or...
- [OK] trees 1 fold over keys in random or...
- [OK] trees 2 fold over keys in undefined...
- [OK] trees 3 test Merkle proof for large...
- [OK] trees 4 test Merkle proof for small...
- [OK] trees 5 test Merkle proof for Tree....
- [OK] trees 6 test deeper Merkle proof.
- [SKIP] trees 7 test large Merkle proof.
- [OK] trees 8 test extenders in stream pr...
- [OK] trees 9 test hardcoded proof.
- [OK] trees 10 test reexport node.
- [OK] version-bump 0 test_RO_no_migration.
- [OK] version-bump 1 test_open_RW.
- [OK] snapshot 0 in memory minimal.
- [OK] snapshot 1 in memory always.
- [OK] snapshot 2 on disk minimal.
- [OK] snapshot 3 on disk always.
- [OK] snapshot 4 gced store, in memory.
- [OK] snapshot 5 gced store, on disk.
- [OK] snapshot 6 import old snapshot, export...
- [OK] upgrade 0 upgrade From_v3.
- [OK] upgrade 1 upgrade From_v2.
- [OK] upgrade 2 upgrade From_scratch.
- [OK] upgrade 3 upgrade From_v3 after Gc.
- [OK] gc 0 Test one gc.
- [OK] gc 1 Test twice gc.
- [OK] gc 2 Test gc keeps commits.
- [OK] gc 3 Test adding back commits.
- [OK] gc 4 Test close.
- [OK] gc 5 Test gc commit with two par...
- [OK] gc 6 Test gc ro.
- [OK] gc 7 Test reload after two gc.
- [OK] gc 8 Test ro close.
- [OK] gc 9 Test ro reload after open.
- [OK] gc 10 Test lru.
- [OK] gc 11 Test gc during batch.
- [OK] gc 12 Test add back gced commit.
- [OK] gc 13 Test gc on similar commits.
- [OK] gc 14 Test oldest live commit.
- [OK] gc 15 Test worker gc stats.
- [OK] gc 16 Test gc_clears_lru.
- [OK] concurrent gc 0 Test find_running_gc.
- [OK] concurrent gc 1 Test add_running_gc.
- [OK] concurrent gc 2 Test several_gc.
- [OK] concurrent gc 3 Test find_running_gc_with_lru.
- [OK] concurrent gc 4 Test add_running_gc_with_lru.
- [OK] concurrent gc 5 Test several_gc_with_lru.
- [OK] concurrent gc 6 Test ro_find_running_gc.
- [OK] concurrent gc 7 Test ro_add_running_gc.
- [OK] concurrent gc 8 Test ro_reload_after_second...
- [OK] concurrent gc 9 Test ro_reload_clears_lru.
- [OK] concurrent gc 10 Test close_running_gc.
- [OK] concurrent gc 11 Test skip gc.
- [OK] concurrent gc 12 Test kill gc and finalise.
- [OK] concurrent gc 13 Test kill gc and close.
- [OK] concurrent gc 14 Test gc cancel cleanup.
- [OK] gc archival 0 Test availability of differ...
- [OK] gc archival 1 Test availability of differ...
- [OK] gc archival 2 Test archiving twice on dif...
- [OK] gc archival 3 Test reachability on old st...
- [OK] gc archival 4 Test one gc.
- [OK] gc archival 5 Test twice gc.
- [OK] gc archival 6 Test gc keeps commits.
- [OK] gc archival 7 Test adding back commits.
- [OK] gc archival 8 Test close.
- [OK] gc archival 9 Test gc commit with two par...
- [OK] gc archival 10 Test gc ro.
- [OK] gc archival 11 Test reload after two gc.
- [OK] gc archival 12 Test ro close.
- [OK] gc archival 13 Test ro reload after open.
- [OK] gc archival 14 Test lru.
- [OK] gc archival 15 Test gc during batch.
- [OK] gc archival 16 Test add back gced commit.
- [OK] gc archival 17 Test gc on similar commits.
- [OK] gc archival 18 Test oldest live commit.
- [OK] gc archival 19 Test worker gc stats.
- [OK] gc archival 20 Test gc_clears_lru.
- [OK] split 0 Test two splits.
- [OK] split 1 Test two splits for ro.
- [OK] split 2 Test splits and GC on V3 st...
- [OK] split 3 Test split and close.
- [OK] split 4 Test two gc followed by split.
- [OK] split 5 Test split and GC.
- [OK] split 6 Test multi split and GC.
- [OK] split 7 Test another split and GC.
- [OK] split 8 Test split during GC.
- [OK] split 9 Test commits and splits dur...
- [OK] split 10 Test split for always index...
- [OK] flush 0 Reload during flush stages.
- [OK] flush 1 Flush during reload stages.
- [OK] ranges 0 test ranges.
- [OK] mapping 0 test mapping on small inputs.
- [OK] mapping 1 test mapping on large inputs.
- [OK] test_nearest_geq 0 test_nearest_geq.
- [OK] layout 0 classify upper files.
- [OK] layout 1 classify volume files.
- [OK] dispatcher 0 read.
- [OK] corrupted 0 Corrupted control file.
- [OK] snapshot_gc 0 Import/export in rw.
- [OK] snapshot_gc 1 Import in ro.
- [OK] snapshot_gc 2 Export in ro.
- [OK] snapshot_gc 3 Snapshot gced commit.
- [OK] async tasks 0 Successful task.
- [OK] async tasks 1 Exception occurs in task.
- [OK] indexing strategy 0 test unique when switching ...
- [OK] lower: direct 0 empty lower.
- [OK] lower: direct 1 volume_num too high.
- [OK] lower: direct 2 add volume.
- [OK] lower: direct 3 add volume ro.
- [OK] lower: direct 4 add multiple empty.
- [OK] lower: direct 5 find volume.
- [OK] lower: direct 6 test read_exn.
- [OK] lower: store 0 create store.
- [OK] lower: store 1 create nested.
- [OK] lower: store 2 open rw with lower.
- [OK] lower: store 3 add volume with no lower.
- [OK] lower: store 4 add volume during gc.
- [OK] lower: store 5 control file updated after ...
- [OK] lower: store 6 add volume and reopen.
- [OK] lower: store 7 create without lower then m...
- [OK] lower: store 8 migrate v2.
- [OK] lower: store 9 migrate v3.
- [OK] lower: store 10 migrate then gc.
- [OK] lower: store 11 migrate then gc in lower.
- [OK] lower: store 12 test data locality.
- [OK] lower: store 13 test cleanup.
- [OK] PACK { Tezos } 0 High-level operations on tr...
- [OK] PACK { Tezos } 1 Basic operations on contents.
- [OK] PACK { Tezos } 2 Basic operations on nodes.
- [OK] PACK { Tezos } 3 Basic operations on commits.
- [OK] PACK { Tezos } 4 Basic operations on branches.
- [OK] PACK { Tezos } 5 Hash operations on trees.
- [OK] PACK { Tezos } 6 Basic merge operations.
- [OK] PACK { Tezos } 7 Test merges on tree updates.
- [OK] PACK { Tezos } 8 Tree caches and hashconsing.
- [OK] PACK { Tezos } 9 Tree proofs.
- [OK] PACK { Tezos } 10 Complex histories.
- [OK] PACK { Tezos } 11 Empty stores.
- [OK] PACK { Tezos } 12 Backend node manipulation.
- [OK] PACK { Tezos } 13 High-level store operations.
- [OK] PACK { Tezos } 14 High-level atomic store ope...
- [OK] PACK { Tezos } 15 High-level store merges.
- [OK] PACK { Tezos } 16 Unrelated merges.
- [OK] PACK { Tezos } 17 Low-level concurrency.
- [OK] PACK { Tezos } 18 Concurrent updates.
- [OK] PACK { Tezos } 19 Concurrent head updates.
- [OK] PACK { Tezos } 20 Concurrent merges.
- [OK] PACK { Tezos } 21 Shallow objects.
- [OK] PACK { Tezos } 22 Closure with disconnected c...
- [OK] PACK { Tezos } 23 Prehash collisions.
- [OK] PACK { Tezos } 24 with_tree strategies.
- [OK] PACK { Tezos } 25 Graph.Iter.
- [OK] PACK { Tezos } 26 Watch.Callbacks and excepti...
- [OK] PACK { Small_nodes } 0 High-level operations on tr...
- [OK] PACK { Small_nodes } 1 Basic operations on contents.
- [OK] PACK { Small_nodes } 2 Basic operations on nodes.
- [OK] PACK { Small_nodes } 3 Basic operations on commits.
- [OK] PACK { Small_nodes } 4 Basic operations on branches.
- [OK] PACK { Small_nodes } 5 Hash operations on trees.
- [OK] PACK { Small_nodes } 6 Basic merge operations.
- [OK] PACK { Small_nodes } 7 Test merges on tree updates.
- [OK] PACK { Small_nodes } 8 Tree caches and hashconsing.
- [OK] PACK { Small_nodes } 9 Tree proofs.
- [OK] PACK { Small_nodes } 10 Complex histories.
- [OK] PACK { Small_nodes } 11 Empty stores.
- [OK] PACK { Small_nodes } 12 Backend node manipulation.
- [OK] PACK { Small_nodes } 13 High-level store operations.
- [OK] PACK { Small_nodes } 14 High-level atomic store ope...
- [OK] PACK { Small_nodes } 15 High-level store merges.
- [OK] PACK { Small_nodes } 16 Unrelated merges.
- [OK] PACK { Small_nodes } 17 Low-level concurrency.
- [OK] PACK { Small_nodes } 18 Concurrent updates.
- [OK] PACK { Small_nodes } 19 Concurrent head updates.
- [OK] PACK { Small_nodes } 20 Concurrent merges.
- [OK] PACK { Small_nodes } 21 Shallow objects.
- [OK] PACK { Small_nodes } 22 Closure with disconnected c...
- [OK] PACK { Small_nodes } 23 Prehash collisions.
- [OK] PACK { Small_nodes } 24 with_tree strategies.
- [OK] PACK { Small_nodes } 25 Graph.Iter.
- [OK] PACK { Small_nodes } 26 Watch.Callbacks and excepti...
- [OK] PACK MEM 0 High-level operations on tr...
- [OK] PACK MEM 1 Basic operations on contents.
- [OK] PACK MEM 2 Basic operations on nodes.
- [OK] PACK MEM 3 Basic operations on commits.
- [OK] PACK MEM 4 Basic operations on branches.
- [OK] PACK MEM 5 Hash operations on trees.
- [OK] PACK MEM 6 Basic merge operations.
- [OK] PACK MEM 7 Test merges on tree updates.
- [OK] PACK MEM 8 Tree caches and hashconsing.
- [OK] PACK MEM 9 Tree proofs.
- [OK] PACK MEM 10 Complex histories.
- [OK] PACK MEM 11 Empty stores.
- [OK] PACK MEM 12 Backend node manipulation.
- [OK] PACK MEM 13 High-level store operations.
- [OK] PACK MEM 14 High-level atomic store ope...
- [OK] PACK MEM 15 High-level store merges.
- [OK] PACK MEM 16 Unrelated merges.
- [OK] PACK MEM 17 Low-level concurrency.
- [OK] PACK MEM 18 Concurrent updates.
- [OK] PACK MEM 19 Concurrent head updates.
- [OK] PACK MEM 20 Concurrent merges.
- [OK] PACK MEM 21 Shallow objects.
- [OK] PACK MEM 22 Closure with disconnected c...
- [OK] PACK MEM 23 Prehash collisions.
- [OK] PACK MEM 24 with_tree strategies.
- [OK] PACK MEM 25 Graph.Iter.
- [OK] PACK MEM 26 Watch.Callbacks and excepti...
-
- Full test results in `~/.opam/4.14.2/.opam-switch/build/irmin-tezos.3.11.0/_build/default/test/irmin-pack/_build/_tests/irmin-pack'.
- Test Successful in 46.169s. 242 tests run.
-> compiled irmin-tezos.3.11.0
-> removed irmin-tezos.3.11.0
-> installed irmin-tezos.3.11.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-22 17:34.54 ---> saved as "ac1832da4687a548271afa45a768147762c5bbf6050ddb970fb6aac808063842"
Job succeeded
2025-06-22 17:35.08: Job succeeded