Build:
- 0
2026-01-17 20:26.31: New job: test ppx_subliner.0.2.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29237/head (f14cb352e3f8994f042e0794667f2cf7199b1cb0)
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/29237/head" && git reset --hard f14cb352
git fetch origin master
git merge --no-edit 6bda456f941d6c1e0773fcb1fd57c0eb54b8a2c1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-5.4
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ppx_subliner.0.2.2 0.2.2
RUN opam reinstall ppx_subliner.0.2.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ppx_subliner.0.2.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test ppx_subliner.0.2.2) || true
RUN opam reinstall --with-test --verbose ppx_subliner.0.2.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ppx_subliner.0.2.2' && 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-01-17 20:26.31: Using cache hint "macos-homebrew-ocaml-5.4-ppx_subliner.0.2.2-f14cb352e3f8994f042e0794667f2cf7199b1cb0"
2026-01-17 20:26.31: Using OBuilder spec:
((from macos-homebrew-ocaml-5.4)
(user (uid 1000) (gid 1000))
(run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url -k local --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ppx_subliner.0.2.2 0.2.2"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall ppx_subliner.0.2.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppx_subliner.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test ppx_subliner.0.2.2) || true"))
(run (shell "opam reinstall --with-test --verbose ppx_subliner.0.2.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppx_subliner.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-17 20:26.31: Waiting for resource in pool OCluster
2026-01-17 20:26.32: Waiting for worker…
2026-01-17 20:29.00: Got resource from pool OCluster
Building on i7-worker-02
All commits already cached
Updating files: 33% (6516/19221)
Updating files: 34% (6536/19221)
Updating files: 35% (6728/19221)
Updating files: 36% (6920/19221)
Updating files: 37% (7112/19221)
Updating files: 38% (7304/19221)
Updating files: 39% (7497/19221)
Updating files: 40% (7689/19221)
Updating files: 41% (7881/19221)
Updating files: 42% (8073/19221)
Updating files: 43% (8266/19221)
Updating files: 44% (8458/19221)
Updating files: 45% (8650/19221)
Updating files: 46% (8842/19221)
Updating files: 47% (9034/19221)
Updating files: 48% (9227/19221)
Updating files: 49% (9419/19221)
Updating files: 50% (9611/19221)
Updating files: 51% (9803/19221)
Updating files: 52% (9995/19221)
Updating files: 53% (10188/19221)
Updating files: 54% (10380/19221)
Updating files: 55% (10572/19221)
Updating files: 56% (10764/19221)
Updating files: 57% (10956/19221)
Updating files: 58% (11149/19221)
Updating files: 58% (11165/19221)
Updating files: 59% (11341/19221)
Updating files: 60% (11533/19221)
Updating files: 61% (11725/19221)
Updating files: 62% (11918/19221)
Updating files: 63% (12110/19221)
Updating files: 64% (12302/19221)
Updating files: 65% (12494/19221)
Updating files: 66% (12686/19221)
Updating files: 67% (12879/19221)
Updating files: 68% (13071/19221)
Updating files: 69% (13263/19221)
Updating files: 70% (13455/19221)
Updating files: 71% (13647/19221)
Updating files: 72% (13840/19221)
Updating files: 73% (14032/19221)
Updating files: 74% (14224/19221)
Updating files: 75% (14416/19221)
Updating files: 76% (14608/19221)
Updating files: 77% (14801/19221)
Updating files: 78% (14993/19221)
Updating files: 79% (15185/19221)
Updating files: 80% (15377/19221)
Updating files: 81% (15570/19221)
Updating files: 82% (15762/19221)
Updating files: 83% (15954/19221)
Updating files: 84% (16146/19221)
Updating files: 85% (16338/19221)
Updating files: 86% (16531/19221)
Updating files: 87% (16723/19221)
Updating files: 88% (16915/19221)
Updating files: 89% (17107/19221)
Updating files: 89% (17244/19221)
Updating files: 90% (17299/19221)
Updating files: 91% (17492/19221)
Updating files: 92% (17684/19221)
Updating files: 93% (17876/19221)
Updating files: 94% (18068/19221)
Updating files: 95% (18260/19221)
Updating files: 96% (18453/19221)
Updating files: 97% (18645/19221)
Updating files: 98% (18837/19221)
Updating files: 99% (19029/19221)
Updating files: 100% (19221/19221)
Updating files: 100% (19221/19221), done.
HEAD is now at 6bda456f94 Merge pull request #29229 from elias-utf8/opam-publish-qcaml.0.1.7
Updating 6bda456f94..f14cb352e3
Fast-forward
packages/ppx_subliner/ppx_subliner.0.2.2/opam | 44 +++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
create mode 100644 packages/ppx_subliner/ppx_subliner.0.2.2/opam
(from macos-homebrew-ocaml-5.4)
2026-01-17 20:29.05 ---> using "338135fbf1889e924a607b47198b8b308c32a925cc9436066d65a9bdc402cad5" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-01-17 20:29.05 ---> 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-01-17 20:29.06 ---> 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-01-17 20:29.06 ---> 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-01-17 20:29.06 ---> using "e3eba35b672d86e69268bbb9214f23a1f9d1fb0787b4d803840af8d45829b222" from cache
/: (copy (src .) (dst opam-repository/))
2026-01-17 20:29.08 ---> using "87ee77b179c2e345272fd152944672a63fdab22ab19a4538e1dadab5ef7ad8c7" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-01-17 20:29.09 ---> using "63393ea134fc84d0802193e1eec29635b96dde5f707256009b851d8d9b20f972" from cache
/: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:80c194381e990a4967a1ae44b8242b688e6a17ab590865a38671137677411469
- #=#=#
0.1%
0.8%
-
# 1.5%
# 2.1%
# 2.5%
## 3.6%
## 4.0%
### 4.5%
### 4.9%
### 5.3%
#### 5.8%
-
#### 6.2%
#### 6.7%
##### 7.1%
##### 7.5%
##### 8.1%
###### 8.5%
###### 8.9%
###### 9.3%
####### 9.7%
####### 10.3%
####### 10.7%
-
######## 11.2%
######## 11.7%
######## 12.1%
######## 12.5%
######### 12.9%
######### 13.3%
######### 13.9%
########## 14.3%
########## 14.8%
########## 15.2%
-
########### 15.8%
########### 16.2%
########### 16.6%
############ 17.1%
############ 17.6%
############ 18.0%
############# 18.4%
############# 18.8%
############# 19.3%
############## 19.7%
############## 20.2%
-
############## 20.6%
############### 21.0%
############### 21.4%
############### 21.9%
################ 22.4%
################ 22.8%
################ 23.2%
################# 23.7%
################# 24.1%
################# 24.5%
################# 25.0%
-
################## 25.4%
################## 25.8%
################## 26.3%
################### 26.7%
################### 27.2%
################### 27.6%
#################### 28.0%
#################### 28.5%
#################### 28.9%
##################### 29.3%
##################### 29.8%
-
##################### 30.2%
###################### 30.6%
###################### 31.0%
###################### 31.5%
####################### 32.0%
####################### 32.4%
####################### 32.8%
####################### 33.2%
######################## 33.7%
######################## 34.1%
-
######################## 34.6%
######################### 35.0%
######################### 35.4%
######################### 35.7%
########################## 36.2%
########################## 36.6%
########################## 37.0%
########################### 37.6%
########################### 38.0%
########################### 38.4%
########################### 38.8%
-
############################ 39.4%
############################ 39.8%
############################# 40.3%
############################# 40.7%
############################# 41.1%
############################# 41.6%
############################## 42.1%
############################## 42.5%
############################## 42.9%
############################### 43.3%
############################### 43.7%
-
############################### 44.3%
################################ 44.7%
################################ 45.1%
################################ 45.5%
################################# 45.9%
################################# 46.4%
################################# 46.9%
################################## 47.3%
################################## 47.7%
################################## 48.3%
-
################################## 48.5%
################################### 49.0%
################################### 49.5%
################################### 49.9%
#################################### 50.3%
#################################### 50.7%
#################################### 51.3%
##################################### 51.7%
##################################### 52.1%
##################################### 52.5%
###################################### 52.9%
-
###################################### 53.5%
###################################### 53.9%
####################################### 54.3%
####################################### 54.7%
####################################### 55.1%
######################################## 55.7%
######################################## 56.1%
######################################## 56.5%
######################################## 56.9%
######################################### 57.3%
######################################### 57.9%
-
######################################### 58.3%
########################################## 58.7%
########################################## 59.1%
########################################## 59.5%
########################################### 59.9%
########################################### 60.5%
########################################### 60.9%
############################################ 61.3%
############################################ 61.7%
############################################ 62.1%
############################################# 62.7%
-
############################################# 63.1%
############################################# 63.5%
############################################## 63.9%
############################################## 64.3%
############################################## 64.7%
############################################## 65.3%
############################################### 65.7%
############################################### 66.1%
############################################### 66.5%
################################################ 66.9%
################################################ 67.3%
-
################################################ 67.9%
################################################# 68.3%
################################################# 68.7%
################################################# 69.1%
################################################## 69.5%
################################################## 69.9%
################################################## 70.5%
################################################### 70.9%
################################################### 71.3%
################################################### 71.7%
-
################################################### 72.1%
#################################################### 72.7%
#################################################### 73.1%
#################################################### 73.5%
##################################################### 73.9%
##################################################### 74.3%
##################################################### 74.7%
###################################################### 75.3%
###################################################### 75.7%
###################################################### 76.1%
####################################################### 76.5%
####################################################### 76.9%
-
####################################################### 77.3%
####################################################### 77.8%
######################################################## 78.2%
######################################################## 78.7%
######################################################## 79.1%
######################################################### 79.7%
######################################################### 80.1%
######################################################### 80.5%
########################################################## 80.9%
########################################################## 81.3%
-
########################################################## 81.9%
########################################################### 82.3%
########################################################### 82.7%
########################################################### 83.1%
############################################################ 83.5%
############################################################ 83.9%
############################################################ 84.3%
############################################################# 84.9%
############################################################# 85.3%
############################################################# 85.7%
############################################################## 86.1%
-
############################################################## 86.5%
############################################################## 87.1%
############################################################## 87.5%
############################################################### 87.9%
############################################################### 88.3%
############################################################### 88.7%
################################################################ 89.1%
################################################################ 89.7%
################################################################ 90.1%
################################################################# 90.6%
################################################################# 91.1%
-
################################################################# 91.5%
################################################################## 91.9%
################################################################## 92.4%
################################################################## 92.8%
################################################################### 93.3%
################################################################### 93.8%
################################################################### 94.2%
#################################################################### 94.6%
#################################################################### 95.0%
#################################################################### 95.4%
##################################################################### 95.9%
-
##################################################################### 96.3%
##################################################################### 96.8%
###################################################################### 97.2%
###################################################################### 97.6%
###################################################################### 98.1%
###################################################################### 98.6%
####################################################################### 99.0%
####################################################################### 99.4%
####################################################################### 99.8%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.8.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
- https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
-
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
- https://github.com/Homebrew/brew#donations
-
- Already up-to-date.
2026-01-17 20:29.09 ---> using "a8cefb8d4f2e5ba1d64ddc69782ebadecbe6fe377df72f082d3011706ce3342b" from cache
/: (run (shell "opam pin add -k version -yn ppx_subliner.0.2.2 0.2.2"))
ppx_subliner is now pinned to version 0.2.2
2026-01-17 20:29.09 ---> using "68d6f22a83ea3952e7c3a4e68c66ddeeb0fe1776cf57146bd63ecf655dab2b91" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall ppx_subliner.0.2.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ppx_subliner.0.2.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ppx_subliner.0.2.2 is not installed. Install it? [Y/n] y
* No agreement on the version of ocaml-base-compiler:
- (invariant) -> ocaml-base-compiler >= 5.4.0
- ppx_subliner >= 0.2.2 -> ppx_make >= 0.3.0 -> ppxlib < 0.36.0 -> ocaml < 5.4.0 -> ocaml-base-compiler < 5.3.1~
You can temporarily relax the switch invariant with `--update-invariant'
* No agreement on the version of ocaml-base-compiler:
- (invariant) -> ocaml-base-compiler >= 5.4.0
- ppx_subliner >= 0.2.2 -> ppx_make >= 0.3.0 -> ppxlib < 0.36.0 -> ocaml-migrate-parsetree >= 1.3.1 -> ocaml < 5.1 -> ocaml-base-compiler < 5.0.1~
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0
- ppx_subliner >= 0.2.2 -> ppx_make >= 0.3.0 -> ppxlib < 0.36.0 -> ocaml < 4.10 -> ocaml-variants
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.4.0
- ppx_subliner >= 0.2.2 -> ppx_make >= 0.3.0 -> ppxlib < 0.36.0 -> ocaml-migrate-parsetree >= 1.3.1 -> ocaml < 4.13 -> dkml-base-compiler
* Missing dependency:
- ppx_subliner >= 0.2.2 -> ppx_make >= 0.3.0 -> ppxlib < 0.36.0 -> ocaml < 4.10 -> ocaml-variants -> ocaml-beta
unmet availability conditions: 'enable-ocaml-beta-repository'
* Missing dependency:
- ppx_subliner >= 0.2.2 -> ppx_make >= 0.3.0 -> ppxlib < 0.36.0 -> ocaml < 4.10 -> ocaml-variants -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall ppx_subliner.0.2.2;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'ppx_subliner.0.2.2' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 20
2026-01-17 20:29.39: Job failed: Failed: Build failed
2026-01-17 20:29.39: Log analysis:
2026-01-17 20:29.39: >>>
No solution found, exiting
(score = 100)
2026-01-17 20:29.39: [SKIP] Package not available