Build:
- 0
2026-03-14 08:54.12: New job: test rune.1.0.0~alpha3, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29490/head (c7120f7700de940264bc1dd56ab588b456e7e08d)
on macos-homebrew-ocaml-5.4/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/29490/head" && git reset --hard c7120f77
git fetch origin master
git merge --no-edit f2e7a221a1292ea740e9a0a91ce5d1499fda869a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-5.4
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn rune.1.0.0~alpha3 1.0.0~alpha3
RUN opam reinstall rune.1.0.0~alpha3; \
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" != 'rune.1.0.0~alpha3' && 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 rune.1.0.0~alpha3) || true
RUN opam reinstall --with-test --verbose rune.1.0.0~alpha3; \
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" != 'rune.1.0.0~alpha3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-14 08:54.12: Using cache hint "macos-homebrew-ocaml-5.4-rune.1.0.0~alpha3-c7120f7700de940264bc1dd56ab588b456e7e08d"
2026-03-14 08:54.12: Using OBuilder spec:
((from macos-homebrew-ocaml-5.4)
(user (uid 1000) (gid 1000))
(run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url -k local --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn rune.1.0.0~alpha3 1.0.0~alpha3"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall rune.1.0.0~alpha3;\
\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\" != 'rune.1.0.0~alpha3' && 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 rune.1.0.0~alpha3) || true"))
(run (shell "opam reinstall --with-test --verbose rune.1.0.0~alpha3;\
\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\" != 'rune.1.0.0~alpha3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-14 08:54.12: Waiting for resource in pool OCluster
2026-03-14 08:54.14: Waiting for worker…
2026-03-14 11:08.39: Got resource from pool OCluster
Building on i7-worker-02
All commits already cached
Updating files: 30% (5646/18452)
Updating files: 31% (5721/18452)
Updating files: 32% (5905/18452)
Updating files: 33% (6090/18452)
Updating files: 34% (6274/18452)
Updating files: 35% (6459/18452)
Updating files: 36% (6643/18452)
Updating files: 37% (6828/18452)
Updating files: 38% (7012/18452)
Updating files: 39% (7197/18452)
Updating files: 40% (7381/18452)
Updating files: 41% (7566/18452)
Updating files: 42% (7750/18452)
Updating files: 43% (7935/18452)
Updating files: 44% (8119/18452)
Updating files: 45% (8304/18452)
Updating files: 46% (8488/18452)
Updating files: 47% (8673/18452)
Updating files: 48% (8857/18452)
Updating files: 49% (9042/18452)
Updating files: 50% (9226/18452)
Updating files: 51% (9411/18452)
Updating files: 52% (9596/18452)
Updating files: 53% (9780/18452)
Updating files: 54% (9965/18452)
Updating files: 55% (10149/18452)
Updating files: 56% (10334/18452)
Updating files: 57% (10518/18452)
Updating files: 57% (10648/18452)
Updating files: 58% (10703/18452)
Updating files: 59% (10887/18452)
Updating files: 60% (11072/18452)
Updating files: 61% (11256/18452)
Updating files: 62% (11441/18452)
Updating files: 63% (11625/18452)
Updating files: 64% (11810/18452)
Updating files: 65% (11994/18452)
Updating files: 66% (12179/18452)
Updating files: 67% (12363/18452)
Updating files: 68% (12548/18452)
Updating files: 69% (12732/18452)
Updating files: 70% (12917/18452)
Updating files: 71% (13101/18452)
Updating files: 72% (13286/18452)
Updating files: 73% (13470/18452)
Updating files: 74% (13655/18452)
Updating files: 75% (13839/18452)
Updating files: 76% (14024/18452)
Updating files: 77% (14209/18452)
Updating files: 78% (14393/18452)
Updating files: 79% (14578/18452)
Updating files: 80% (14762/18452)
Updating files: 81% (14947/18452)
Updating files: 82% (15131/18452)
Updating files: 83% (15316/18452)
Updating files: 84% (15500/18452)
Updating files: 85% (15685/18452)
Updating files: 86% (15869/18452)
Updating files: 87% (16054/18452)
Updating files: 88% (16238/18452)
Updating files: 89% (16423/18452)
Updating files: 89% (16469/18452)
Updating files: 90% (16607/18452)
Updating files: 91% (16792/18452)
Updating files: 92% (16976/18452)
Updating files: 93% (17161/18452)
Updating files: 94% (17345/18452)
Updating files: 95% (17530/18452)
Updating files: 96% (17714/18452)
Updating files: 97% (17899/18452)
Updating files: 98% (18083/18452)
Updating files: 99% (18268/18452)
Updating files: 100% (18452/18452)
Updating files: 100% (18452/18452), done.
HEAD is now at f2e7a221a1 Merge pull request #29531 from talex5/release-libinput-v0.1
Updating f2e7a221a1..c7120f7700
Fast-forward
packages/brot/brot.1.0.0~alpha3/opam | 50 ++++++++++++++++++
packages/fehu/fehu.1.0.0~alpha3/opam | 44 ++++++++++++++++
packages/hugin/hugin.1.0.0~alpha3/opam | 46 +++++++++++++++++
packages/kaun-board/kaun-board.1.0.0~alpha3/opam | 47 +++++++++++++++++
packages/kaun/kaun.1.0.0~alpha3/opam | 47 +++++++++++++++++
packages/nx/nx.1.0.0~alpha3/opam | 64 ++++++++++++++++++++++++
packages/quill/quill.1.0.0~alpha3/opam | 54 ++++++++++++++++++++
packages/raven/raven.1.0.0~alpha3/opam | 50 ++++++++++++++++++
packages/rune/rune.1.0.0~alpha3/opam | 50 ++++++++++++++++++
packages/sowilo/sowilo.1.0.0~alpha3/opam | 46 +++++++++++++++++
packages/talon/talon.1.0.0~alpha3/opam | 44 ++++++++++++++++
11 files changed, 542 insertions(+)
create mode 100644 packages/brot/brot.1.0.0~alpha3/opam
create mode 100644 packages/fehu/fehu.1.0.0~alpha3/opam
create mode 100644 packages/hugin/hugin.1.0.0~alpha3/opam
create mode 100644 packages/kaun-board/kaun-board.1.0.0~alpha3/opam
create mode 100644 packages/kaun/kaun.1.0.0~alpha3/opam
create mode 100644 packages/nx/nx.1.0.0~alpha3/opam
create mode 100644 packages/quill/quill.1.0.0~alpha3/opam
create mode 100644 packages/raven/raven.1.0.0~alpha3/opam
create mode 100644 packages/rune/rune.1.0.0~alpha3/opam
create mode 100644 packages/sowilo/sowilo.1.0.0~alpha3/opam
create mode 100644 packages/talon/talon.1.0.0~alpha3/opam
(from macos-homebrew-ocaml-5.4)
2026-03-14 11:08.44 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-03-14 11:08.45 ---> using "7aa34524ca0a69b4a488c30909f7495a04a243f9066091b1dfe73b446b0dfcd3" from cache
/: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-03-14 11:08.45 ---> using "91dcaa513ca3161d91620d0583acdea5310cd52ccab1dfbdd183600da37afdb2" from cache
/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=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 5.4.0
# invariant ["ocaml-base-compiler" {= "5.4.0"} | "ocaml-system" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /Users/mac1000/.opam/5.4.0/lib/ocaml/stublibs:/Users/mac1000/.opam/5.4.0/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-14 11:08.46 ---> using "cea1bfc0b1cda73d964aa2fc69cc828a6e6d8edd86f991754707e8b004a3cb09" from cache
/: (env OPAMDOWNLOADJOBS 1)
/: (env OPAMERRLOGLEN 0)
/: (env OPAMPRECISETRACKING 1)
/: (env CI true)
/: (env OPAM_REPO_CI true)
/: (run (shell "rm -rf opam-repository/"))
2026-03-14 11:08.46 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache
/: (copy (src .) (dst opam-repository/))
2026-03-14 11:08.48 ---> using "646cc60012a0de19c9804d9725c5c7fb281a1bd01a787a22049729650e86c02e" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-03-14 11:08.48 ---> using "69c749abac6be7dbdf4a5fb6bdd6601e602a8a2a251a220783eb58b264d56c2a" from cache
/: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:e4f27cef5f72bf7a99c748c0650fe3718fe661a56960dedaeec9c2c98de1d3bc
- #=#=#
0.1%
1.3%
# 2.2%
## 3.0%
## 4.0%
### 4.8%
#### 5.6%
-
#### 6.4%
##### 7.4%
##### 8.2%
###### 9.0%
####### 9.8%
####### 10.6%
####### 10.9%
######## 11.1%
######## 11.4%
######## 11.7%
######## 12.1%
-
######## 12.3%
######### 12.6%
######### 12.9%
######### 13.3%
######### 13.6%
######### 13.8%
########## 14.1%
########## 14.4%
########## 14.8%
########## 15.0%
-
########### 15.3%
########### 15.6%
########### 15.9%
########### 16.1%
########### 16.4%
############ 16.8%
############ 17.1%
############ 17.3%
############ 17.6%
############ 17.9%
############# 18.1%
############# 18.4%
-
############# 18.8%
############# 19.1%
############# 19.4%
############## 19.6%
############## 19.9%
############## 20.3%
############## 20.6%
############### 20.8%
############### 21.1%
############### 21.4%
-
############### 21.7%
############### 21.9%
############### 22.2%
################ 22.6%
################ 22.9%
################ 23.1%
################ 23.4%
################# 23.7%
################# 23.9%
################# 24.2%
################# 24.6%
-
################## 25.0%
################## 25.4%
################## 25.8%
################## 26.2%
################### 26.6%
################### 27.2%
################### 27.6%
#################### 28.0%
#################### 28.4%
#################### 28.8%
##################### 29.2%
-
##################### 29.7%
##################### 30.1%
##################### 30.6%
###################### 31.0%
###################### 31.4%
###################### 31.9%
####################### 32.3%
####################### 32.7%
####################### 33.1%
######################## 33.5%
######################## 34.1%
-
######################## 34.5%
######################### 34.9%
######################### 35.3%
######################### 35.7%
######################### 36.1%
########################## 36.6%
########################## 37.0%
########################## 37.4%
########################### 37.8%
########################### 38.2%
########################### 38.6%
-
############################ 39.0%
############################ 39.6%
############################ 40.1%
############################# 40.5%
############################# 40.9%
############################# 41.5%
############################## 41.9%
############################## 42.3%
############################## 42.7%
############################### 43.1%
############################### 43.6%
-
############################### 44.0%
############################### 44.4%
################################ 45.0%
################################ 45.4%
################################# 45.9%
################################# 46.3%
################################# 46.7%
################################## 47.3%
################################## 47.7%
################################## 48.1%
-
################################### 48.6%
################################### 49.0%
################################### 49.4%
#################################### 50.1%
#################################### 50.9%
##################################### 51.9%
##################################### 52.7%
###################################### 53.5%
####################################### 54.3%
####################################### 55.2%
-
######################################## 56.2%
######################################### 57.0%
######################################### 57.8%
########################################## 58.7%
########################################## 59.5%
########################################### 60.4%
############################################ 61.2%
############################################ 62.1%
############################################# 62.9%
############################################# 63.7%
############################################## 64.7%
-
############################################### 65.5%
############################################### 66.3%
################################################ 67.1%
################################################ 68.0%
################################################# 68.9%
################################################## 69.7%
################################################## 70.5%
################################################### 71.4%
#################################################### 72.2%
#################################################### 73.0%
##################################################### 73.8%
-
##################################################### 74.8%
###################################################### 75.6%
####################################################### 76.4%
####################################################### 77.4%
######################################################## 78.2%
######################################################## 79.1%
######################################################### 79.9%
########################################################## 80.9%
########################################################## 81.7%
########################################################### 82.6%
############################################################ 83.6%
-
############################################################ 84.4%
############################################################# 85.2%
############################################################## 86.1%
############################################################## 86.9%
############################################################### 87.7%
############################################################### 88.5%
################################################################ 89.4%
################################################################# 90.3%
################################################################# 91.1%
################################################################## 91.9%
################################################################## 92.9%
-
################################################################### 93.7%
#################################################################### 94.5%
#################################################################### 95.3%
##################################################################### 96.2%
##################################################################### 97.0%
###################################################################### 97.8%
####################################################################### 98.7%
####################################################################### 99.6%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.1.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
- https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
-
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
- https://github.com/Homebrew/brew#donations
-
- Already up-to-date.
2026-03-14 11:08.49 ---> using "c5808e03fba28fcd3c9b7bb69b0094043bf2e8ac2ffabc32c3070025e7900771" from cache
/: (run (shell "opam pin add -k version -yn rune.1.0.0~alpha3 1.0.0~alpha3"))
rune is now pinned to version 1.0.0~alpha3
2026-03-14 11:08.49 ---> using "55eaf04edf9380ed37ba4e6920b368ab50bc52663f1af64578e1ba34a0120fbd" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall rune.1.0.0~alpha3;\
\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\" != 'rune.1.0.0~alpha3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
rune.1.0.0~alpha3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
- install conf-pkg-config 4 [required by nx]
- install conf-zlib 1 [required by nx]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.1 [required by rune]
- install dune-configurator 3.21.1 [required by rune]
- install logs 0.10.0 [required by nx]
- install nx 1.0.0~alpha3 [required by rune]
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install rune 1.0.0~alpha3 (pinned)
- install topkg 1.1.1 [required by logs]
The following system packages will first need to be installed:
openblas pkgconf zlib
<><> 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" "openblas" "pkgconf" "zlib"
- ==> Fetching downloads for: openblas, pkgconf and zlib
- ✔︎ Bottle Manifest openblas (0.3.31_1)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest zlib (1.3.2)
- ✔︎ Bottle Manifest zlib (1.3.2)
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle gmp (6.3.0)
- ✔︎ Bottle Manifest isl (0.27)
- ✔︎ Bottle isl (0.27)
- ✔︎ Bottle Manifest mpfr (4.2.2)
- ✔︎ Bottle mpfr (4.2.2)
- ✔︎ Bottle Manifest libmpc (1.3.1)
- ✔︎ Bottle libmpc (1.3.1)
- ✔︎ Bottle Manifest lz4 (1.10.0)
- ✔︎ Bottle lz4 (1.10.0)
- ✔︎ Bottle Manifest xz (5.8.2)
- ✔︎ Bottle xz (5.8.2)
- ✔︎ Bottle Manifest zstd (1.5.7_1)
- ✔︎ Bottle zstd (1.5.7_1)
- ✔︎ Bottle Manifest gcc (15.2.0_1)
- ✔︎ Bottle Manifest libomp (22.1.1)
- ✔︎ Bottle libomp (22.1.1)
- ✔︎ Bottle pkgconf (2.5.1)
- ✔︎ Bottle zlib (1.3.2)
- ✔︎ Bottle openblas (0.3.31_1)
- ✔︎ Bottle gcc (15.2.0_1)
- ==> Installing dependencies for openblas: gmp, isl, mpfr, libmpc, lz4, xz, zstd, gcc and libomp
- ==> Installing openblas dependency: gmp
- ==> Pouring gmp--6.3.0.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/gmp/6.3.0: 22 files, 3.4MB
- ==> Installing openblas dependency: isl
- ==> Pouring isl--0.27.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/isl/0.27: 74 files, 8MB
- ==> Installing openblas dependency: mpfr
- ==> Pouring mpfr--4.2.2.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/mpfr/4.2.2: 31 files, 3.3MB
- ==> Installing openblas dependency: libmpc
- ==> Pouring libmpc--1.3.1.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/libmpc/1.3.1: 13 files, 476.5KB
- ==> Installing openblas dependency: lz4
- ==> Pouring lz4--1.10.0.sequoia.bottle.1.tar.gz
- 🍺 /usr/local/Cellar/lz4/1.10.0: 24 files, 678.2KB
- ==> Installing openblas dependency: xz
- ==> Pouring xz--5.8.2.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/xz/5.8.2: 96 files, 2.4MB
- ==> Installing openblas dependency: zstd
- ==> Pouring zstd--1.5.7_1.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/zstd/1.5.7_1: 32 files, 2.5MB
- ==> Installing openblas dependency: gcc
- ==> Pouring gcc--15.2.0_1.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/gcc/15.2.0_1: 1,715 files, 513.7MB
- ==> Installing openblas dependency: libomp
- ==> Pouring libomp--22.1.1.sonoma.bottle.tar.gz
- 🍺 /usr/local/Cellar/libomp/22.1.1: 11 files, 1.8MB
- ==> Installing openblas
- ==> Pouring openblas--0.3.31_1.sonoma.bottle.tar.gz
- ==> Caveats
- openblas is keg-only, which means it was not symlinked into /usr/local,
- because macOS provides BLAS in Accelerate.framework.
-
- For compilers to find openblas you may need to set:
- export LDFLAGS="-L/usr/local/opt/openblas/lib"
- export CPPFLAGS="-I/usr/local/opt/openblas/include"
- ==> Summary
- 🍺 /usr/local/Cellar/openblas/0.3.31_1: 29 files, 136.0MB
- ==> Running `brew cleanup openblas`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> Pouring pkgconf--2.5.1.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/pkgconf/2.5.1: 28 files, 383.2KB
- ==> Running `brew cleanup pkgconf`...
- ==> Pouring zlib--1.3.2.sonoma.bottle.tar.gz
- ==> Caveats
- zlib is keg-only, which means it was not symlinked into /usr/local,
- because macOS already provides this software and installing another version in
- parallel can cause all kinds of trouble.
-
- For compilers to find zlib you may need to set:
- export LDFLAGS="-L/usr/local/opt/zlib/lib"
- export CPPFLAGS="-I/usr/local/opt/zlib/include"
-
- For pkgconf to find zlib you may need to set:
- export PKG_CONFIG_PATH="/usr/local/opt/zlib/lib/pkgconfig"
- ==> Summary
- 🍺 /usr/local/Cellar/zlib/1.3.2: 14 files, 412.0KB
- ==> Running `brew cleanup zlib`...
- ==> Caveats
- ==> openblas
- openblas is keg-only, which means it was not symlinked into /usr/local,
- because macOS provides BLAS in Accelerate.framework.
-
- For compilers to find openblas you may need to set:
- export LDFLAGS="-L/usr/local/opt/openblas/lib"
- export CPPFLAGS="-I/usr/local/opt/openblas/include"
- ==> zlib
- zlib is keg-only, which means it was not symlinked into /usr/local,
- because macOS already provides this software and installing another version in
- parallel can cause all kinds of trouble.
-
- For compilers to find zlib you may need to set:
- export LDFLAGS="-L/usr/local/opt/zlib/lib"
- export CPPFLAGS="-I/usr/local/opt/zlib/include"
-
- For pkgconf to find zlib you may need to set:
- export PKG_CONFIG_PATH="/usr/local/opt/zlib/lib/pkgconfig"
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2 (cached)
-> installed conf-zlib.1
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved nx.1.0.0~alpha3, rune.1.0.0~alpha3 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed logs.0.10.0
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.1
-> installed nx.1.0.0~alpha3
-> installed rune.1.0.0~alpha3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-14 11:08.50 ---> using "1a891b6a3527cb944301fece2b0712378170a65885162cf78ef04bbfb666bd98" from cache
/: (run (network host)
(shell "(opam reinstall --with-test rune.1.0.0~alpha3) || true"))
The following actions will be performed:
=== recompile 3 packages
- recompile logs 0.10.0 [uses cmdliner]
- recompile nx 1.0.0~alpha3 [uses logs]
- recompile rune 1.0.0~alpha3 (pinned)
=== install 10 packages
- install astring 0.8.5 [required by mdx]
- install camlp-streams 5.0.1 [required by mdx]
- install cmdliner 2.1.0 [required by mdx]
- install cppo 1.8.0 [required by mdx]
- install fmt 0.11.0 [required by mdx]
- install mdx 2.5.1 [required by rune]
- install ocaml-version 4.0.3 [required by mdx]
- install re 1.14.0 [required by mdx]
- install result 1.5 [required by mdx]
- install windtrap 0.1.0 [required by rune]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved camlp-streams.5.0.1 (https://github.com/ocaml/camlp-streams/archive/v5.0.1.tar.gz)
-> retrieved cmdliner.2.1.0 (https://erratique.ch/software/cmdliner/releases/cmdliner-2.1.0.tbz)
-> retrieved cppo.1.8.0 (https://github.com/ocaml-community/cppo/archive/v1.8.0.tar.gz)
-> installed camlp-streams.5.0.1
-> retrieved fmt.0.11.0 (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
-> retrieved logs.0.10.0 (https://erratique.ch/software/logs/releases/logs-0.10.0.tbz)
-> retrieved mdx.2.5.1 (https://github.com/realworldocaml/mdx/releases/download/2.5.1/mdx-2.5.1.tbz)
-> installed cppo.1.8.0
-> installed astring.0.8.5
-> installed cmdliner.2.1.0
-> installed fmt.0.11.0
-> retrieved nx.1.0.0~alpha3, rune.1.0.0~alpha3 (https://github.com/raven-ml/raven/releases/download/1.0.0_alpha3/raven-1.0.0.alpha3.tbz)
-> retrieved ocaml-version.4.0.3 (https://github.com/ocurrent/ocaml-version/releases/download/v4.0.3/ocaml-version-4.0.3.tbz)
-> retrieved re.1.14.0 (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
-> installed ocaml-version.4.0.3
-> retrieved result.1.5 (https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz)
-> installed result.1.5
-> retrieved windtrap.0.1.0 (https://github.com/invariant-hq/windtrap/releases/download/0.1.0/windtrap-0.1.0.tbz)
-> installed re.1.14.0
-> removed rune.1.0.0~alpha3
-> removed nx.1.0.0~alpha3
-> removed logs.0.10.0
-> installed logs.0.10.0
-> installed windtrap.0.1.0
-> installed mdx.2.5.1
-> installed nx.1.0.0~alpha3
-> installed rune.1.0.0~alpha3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-14 11:10.03 ---> saved as "d9c07b5ae99cde3e6a3f0fe958b5f89cfe696f67ea974eb8d405b27e5a93118f"
/: (run (shell "opam reinstall --with-test --verbose rune.1.0.0~alpha3;\
\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\" != 'rune.1.0.0~alpha3' && 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 rune 1.0.0~alpha3 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [rune: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rune" "-j" "11" "@install" "@runtest" (CWD=/Users/mac1000/.opam/5.4.0/.opam-switch/build/rune.1.0.0~alpha3)
- (cd _build/default/packages/rune/test && ./test_gradcheck.exe)
-
- Testing Gradient Checking.
-
- ...........
-
- All tests passed in 11ms. 11 tests run.
-
- Test output saved to ~/.opam/5.4.0/.opam-switch/build/rune.1.0.0~alpha3/_build/_tests/Gradient Checking/RQG7SPIQ/
- (cd _build/default/packages/rune/test && ./test_custom_diff.exe)
-
- Testing Rune Custom Diff Tests.
-
- ..............
-
- All tests passed in 10ms. 14 tests run.
-
- Test output saved to ~/.opam/5.4.0/.opam-switch/build/rune.1.0.0~alpha3/_build/_tests/Rune Custom Diff Tests/T47TSMO8/
- (cd _build/default/packages/rune/test && ./test_jvp.exe)
-
- Testing Rune JVP Comprehensive Tests.
-
- ................................................
-
- All tests passed in 26ms. 48 tests run.
-
- Test output saved to ~/.opam/5.4.0/.opam-switch/build/rune.1.0.0~alpha3/_build/_tests/Rune JVP Comprehensive Tests/HPLIH5IB/
- (cd _build/default/packages/rune/test && ./test_vjp.exe)
-
- Testing Rune VJP Tests.
-
- ............................................................ [60/81]
- .....................
-
- All tests passed in 36ms. 81 tests run.
-
- Test output saved to ~/.opam/5.4.0/.opam-switch/build/rune.1.0.0~alpha3/_build/_tests/Rune VJP Tests/96V22HJ3/
-> compiled rune.1.0.0~alpha3
-> removed rune.1.0.0~alpha3
-> installed rune.1.0.0~alpha3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-14 11:10.14 ---> saved as "b631e09614279ed0a3b9295308a6b88da23be39b57866b7dcd3d7b37cf506b6f"
Job succeeded
2026-03-14 11:10.27: Job succeeded