- github
- ocaml
- opam-repository
- b7ee11
- macos,macos-homebrew-ocaml-4.14-amd64,ca-certs.1.0.1,tests
(not at the head of any monitored branch or PR)
2025-04-15 17:08.15: New job: test ca-certs.1.0.1, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/27764/head (b7ee11260826c0c63ececdc0a5719b3240aab107)
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/27764/head" && git reset --hard b7ee1126
git fetch origin master
git merge --no-edit e6dedb1eed4b290f755e8755ac00728e09854600
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-2.3 ~/local/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ca-certs.1.0.1 1.0.1
RUN opam reinstall ca-certs.1.0.1; \
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" != 'ca-certs.1.0.1' && 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 ca-certs.1.0.1) || true
RUN opam reinstall --with-test --verbose ca-certs.1.0.1; \
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" != 'ca-certs.1.0.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-04-15 17:08.15: Using cache hint "macos-homebrew-ocaml-4.14-ca-certs.1.0.1-b7ee11260826c0c63ececdc0a5719b3240aab107"
2025-04-15 17:08.15: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
(user (uid 1000) (gid 1000))
(run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url -k local --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ca-certs.1.0.1 1.0.1"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall ca-certs.1.0.1;\
\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\" != 'ca-certs.1.0.1' && 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 ca-certs.1.0.1) || true"))
(run (shell "opam reinstall --with-test --verbose ca-certs.1.0.1;\
\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\" != 'ca-certs.1.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-04-15 17:08.15: Waiting for resource in pool OCluster
2025-04-15 17:08.16: Waiting for worker…
2025-04-15 17:19.01: Got resource from pool OCluster
Building on i7-worker-04
All commits already cached
Updating files: 20% (4680/22874)
Updating files: 21% (4804/22874)
Updating files: 22% (5033/22874)
Updating files: 23% (5262/22874)
Updating files: 24% (5490/22874)
Updating files: 25% (5719/22874)
Updating files: 26% (5948/22874)
Updating files: 27% (6176/22874)
Updating files: 28% (6405/22874)
Updating files: 29% (6634/22874)
Updating files: 30% (6863/22874)
Updating files: 31% (7091/22874)
Updating files: 32% (7320/22874)
Updating files: 33% (7549/22874)
Updating files: 34% (7778/22874)
Updating files: 35% (8006/22874)
Updating files: 36% (8235/22874)
Updating files: 37% (8464/22874)
Updating files: 38% (8693/22874)
Updating files: 39% (8921/22874)
Updating files: 40% (9150/22874)
Updating files: 40% (9174/22874)
Updating files: 41% (9379/22874)
Updating files: 42% (9608/22874)
Updating files: 43% (9836/22874)
Updating files: 44% (10065/22874)
Updating files: 45% (10294/22874)
Updating files: 46% (10523/22874)
Updating files: 47% (10751/22874)
Updating files: 48% (10980/22874)
Updating files: 49% (11209/22874)
Updating files: 50% (11437/22874)
Updating files: 51% (11666/22874)
Updating files: 52% (11895/22874)
Updating files: 53% (12124/22874)
Updating files: 54% (12352/22874)
Updating files: 55% (12581/22874)
Updating files: 56% (12810/22874)
Updating files: 57% (13039/22874)
Updating files: 58% (13267/22874)
Updating files: 58% (13479/22874)
Updating files: 59% (13496/22874)
Updating files: 60% (13725/22874)
Updating files: 61% (13954/22874)
Updating files: 62% (14182/22874)
Updating files: 63% (14411/22874)
Updating files: 64% (14640/22874)
Updating files: 65% (14869/22874)
Updating files: 66% (15097/22874)
Updating files: 67% (15326/22874)
Updating files: 68% (15555/22874)
Updating files: 69% (15784/22874)
Updating files: 70% (16012/22874)
Updating files: 71% (16241/22874)
Updating files: 72% (16470/22874)
Updating files: 73% (16699/22874)
Updating files: 74% (16927/22874)
Updating files: 75% (17156/22874)
Updating files: 76% (17385/22874)
Updating files: 77% (17613/22874)
Updating files: 78% (17842/22874)
Updating files: 79% (18071/22874)
Updating files: 80% (18300/22874)
Updating files: 81% (18528/22874)
Updating files: 81% (18614/22874)
Updating files: 82% (18757/22874)
Updating files: 83% (18986/22874)
Updating files: 84% (19215/22874)
Updating files: 85% (19443/22874)
Updating files: 86% (19672/22874)
Updating files: 87% (19901/22874)
Updating files: 88% (20130/22874)
Updating files: 89% (20358/22874)
Updating files: 90% (20587/22874)
Updating files: 91% (20816/22874)
Updating files: 92% (21045/22874)
Updating files: 93% (21273/22874)
Updating files: 94% (21502/22874)
Updating files: 95% (21731/22874)
Updating files: 96% (21960/22874)
Updating files: 97% (22188/22874)
Updating files: 98% (22417/22874)
Updating files: 99% (22646/22874)
Updating files: 100% (22874/22874)
Updating files: 100% (22874/22874), done.
HEAD is now at e6dedb1eed Merge pull request #27749 from toots/opam-publish-ffmpeg.1.2.3
Updating e6dedb1eed..b7ee112608
Fast-forward
packages/ca-certs/ca-certs.1.0.1/opam | 61 +++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
create mode 100644 packages/ca-certs/ca-certs.1.0.1/opam
(from macos-homebrew-ocaml-4.14)
2025-04-15 17:19.08 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam"))
2025-04-15 17:19.08 ---> using "133faf6477bb7d579f4909c1f9ea81a7b33e8728123c32f7ba0f1532c2d3d002" from cache
/: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2025-04-15 17:19.09 ---> using "ef3d87c6398c801c10cf5a6d93f8ba7a7aca8d0c6db9fa9fa49b79f0f9e94e2e" from cache
/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.3.0
# self-upgrade no
# system arch=x86_64 os=macos os-distribution=homebrew os-version=14.4.1
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 11
# repositories 1 (version-controlled)
# pinned 0
# current-switch 4.14.2
# invariant ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-04-15 17:19.09 ---> using "ac863649c8b1638b67aad7aed774fd3a3fe5d0b0e5eb7991274454937cf65d01" from cache
/: (env OPAMDOWNLOADJOBS 1)
/: (env OPAMERRLOGLEN 0)
/: (env OPAMPRECISETRACKING 1)
/: (env CI true)
/: (env OPAM_REPO_CI true)
/: (run (shell "rm -rf opam-repository/"))
2025-04-15 17:19.09 ---> using "5431cbcc658e0d18f1e86a42b7295d7baef82e74db465ab87f8a15ba49194dde" from cache
/: (copy (src .) (dst opam-repository/))
2025-04-15 17:19.12 ---> using "555d09e8a06bc81b5717bdf3c31a81bbac05979468aa821d0795bc386efa2320" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-04-15 17:19.12 ---> using "d75c6219aadcd9c09b5e005dc8f637c1388c381f853ef5b2e9ade4e564115a2f" from cache
/: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/portable-ruby/portable-ruby/blobs/sha256:ef0bc1da0f381f61f3e1fbc1abaf7616f66d1e2fff5eff3682645f966077392d
- #=#=#
0.0%
0.9%
# 1.9%
# 2.7%
## 3.6%
### 4.6%
### 5.5%
#### 6.3%
##### 7.2%
##### 8.2%
###### 9.1%
-
####### 9.9%
####### 10.8%
######## 11.8%
######### 12.7%
######### 13.5%
########## 14.4%
########## 15.3%
########### 16.1%
############ 17.0%
############ 17.9%
############# 18.9%
-
############## 19.7%
############## 20.3%
############## 20.7%
############### 21.2%
############### 21.6%
############### 22.0%
################ 22.5%
################ 22.9%
################ 23.5%
################# 23.9%
################# 24.3%
-
################# 24.8%
################## 25.2%
################## 25.6%
################## 26.2%
################### 26.6%
################### 27.1%
################### 27.5%
#################### 27.9%
#################### 28.5%
#################### 29.0%
##################### 29.4%
-
##################### 29.8%
##################### 30.3%
###################### 30.8%
###################### 31.3%
###################### 31.7%
####################### 32.1%
####################### 32.6%
####################### 33.1%
######################## 33.6%
######################## 34.0%
######################## 34.4%
-
######################### 34.9%
######################### 35.4%
######################### 35.9%
########################## 36.3%
########################## 36.7%
########################## 37.2%
########################### 37.6%
########################### 38.2%
########################### 38.6%
############################ 39.0%
############################ 39.5%
-
############################ 40.0%
############################# 40.5%
############################# 40.9%
############################# 41.3%
############################## 41.8%
############################## 42.4%
############################## 42.8%
############################### 43.2%
############################### 43.8%
############################### 44.2%
-
################################ 44.7%
################################ 45.1%
################################ 45.5%
################################# 46.0%
################################# 46.4%
################################# 46.8%
################################## 47.3%
################################## 47.7%
################################## 48.1%
################################### 48.7%
################################### 49.1%
-
################################### 49.6%
################################### 50.0%
#################################### 50.4%
#################################### 50.9%
#################################### 51.3%
##################################### 51.7%
##################################### 52.2%
##################################### 52.7%
###################################### 53.2%
###################################### 53.6%
###################################### 54.0%
-
####################################### 54.5%
####################################### 55.0%
####################################### 55.5%
######################################## 55.9%
######################################## 56.3%
######################################## 56.9%
######################################### 57.3%
######################################### 57.8%
######################################### 58.2%
########################################## 58.8%
########################################## 59.2%
-
########################################## 59.6%
########################################### 60.1%
########################################### 60.7%
############################################ 61.2%
############################################ 62.1%
############################################# 63.1%
############################################## 64.0%
############################################## 64.8%
############################################### 65.7%
################################################ 66.7%
################################################ 67.6%
-
################################################# 68.4%
################################################# 69.3%
################################################## 70.3%
################################################### 71.2%
################################################### 72.2%
#################################################### 73.0%
##################################################### 73.9%
##################################################### 74.8%
###################################################### 75.8%
####################################################### 76.7%
####################################################### 77.5%
-
######################################################## 78.4%
######################################################### 79.4%
######################################################### 80.3%
########################################################## 81.1%
########################################################### 82.0%
########################################################### 83.0%
############################################################ 83.9%
############################################################ 84.7%
############################################################# 85.6%
############################################################## 86.5%
############################################################## 87.5%
-
############################################################### 88.3%
################################################################ 89.2%
################################################################ 90.1%
################################################################# 91.1%
################################################################## 91.9%
################################################################## 92.9%
################################################################### 93.8%
#################################################################### 94.7%
#################################################################### 95.5%
##################################################################### 96.5%
###################################################################### 97.4%
-
###################################################################### 98.4%
####################################################################### 99.3%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.3.8.el_capitan.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
- https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
-
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
- https://github.com/Homebrew/brew#donations
-
- Already up-to-date.
2025-04-15 17:19.13 ---> using "c5a722930c6d376f22c7db2ba5a7627938b5824bb0faf9a614baa70631a808fa" from cache
/: (run (shell "opam pin add -k version -yn ca-certs.1.0.1 1.0.1"))
ca-certs is now pinned to version 1.0.1
2025-04-15 17:19.13 ---> using "f4a436d9027a1dda54d2f7c4e851f61fafa661d5d32c422d907c9291e25f5c02" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall ca-certs.1.0.1;\
\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\" != 'ca-certs.1.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ca-certs.1.0.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 34 packages
- install asn1-combinators 0.3.2 [required by x509]
- install astring 0.8.5 [required by bos]
- install base64 3.5.1 [required by x509]
- install bos 0.2.1 [required by ca-certs]
- install ca-certs 1.0.1 (pinned)
- 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 csexp 1.5.2 [required by dune-configurator]
- install digestif 1.2.0 [required by ca-certs]
- install domain-name 0.4.1 [required by x509]
- install dune 3.18.0 [required by ca-certs]
- install dune-configurator 3.18.0 [required by mirage-crypto]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install fmt 0.10.0 [required by bos, x509]
- install fpath 0.7.3 [required by ca-certs]
- install gmap 0.3.0 [required by x509]
- install ipaddr 5.6.0 [required by x509]
- install kdf 1.0.0 [required by x509]
- install logs 0.8.0 [required by ca-certs]
- install macaddr 5.6.0 [required by ipaddr]
- install mirage-crypto 2.0.0 [required by ca-certs]
- install mirage-crypto-ec 2.0.0 [required by x509]
- install mirage-crypto-pk 2.0.0 [required by x509]
- install mirage-crypto-rng 2.0.0 [required by x509]
- install ocamlbuild 0.16.1 [required by bos, ptime]
- install ocamlfind 1.9.8 [required by bos, ptime]
- install ohex 0.2.0 [required by ca-certs]
- install ptime 1.2.0 [required by ca-certs]
- install rresult 0.7.0 [required by bos]
- install topkg 1.0.8 [required by bos, ptime]
- install x509 1.0.5 [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"
- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/manifests/6.3.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/70a72a71216843d66a953c06ff6337445ce9bc94fae9f0e301e2f59005274a8e--gmp-6.3.0.bottle_manifest.json
- ==> Fetching gmp
- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/blobs/sha256:e8410d92339535174e9f4a5eccc403301b70c7287f2f9a87f064a9aa2e21b54b
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8d39e3597db85ea2b4532e0057381937ab6ed92a64a1728c68e57bc6b3aeef95--gmp--6.3.0.sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/manifests/2.4.3-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f938254e85413ef0d18283c9c932823434b88c0c790e04e7534e2a3e923d0588--pkgconf-2.4.3-1.bottle_manifest.json
- ==> Fetching pkgconf
- ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/blobs/sha256:9f5e12ea8ab25db6afc5c09543d6840d72f6556b894d167ac79007e8f187feb0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/579526238d04ef568632db944c33c6149c2e05766a0384acc59429a4bdf99eba--pkgconf--2.4.3.sonoma.bottle.tar.gz
- ==> Pouring gmp--6.3.0.sonoma.bottle.tar.gz
- 🍺 /usr/local/Cellar/gmp/6.3.0: 22 files, 3.3MB
- ==> Running `brew cleanup gmp`...
- Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
- Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).
- ==> Pouring pkgconf--2.4.3.sonoma.bottle.tar.gz
- 🍺 /usr/local/Cellar/pkgconf/2.4.3: 27 files, 339.8KB
- ==> Running `brew cleanup pkgconf`...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved ca-certs.1.0.1 (https://github.com/mirage/ca-certs/releases/download/v1.0.1/ca-certs-1.0.1.tbz)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.2.0 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> retrieved dune.3.18.0, dune-configurator.3.18.0 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.10.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.8.0 (cached)
-> retrieved mirage-crypto.2.0.0, mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved x509.1.0.5 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.0.8
-> installed rresult.0.7.0
-> installed fmt.0.10.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed logs.0.8.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed dune.3.18.0
-> installed duration.0.2.1
-> installed ohex.0.2.0
-> installed gmap.0.3.0
-> installed domain-name.0.4.1
-> installed csexp.1.5.2
-> installed macaddr.5.6.0
-> installed eqaf.0.10
-> installed base64.3.5.1
-> installed asn1-combinators.0.3.2
-> installed ipaddr.5.6.0
-> installed digestif.1.2.0
-> installed dune-configurator.3.18.0
-> installed mirage-crypto.2.0.0
-> installed kdf.1.0.0
-> installed mirage-crypto-rng.2.0.0
-> installed mirage-crypto-pk.2.0.0
-> installed mirage-crypto-ec.2.0.0
-> installed x509.1.0.5
-> installed ca-certs.1.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 17:19.14 ---> using "96b9beff7eb26535e8c5d76c9a564275302f63b27aa5f9b891ed83e890e7d551" from cache
/: (run (network host)
(shell "(opam reinstall --with-test ca-certs.1.0.1) || true"))
The following actions will be performed:
=== recompile 8 packages
- recompile bos 0.2.1 [uses fmt]
- recompile ca-certs 1.0.1 (pinned)
- recompile fmt 0.10.0 [uses cmdliner]
- recompile logs 0.8.0 [uses cmdliner]
- recompile mirage-crypto-ec 2.0.0 [uses mirage-crypto-rng]
- recompile mirage-crypto-pk 2.0.0 [uses mirage-crypto-rng]
- recompile mirage-crypto-rng 2.0.0 [uses logs]
- recompile x509 1.0.5 [uses fmt]
=== install 7 packages
- install alcotest 1.9.0 [required by ca-certs]
- install cmdliner 1.3.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.12.0 [required by alcotest]
- install seq base [required by re]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0 (https://github.com/mirage/alcotest/releases/download/1.9.0/alcotest-1.9.0.tbz)
-> retrieved bos.0.2.1 (https://erratique.ch/software/bos/releases/bos-0.2.1.tbz)
-> retrieved cmdliner.1.3.0 (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> retrieved fmt.0.10.0 (https://erratique.ch/software/fmt/releases/fmt-0.10.0.tbz)
-> retrieved logs.0.8.0 (https://erratique.ch/software/logs/releases/logs-0.8.0.tbz)
-> installed cmdliner.1.3.0
-> retrieved mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.0 (https://github.com/mirage/mirage-crypto/releases/download/v2.0.0/mirage-crypto-2.0.0.tbz)
-> retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> retrieved uutf.1.0.4 (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
-> removed ca-certs.1.0.1
-> removed bos.0.2.1
-> installed stdlib-shims.0.3.0
-> retrieved x509.1.0.5 (https://github.com/mirleft/ocaml-x509/releases/download/v1.0.5/x509-1.0.5.tbz)
-> removed x509.1.0.5
-> removed mirage-crypto-ec.2.0.0
-> removed mirage-crypto-pk.2.0.0
-> removed mirage-crypto-rng.2.0.0
-> removed logs.0.8.0
-> removed fmt.0.10.0
-> installed fmt.0.10.0
-> installed re.1.12.0
-> installed uutf.1.0.4
-> installed logs.0.8.0
-> installed alcotest.1.9.0
-> installed mirage-crypto-rng.2.0.0
-> installed mirage-crypto-pk.2.0.0
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.0
-> installed x509.1.0.5
-> installed ca-certs.1.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 17:19.49 ---> saved as "968423721f03189b26740b075e406b06da7abab5374d72cfc9a8ed7617654bc1"
/: (run (shell "opam reinstall --with-test --verbose ca-certs.1.0.1;\
\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\" != 'ca-certs.1.0.1' && 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 ca-certs 1.0.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ca-certs: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ca-certs" "-j" "11" "@install" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ca-certs.1.0.1)
-> compiled ca-certs.1.0.1
-> removed ca-certs.1.0.1
-> installed ca-certs.1.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 17:19.57 ---> saved as "e885d6237a8c82c84d06b5abda03c2db291efc1139e5827d866b6de3e59d0bb1"
Job succeeded
2025-04-15 17:20.12: Job succeeded