Build:
- 0
2026-03-05 14:44.12: New job: test opentelemetry-client-cohttp-lwt.0.13, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29501/head (cdff5cea813cc67e3b6af2e3e942f06b406991a2)
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/29501/head" && git reset --hard cdff5cea
git fetch origin master
git merge --no-edit f3ca8d6739c241b5e16cab2307b0bf8a5db266e9
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
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 opentelemetry-client-cohttp-lwt.0.13 0.13
RUN opam reinstall opentelemetry-client-cohttp-lwt.0.13; \
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" != 'opentelemetry-client-cohttp-lwt.0.13' && 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 opentelemetry-client-cohttp-lwt.0.13) || true
RUN opam reinstall --with-test --verbose opentelemetry-client-cohttp-lwt.0.13; \
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" != 'opentelemetry-client-cohttp-lwt.0.13' && 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-05 14:44.12: Using cache hint "macos-homebrew-ocaml-4.14-opentelemetry-client-cohttp-lwt.0.13-cdff5cea813cc67e3b6af2e3e942f06b406991a2"
2026-03-05 14:44.12: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
(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 opentelemetry-client-cohttp-lwt.0.13 0.13"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall opentelemetry-client-cohttp-lwt.0.13;\
\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\" != 'opentelemetry-client-cohttp-lwt.0.13' && 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 opentelemetry-client-cohttp-lwt.0.13) || true"))
(run (shell "opam reinstall --with-test --verbose opentelemetry-client-cohttp-lwt.0.13;\
\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\" != 'opentelemetry-client-cohttp-lwt.0.13' && 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-05 14:44.12: Waiting for resource in pool OCluster
2026-03-05 14:44.14: Waiting for worker…
2026-03-05 15:01.10: Got resource from pool OCluster
Building on i7-worker-01
All commits already cached
Updating files: 36% (6770/18378)
Updating files: 37% (6800/18378)
Updating files: 38% (6984/18378)
Updating files: 39% (7168/18378)
Updating files: 40% (7352/18378)
Updating files: 41% (7535/18378)
Updating files: 42% (7719/18378)
Updating files: 43% (7903/18378)
Updating files: 44% (8087/18378)
Updating files: 45% (8271/18378)
Updating files: 46% (8454/18378)
Updating files: 47% (8638/18378)
Updating files: 48% (8822/18378)
Updating files: 49% (9006/18378)
Updating files: 50% (9189/18378)
Updating files: 51% (9373/18378)
Updating files: 52% (9557/18378)
Updating files: 53% (9741/18378)
Updating files: 54% (9925/18378)
Updating files: 55% (10108/18378)
Updating files: 56% (10292/18378)
Updating files: 57% (10476/18378)
Updating files: 58% (10660/18378)
Updating files: 59% (10844/18378)
Updating files: 60% (11027/18378)
Updating files: 61% (11211/18378)
Updating files: 62% (11395/18378)
Updating files: 63% (11579/18378)
Updating files: 64% (11762/18378)
Updating files: 64% (11813/18378)
Updating files: 65% (11946/18378)
Updating files: 66% (12130/18378)
Updating files: 67% (12314/18378)
Updating files: 68% (12498/18378)
Updating files: 69% (12681/18378)
Updating files: 70% (12865/18378)
Updating files: 71% (13049/18378)
Updating files: 72% (13233/18378)
Updating files: 73% (13416/18378)
Updating files: 74% (13600/18378)
Updating files: 75% (13784/18378)
Updating files: 76% (13968/18378)
Updating files: 77% (14152/18378)
Updating files: 78% (14335/18378)
Updating files: 79% (14519/18378)
Updating files: 80% (14703/18378)
Updating files: 81% (14887/18378)
Updating files: 82% (15070/18378)
Updating files: 83% (15254/18378)
Updating files: 84% (15438/18378)
Updating files: 85% (15622/18378)
Updating files: 86% (15806/18378)
Updating files: 87% (15989/18378)
Updating files: 88% (16173/18378)
Updating files: 89% (16357/18378)
Updating files: 90% (16541/18378)
Updating files: 91% (16724/18378)
Updating files: 92% (16908/18378)
Updating files: 93% (17092/18378)
Updating files: 94% (17276/18378)
Updating files: 95% (17460/18378)
Updating files: 96% (17643/18378)
Updating files: 97% (17827/18378)
Updating files: 97% (17898/18378)
Updating files: 98% (18011/18378)
Updating files: 99% (18195/18378)
Updating files: 100% (18378/18378)
Updating files: 100% (18378/18378), done.
HEAD is now at f3ca8d6739 Merge pull request #29503 from plermusiaux/release-saltoIL-0.2.1
Updating f3ca8d6739..cdff5cea81
Fast-forward
.../opentelemetry-client-cohttp-eio.0.13/opam | 53 ++++++++++++++++++++
.../opentelemetry-client-cohttp-lwt.0.13/opam | 51 +++++++++++++++++++
.../opentelemetry-client-ocurl.0.13/opam | 47 ++++++++++++++++++
.../opentelemetry-cohttp-lwt.0.13/opam | 47 ++++++++++++++++++
.../opentelemetry-logs.0.13/opam | 49 +++++++++++++++++++
.../opentelemetry-lwt/opentelemetry-lwt.0.13/opam | 48 ++++++++++++++++++
packages/opentelemetry/opentelemetry.0.13/opam | 57 ++++++++++++++++++++++
7 files changed, 352 insertions(+)
create mode 100644 packages/opentelemetry-client-cohttp-eio/opentelemetry-client-cohttp-eio.0.13/opam
create mode 100644 packages/opentelemetry-client-cohttp-lwt/opentelemetry-client-cohttp-lwt.0.13/opam
create mode 100644 packages/opentelemetry-client-ocurl/opentelemetry-client-ocurl.0.13/opam
create mode 100644 packages/opentelemetry-cohttp-lwt/opentelemetry-cohttp-lwt.0.13/opam
create mode 100644 packages/opentelemetry-logs/opentelemetry-logs.0.13/opam
create mode 100644 packages/opentelemetry-lwt/opentelemetry-lwt.0.13/opam
create mode 100644 packages/opentelemetry/opentelemetry.0.13/opam
(from macos-homebrew-ocaml-4.14)
2026-03-05 15:01.13 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-03-05 15:01.14 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" 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-05 15:01.14 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" 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 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
2026-03-05 15:01.14 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" 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-05 15:01.15 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache
/: (copy (src .) (dst opam-repository/))
2026-03-05 15:01.17 ---> using "e32dbe2edfc429e427b02d16769e7efdf48c4660ddb63be05e86ca034ab20182" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-03-05 15:01.17 ---> using "77a0d8a9938a4c664b81d53d7df2716e6953463a2734abc0469ef823bba6d997" 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.0%
0.8%
# 1.5%
# 2.0%
# 2.6%
## 3.1%
-
## 3.7%
## 4.1%
### 4.6%
### 5.0%
### 5.4%
#### 5.9%
#### 6.4%
#### 6.8%
##### 7.2%
##### 7.6%
-
##### 8.1%
###### 8.6%
###### 9.4%
####### 10.2%
######## 11.2%
######## 12.0%
######### 12.9%
######### 13.7%
########## 14.1%
########## 14.5%
########## 14.9%
-
########### 15.3%
########### 15.9%
########### 16.3%
############ 16.7%
############ 17.1%
############ 17.5%
############# 18.1%
############# 18.5%
############# 18.9%
############# 19.3%
############## 19.7%
-
############## 20.3%
############## 20.7%
############### 21.1%
############### 21.5%
############### 21.9%
################ 22.5%
################ 22.9%
################ 23.3%
################# 23.7%
################# 24.1%
################# 24.6%
-
################## 25.1%
################## 25.5%
################## 25.9%
################### 26.4%
################### 26.8%
################### 27.3%
################### 27.7%
#################### 28.1%
#################### 28.6%
#################### 29.0%
##################### 29.4%
-
##################### 29.9%
##################### 30.3%
###################### 30.7%
###################### 31.2%
###################### 31.6%
####################### 32.1%
####################### 32.5%
####################### 32.9%
####################### 33.3%
######################## 33.8%
######################## 34.2%
-
######################## 34.7%
######################### 35.1%
######################### 35.5%
######################### 35.9%
########################## 36.4%
########################## 37.0%
########################## 37.4%
########################### 37.9%
########################### 38.4%
########################### 38.8%
-
############################ 39.2%
############################ 39.6%
############################ 40.1%
############################# 40.6%
############################# 41.0%
############################# 41.4%
############################## 41.8%
############################## 42.2%
############################## 42.7%
############################### 43.2%
############################### 43.6%
-
############################### 44.0%
############################### 44.4%
################################ 44.9%
################################ 45.4%
################################ 45.8%
################################# 46.2%
################################# 46.6%
################################# 47.1%
################################## 47.5%
################################## 48.0%
################################## 48.4%
-
################################### 48.9%
################################### 49.3%
################################### 49.7%
#################################### 50.2%
#################################### 50.6%
#################################### 51.0%
##################################### 51.5%
##################################### 51.8%
##################################### 52.3%
##################################### 52.8%
###################################### 53.3%
-
###################################### 54.0%
####################################### 54.4%
####################################### 54.8%
####################################### 55.2%
######################################## 55.8%
######################################## 56.2%
######################################## 56.6%
######################################### 57.0%
######################################### 57.6%
######################################### 58.0%
-
########################################## 58.4%
########################################## 58.8%
########################################## 59.3%
########################################### 59.8%
########################################### 60.2%
########################################### 60.6%
############################################ 61.1%
############################################ 61.5%
############################################ 62.1%
############################################ 62.5%
############################################# 62.9%
-
############################################# 63.3%
############################################# 63.7%
############################################## 64.1%
############################################## 64.7%
############################################## 65.1%
############################################### 65.5%
############################################### 65.9%
############################################### 66.5%
################################################ 66.9%
################################################ 67.3%
################################################ 67.7%
-
################################################# 68.3%
################################################# 68.9%
################################################## 69.9%
################################################## 70.7%
################################################### 71.5%
#################################################### 72.4%
#################################################### 73.2%
##################################################### 73.7%
##################################################### 74.2%
##################################################### 74.7%
###################################################### 75.1%
-
###################################################### 75.5%
###################################################### 75.9%
###################################################### 76.3%
####################################################### 76.9%
####################################################### 77.3%
####################################################### 77.7%
######################################################## 78.1%
######################################################## 78.5%
######################################################## 79.0%
######################################################### 79.5%
######################################################### 79.9%
-
######################################################### 80.3%
########################################################## 80.7%
########################################################## 81.1%
########################################################## 81.6%
########################################################### 82.1%
########################################################### 82.5%
########################################################### 82.9%
############################################################ 83.3%
############################################################ 83.8%
############################################################ 84.2%
-
############################################################ 84.7%
############################################################# 85.1%
############################################################# 85.5%
############################################################# 85.9%
############################################################## 86.4%
############################################################## 86.9%
############################################################## 87.3%
############################################################### 87.7%
############################################################### 88.1%
############################################################### 88.6%
################################################################ 89.1%
################################################################ 89.5%
-
################################################################ 89.9%
################################################################# 90.3%
################################################################# 90.7%
################################################################# 91.2%
################################################################# 91.6%
################################################################## 92.1%
################################################################## 92.5%
################################################################## 92.9%
################################################################### 93.4%
################################################################### 93.8%
################################################################### 94.3%
-
#################################################################### 94.7%
#################################################################### 95.1%
#################################################################### 95.5%
##################################################################### 96.0%
##################################################################### 96.5%
##################################################################### 96.9%
###################################################################### 97.3%
###################################################################### 97.7%
###################################################################### 98.0%
###################################################################### 98.3%
-
####################################################################### 98.7%
####################################################################### 99.0%
####################################################################### 99.2%
####################################################################### 99.5%
####################################################################### 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-03-05 15:01.18 ---> using "6ee68e332246bb2eb49293cf1c5af3ce6720add808b4b04c1ea5e1ff9da5011c" from cache
/: (run (shell "opam pin add -k version -yn opentelemetry-client-cohttp-lwt.0.13 0.13"))
opentelemetry-client-cohttp-lwt is now pinned to version 0.13
2026-03-05 15:01.18 ---> using "fb099edc1506fa951827a0891edaf8629123e98aa4d912c05f17920a6cf9ec83" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall opentelemetry-client-cohttp-lwt.0.13;\
\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\" != 'opentelemetry-client-cohttp-lwt.0.13' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
opentelemetry-client-cohttp-lwt.0.13 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 72 packages
- install ambient-context 0.2 [required by opentelemetry]
- install angstrom 0.16.1 [required by uri]
- install asn1-combinators 0.3.2 [required by x509]
- install astring 0.8.5 [required by conduit]
- install atomic base [required by opentelemetry]
- install base v0.16.4 [required by ppx_sexp_conv]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.2 [required by cohttp]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by ca-certs]
- install ca-certs 1.0.1 [required by conduit-lwt-unix]
- install cmdliner 2.1.0 [required by cohttp-lwt-unix]
- install cohttp 6.2.1 [required by cohttp-lwt, cohttp-lwt-unix]
- install cohttp-lwt 6.2.1 [required by opentelemetry-client-cohttp-lwt]
- install cohttp-lwt-unix 6.2.1 [required by opentelemetry-client-cohttp-lwt]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- 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 ca-certs]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.21.1 [required by opentelemetry-client-cohttp-lwt]
- install dune-configurator 3.21.1 [required by base, lwt, mirage-crypto]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install fmt 0.11.0 [required by cohttp-lwt-unix]
- install fpath 0.7.3 [required by ca-certs]
- install gmap 0.3.0 [required by x509]
- install hmap 0.8.1 [required by opentelemetry]
- install http 6.2.1 [required by cohttp-lwt, cohttp-lwt-unix]
- install ipaddr 5.6.2 [required by cohttp-lwt]
- install ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
- install kdf 1.0.0 [required by x509]
- install logs 0.10.0 [required by cohttp-lwt, cohttp-lwt-unix]
- install lwt 5.9.2 [required by opentelemetry-client-cohttp-lwt]
- install lwt_ppx 5.9.1 [required by opentelemetry-client-cohttp-lwt]
- install macaddr 5.6.2 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install mirage-crypto 2.0.3 [required by ca-certs]
- install mirage-crypto-ec 2.0.3 [required by x509]
- install mirage-crypto-pk 2.0.3 [required by x509]
- install mirage-crypto-rng 2.0.3 [required by x509]
- install mtime 2.1.0 [required by opentelemetry-client-cohttp-lwt]
- 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 mtime]
- install ocamlfind 1.9.8 [required by mtime]
- install ocplib-endian 1.2 [required by lwt]
- install ohex 0.2.0 [required by ca-certs]
- install opentelemetry 0.13 [required by opentelemetry-client-cohttp-lwt]
- install opentelemetry-client-cohttp-lwt 0.13 (pinned)
- install opentelemetry-lwt 0.13 [required by opentelemetry-client-cohttp-lwt]
- install pbrt 3.1.1 [required by opentelemetry]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_sexp_conv v0.16.0 [required by cohttp-lwt, cohttp-lwt-unix]
- install ppxlib 0.35.0 [required by lwt_ppx]
- install ptime 1.2.0 [required by opentelemetry]
- install re 1.14.0 [required by cohttp]
- install rresult 0.7.0 [required by bos]
- install sexplib0 v0.16.0 [required by cohttp-lwt]
- install stdlib-shims 0.3.0 [required by pbrt]
- install stringext 1.6.0 [required by cohttp]
- install thread-local-storage 0.2 [required by opentelemetry]
- install topkg 1.1.1 [required by mtime]
- install uri 4.4.0 [required by cohttp-lwt]
- install uri-sexp 4.4.0 [required by cohttp]
- install x509 1.0.6 [required by ca-certs]
- install zarith 1.14 [required by mirage-crypto-pk]
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"
- ==> Fetching downloads for: gmp and pkgconf
- ✔︎ Bottle Manifest gmp (6.3.0)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle Manifest pkgconf (2.5.1)
- ✔︎ Bottle gmp (6.3.0)
- ✔︎ Bottle pkgconf (2.5.1)
- ==> Pouring gmp--6.3.0.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/gmp/6.3.0: 22 files, 3.4MB
- ==> Running `brew cleanup gmp`...
- Disable this behaviour by setting `HOMEBREW_NO_INSTALL_CLEANUP=1`.
- Hide these hints with `HOMEBREW_NO_ENV_HINTS=1` (see `man brew`).
- ==> Pouring pkgconf--2.5.1.sequoia.bottle.tar.gz
- 🍺 /usr/local/Cellar/pkgconf/2.5.1: 28 files, 383.2KB
- ==> Running `brew cleanup pkgconf`...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ambient-context.0.2 (cached)
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved atomic.base (cached)
-> installed atomic.base
-> retrieved base.v0.16.4 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1 (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved cppo.1.8.0 (cached)
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2 (cached)
-> installed conf-gmp.5
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> installed cmdliner.2.1.0
-> retrieved lwt_ppx.5.9.1 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved mirage-crypto.2.0.3, mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3 (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 ocplib-endian.1.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved opentelemetry.0.13, opentelemetry-client-cohttp-lwt.0.13, opentelemetry-lwt.0.13 (cached)
-> retrieved pbrt.3.1.1 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved thread-local-storage.0.2 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)
-> retrieved x509.1.0.6 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed rresult.0.7.0
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.21.1
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed domain-name.0.5.0
-> installed macaddr.5.6.2
-> installed csexp.1.5.2
-> installed base64.3.5.2
-> installed ipaddr.5.6.2
-> installed ppx_derivers.1.2.1
-> installed ohex.0.2.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed magic-mime.1.3.1
-> installed http.6.2.1
-> installed eqaf.0.10
-> installed cppo.1.8.0
-> installed asn1-combinators.0.3.2
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed thread-local-storage.0.2
-> installed ocplib-endian.1.2
-> installed sexplib0.v0.16.0
-> installed pbrt.3.1.1
-> installed digestif.1.3.0
-> installed ambient-context.0.2
-> installed re.1.14.0
-> installed dune-configurator.3.21.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.0.3
-> installed kdf.1.0.0
-> installed uri.4.4.0
-> installed lwt.5.9.2
-> installed logs.0.10.0
-> installed opentelemetry.0.13
-> installed base.v0.16.4
-> installed mirage-crypto-rng.2.0.3
-> installed mirage-crypto-pk.2.0.3
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.3
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed opentelemetry-lwt.0.13
-> installed ppx_sexp_conv.v0.16.0
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed conduit.8.0.0
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed cohttp-lwt-unix.6.2.1
-> installed opentelemetry-client-cohttp-lwt.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 15:01.19 ---> using "1085ca45cd5cafd8883cfb89e61186804903bfb2b46719eb9ffa3e1fe9ca8e42" from cache
/: (run (network host)
(shell "(opam reinstall --with-test opentelemetry-client-cohttp-lwt.0.13) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile opentelemetry-client-cohttp-lwt 0.13 (pinned)
=== install 4 packages
- install alcotest 1.9.1 [required by opentelemetry-client-cohttp-lwt]
- install containers 3.18 [required by opentelemetry-client-cohttp-lwt]
- install either 1.0.0 [required by containers]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
-> retrieved containers.3.18 (https://github.com/c-cube/ocaml-containers/releases/download/v3.18/containers-3.18.tbz)
-> retrieved either.1.0.0 (https://github.com/mirage/either/releases/download/1.0.0/either-1.0.0.tbz)
-> retrieved uutf.1.0.4 (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> installed either.1.0.0
-> removed opentelemetry-client-cohttp-lwt.0.13
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
-> installed containers.3.18
-> installed opentelemetry-client-cohttp-lwt.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 15:01.34 ---> saved as "59fae2d86365a11fa8e492cc35f3fca8800ca2f3941861aecc94c3b42439f21f"
/: (run (shell "opam reinstall --with-test --verbose opentelemetry-client-cohttp-lwt.0.13;\
\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\" != 'opentelemetry-client-cohttp-lwt.0.13' && 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 opentelemetry-client-cohttp-lwt 0.13 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [opentelemetry-client-cohttp-lwt: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opentelemetry-client-cohttp-lwt" "-j" "11" "--promote-install-files=false" "@install" "@runtest" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/opentelemetry-client-cohttp-lwt.0.13)
- (cd _build/default/tests/implicit_scope/sync && ./test_implicit_scope_sync.exe)
- Testing `implicit scope'.
- This run has ID `DZ0WA8EO'.
-
- [OK] sync 0 stack-based implicit scope.
-
- Full test results in `~/.opam/4.14.2/.opam-switch/build/opentelemetry-client-cohttp-lwt.0.13/_build/default/tests/implicit_scope/sync/_build/_tests/implicit scope'.
- Test Successful in 1.008s. 1 test run.
Processing 2/4: [opentelemetry-client-cohttp-lwt: dune install]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "opentelemetry-client-cohttp-lwt" "--create-install-files" "opentelemetry-client-cohttp-lwt" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/opentelemetry-client-cohttp-lwt.0.13)
-> compiled opentelemetry-client-cohttp-lwt.0.13
-> removed opentelemetry-client-cohttp-lwt.0.13
-> installed opentelemetry-client-cohttp-lwt.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 15:01.43 ---> saved as "ac9b2d716611ddc835724a84497700b717d58b97f3235305f917994f076d6757"
Job succeeded
2026-03-05 15:01.56: Job succeeded