- github
- ocaml
- opam-repository
- c0b127
- macos,macos-homebrew-ocaml-4.14-arm64,awa-mirage.0.5.1,tests
(not at the head of any monitored branch or PR)
2025-04-24 14:20.36: New job: test awa-mirage.0.5.1, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/27815/head (c0b12745eb5c5cf96d4dbfe4a0e02a0939b27974)
on macos-homebrew-ocaml-4.14/arm64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27815/head" && git reset --hard c0b12745
git fetch origin master
git merge --no-edit 8106bcf57fc33218275bbf0d02e725f4e9fcd0f6
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 awa-mirage.0.5.1 0.5.1
RUN opam reinstall awa-mirage.0.5.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" != 'awa-mirage.0.5.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 awa-mirage.0.5.1) || true
RUN opam reinstall --with-test --verbose awa-mirage.0.5.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" != 'awa-mirage.0.5.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-24 14:20.36: Using cache hint "macos-homebrew-ocaml-4.14-awa-mirage.0.5.1-c0b12745eb5c5cf96d4dbfe4a0e02a0939b27974"
2025-04-24 14:20.36: 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 awa-mirage.0.5.1 0.5.1"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall awa-mirage.0.5.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\" != 'awa-mirage.0.5.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 awa-mirage.0.5.1) || true"))
(run (shell "opam reinstall --with-test --verbose awa-mirage.0.5.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\" != 'awa-mirage.0.5.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-24 14:20.36: Waiting for resource in pool OCluster
2025-04-24 14:20.36: Waiting for worker…
2025-04-24 14:25.02: Got resource from pool OCluster
Building on m1-worker-01
All commits already cached
Updating files: 52% (12055/22941)
Updating files: 53% (12159/22941)
Updating files: 54% (12389/22941)
Updating files: 55% (12618/22941)
Updating files: 56% (12847/22941)
Updating files: 57% (13077/22941)
Updating files: 58% (13306/22941)
Updating files: 59% (13536/22941)
Updating files: 60% (13765/22941)
Updating files: 61% (13995/22941)
Updating files: 62% (14224/22941)
Updating files: 63% (14453/22941)
Updating files: 64% (14683/22941)
Updating files: 65% (14912/22941)
Updating files: 66% (15142/22941)
Updating files: 67% (15371/22941)
Updating files: 68% (15600/22941)
Updating files: 69% (15830/22941)
Updating files: 70% (16059/22941)
Updating files: 71% (16289/22941)
Updating files: 72% (16518/22941)
Updating files: 73% (16747/22941)
Updating files: 74% (16977/22941)
Updating files: 75% (17206/22941)
Updating files: 76% (17436/22941)
Updating files: 77% (17665/22941)
Updating files: 78% (17894/22941)
Updating files: 79% (18124/22941)
Updating files: 80% (18353/22941)
Updating files: 81% (18583/22941)
Updating files: 82% (18812/22941)
Updating files: 83% (19042/22941)
Updating files: 84% (19271/22941)
Updating files: 85% (19500/22941)
Updating files: 86% (19730/22941)
Updating files: 87% (19959/22941)
Updating files: 88% (20189/22941)
Updating files: 89% (20418/22941)
Updating files: 90% (20647/22941)
Updating files: 91% (20877/22941)
Updating files: 92% (21106/22941)
Updating files: 93% (21336/22941)
Updating files: 93% (21399/22941)
Updating files: 94% (21565/22941)
Updating files: 95% (21794/22941)
Updating files: 96% (22024/22941)
Updating files: 97% (22253/22941)
Updating files: 98% (22483/22941)
Updating files: 99% (22712/22941)
Updating files: 100% (22941/22941)
Updating files: 100% (22941/22941), done.
HEAD is now at 8106bcf57f Merge pull request #27808 from Octachron/Ocaml_5.4.0_branching
Updating 8106bcf57f..c0b12745eb
Fast-forward
packages/awa-mirage/awa-mirage.0.5.1/opam | 40 +++++++++++++++++++++++++++
packages/awa/awa.0.5.1/opam | 46 +++++++++++++++++++++++++++++++
2 files changed, 86 insertions(+)
create mode 100644 packages/awa-mirage/awa-mirage.0.5.1/opam
create mode 100644 packages/awa/awa.0.5.1/opam
(from macos-homebrew-ocaml-4.14)
2025-04-24 14:25.05 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam"))
2025-04-24 14:25.05 ---> 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-24 14:25.06 ---> 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=arm64 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 7
# 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-24 14:25.06 ---> 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-24 14:25.06 ---> using "5431cbcc658e0d18f1e86a42b7295d7baef82e74db465ab87f8a15ba49194dde" from cache
/: (copy (src .) (dst opam-repository/))
2025-04-24 14:25.07 ---> using "53f76a06786e6fa5c7177914de5fb277482a76a4900681fa910e2e9d7cde9e64" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2025-04-24 14:25.07 ---> using "f375e7b89383623d2893b5fe7b1cf046c583e89cfd24a7eacf960fc807f76a10" from cache
/: (run (network host)
(shell "opam update --depexts || true"))
+ /opt/homebrew/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/portable-ruby/portable-ruby/blobs/sha256:7645e2d653a335798030f6502e7834dfdbeeec5629429a1a34da5dbb2c57d63e
- #=#=#
0.7%
# 1.5%
# 2.4%
## 3.2%
### 4.2%
### 5.0%
#### 5.8%
#### 6.7%
##### 7.7%
-
###### 8.5%
###### 9.3%
####### 10.3%
######## 11.1%
######## 12.0%
######### 12.9%
######### 13.8%
########## 14.6%
########### 15.6%
########### 16.4%
############ 17.3%
-
############# 18.2%
############# 19.1%
############## 19.9%
############## 20.7%
############### 21.7%
################ 22.6%
################ 23.4%
################# 24.2%
################## 25.2%
################## 26.0%
################### 26.9%
################### 27.7%
-
#################### 28.7%
##################### 29.5%
##################### 30.3%
###################### 31.2%
####################### 32.2%
####################### 33.0%
######################## 33.8%
######################## 34.7%
######################### 35.6%
########################## 36.5%
########################## 37.3%
-
########################### 38.1%
############################ 39.1%
############################ 40.0%
############################# 40.8%
############################# 41.3%
############################## 42.3%
############################### 43.2%
############################### 44.0%
################################ 45.0%
################################ 45.8%
################################# 46.6%
-
################################## 47.5%
################################## 48.4%
################################### 49.3%
#################################### 50.1%
#################################### 51.0%
##################################### 51.9%
##################################### 52.8%
###################################### 53.6%
####################################### 54.6%
####################################### 55.4%
######################################## 56.2%
######################################### 57.2%
-
######################################### 58.1%
########################################## 58.9%
########################################### 59.7%
########################################### 60.6%
############################################ 61.4%
############################################ 62.4%
############################################# 63.2%
############################################## 64.0%
############################################## 65.0%
############################################### 65.9%
################################################ 66.7%
-
################################################ 67.5%
################################################# 68.4%
################################################# 69.3%
################################################## 70.2%
################################################### 71.0%
################################################### 71.8%
#################################################### 72.8%
##################################################### 73.6%
##################################################### 74.5%
###################################################### 75.3%
###################################################### 76.3%
####################################################### 77.1%
-
######################################################## 78.0%
######################################################## 78.9%
######################################################### 79.8%
########################################################## 80.6%
########################################################## 81.6%
########################################################### 82.4%
########################################################### 83.3%
############################################################ 84.2%
############################################################# 85.1%
############################################################# 86.0%
-
############################################################## 86.9%
############################################################### 87.7%
############################################################### 88.7%
################################################################ 89.5%
################################################################# 90.4%
################################################################# 91.2%
################################################################## 92.0%
################################################################## 93.0%
################################################################### 93.8%
#################################################################### 94.7%
#################################################################### 95.6%
##################################################################### 96.5%
-
###################################################################### 97.3%
###################################################################### 98.3%
####################################################################### 99.1%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.3.8.arm64_big_sur.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-24 14:25.07 ---> using "e043d9f9ed9949a1d8d045ccfeb1541751ec04fc72432c228e283cb180bdccdc" from cache
/: (run (shell "opam pin add -k version -yn awa-mirage.0.5.1 0.5.1"))
awa-mirage is now pinned to version 0.5.1
2025-04-24 14:25.08 ---> using "c17ac3cf5ee3857f52dab454f33359d40bc0f82311d8eb221baca96c8b5e0a3e" from cache
/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam reinstall awa-mirage.0.5.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\" != 'awa-mirage.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
awa-mirage.0.5.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 42 packages
- install asn1-combinators 0.3.2 [required by x509]
- install awa 0.5.1 [required by awa-mirage]
- install awa-mirage 0.5.1 (pinned)
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.1 [required by awa]
- install cmdliner 1.3.0 [required by awa]
- 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 cstruct 6.2.0 [required by awa-mirage]
- install cstruct-unix 6.2.0 [required by awa]
- install digestif 1.3.0 [required by mirage-crypto-ec, mirage-crypto-pk]
- install domain-name 0.4.1 [required by x509]
- install dune 3.18.1 [required by awa-mirage]
- install dune-configurator 3.18.1 [required by mirage-crypto, mirage-crypto-ec]
- install duration 0.2.1 [required by awa-mirage]
- install eqaf 0.10 [required by awa]
- install fmt 0.10.0 [required by awa, mirage-flow]
- 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 awa-mirage]
- install lwt 5.9.1 [required by awa-mirage]
- install macaddr 5.6.0 [required by ipaddr]
- install mirage-crypto 2.0.0 [required by awa]
- install mirage-crypto-ec 2.0.0 [required by awa]
- install mirage-crypto-pk 2.0.0 [required by awa]
- install mirage-crypto-rng 2.0.0 [required by awa]
- install mirage-flow 5.0.0 [required by awa-mirage]
- install mirage-mtime 5.0.0 [required by awa-mirage]
- install mirage-sleep 4.0.0 [required by awa-mirage]
- install mtime 2.1.0 [required by awa-mirage]
- install ocamlbuild 0.16.1 [required by logs, mtime]
- install ocamlfind 1.9.8 [required by logs, mtime]
- install ocplib-endian 1.2 [required by lwt]
- install ohex 0.2.0 [required by x509]
- install ptime 1.2.0 [required by x509]
- install topkg 1.0.8 [required by logs, mtime]
- install x509 1.0.6 [required by awa]
- install zarith 1.14 [required by awa]
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
+ /opt/homebrew/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:78e4f40cba6419cf7e2d81e9c945d1e93744511bd5230bdfac1b69ed894914b4
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/96a5c6ba7b30c6f2734be44067ba66ef0de5e0973c913659c7b555a4b063029c--gmp--6.3.0.arm64_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:24e921aaf87bc253adf250761cb4bf717d14dec995d2f6302cf966f30f28fe59
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/0edb51c813324d2dd844ffe8591067a9189a6bbeb61d670f82866e4047eb939b--pkgconf--2.4.3.arm64_sonoma.bottle.tar.gz
- ==> Pouring gmp--6.3.0.arm64_sonoma.bottle.tar.gz
- 🍺 /opt/homebrew/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.arm64_sonoma.bottle.tar.gz
- 🍺 /opt/homebrew/Cellar/pkgconf/2.4.3: 27 files, 485.2KB
- ==> Running `brew cleanup pkgconf`...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved awa.0.5.1, awa-mirage.0.5.1 (https://github.com/mirage/awa-ssh/releases/download/v0.5.1/awa-0.5.1.tbz)
-> retrieved base64.3.5.1 (cached)
-> retrieved cmdliner.1.3.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 cstruct.6.2.0, cstruct-unix.6.2.0 (cached)
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> retrieved dune.3.18.1, dune-configurator.3.18.1 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.10 (cached)
-> retrieved fmt.0.10.0 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached)
-> installed cmdliner.1.3.0
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.8.0 (cached)
-> retrieved lwt.5.9.1 (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 mirage-flow.5.0.0 (cached)
-> retrieved mirage-mtime.5.0.0 (cached)
-> retrieved mirage-sleep.4.0.0 (cached)
-> retrieved mtime.2.1.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 ptime.1.2.0 (cached)
-> retrieved topkg.1.0.8 (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.0.8
-> installed mtime.2.1.0
-> installed fmt.0.10.0
-> installed ptime.1.2.0
-> installed dune.3.18.1
-> installed csexp.1.5.2
-> installed domain-name.0.4.1
-> installed eqaf.0.10
-> installed duration.0.2.1
-> installed cstruct.6.2.0
-> installed cppo.1.8.0
-> installed base64.3.5.1
-> installed asn1-combinators.0.3.2
-> installed gmap.0.3.0
-> installed cstruct-unix.6.2.0
-> installed macaddr.5.6.0
-> installed mirage-mtime.5.0.0
-> installed ohex.0.2.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.0
-> installed digestif.1.3.0
-> installed dune-configurator.3.18.1
-> installed mirage-crypto.2.0.0
-> installed kdf.1.0.0
-> installed lwt.5.9.1
-> installed mirage-flow.5.0.0
-> installed mirage-sleep.4.0.0
-> installed logs.0.8.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.6
-> installed awa.0.5.1
-> installed awa-mirage.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-24 14:25.08 ---> using "1e49e20b542e4282371d0f036154c6bccf9fbd7d3e89f2767b5bfdd9f682d3e7" from cache
/: (run (network host)
(shell "(opam reinstall --with-test awa-mirage.0.5.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile awa-mirage 0.5.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed awa-mirage.0.5.1
-> installed awa-mirage.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-24 14:25.12 ---> saved as "3762f1085fdb8146d35ffc385b6071beba3ee59ca67ae7fb2a22c0cb04bab797"
/: (run (shell "opam reinstall --with-test --verbose awa-mirage.0.5.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\" != 'awa-mirage.0.5.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 awa-mirage 0.5.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [awa-mirage: dune build]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "awa-mirage" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/awa-mirage.0.5.1)
Processing 2/4: [awa-mirage: dune runtest]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "awa-mirage" "-j" "7" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/awa-mirage.0.5.1)
-> compiled awa-mirage.0.5.1
-> removed awa-mirage.0.5.1
-> installed awa-mirage.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-24 14:25.16 ---> saved as "fd24871b5bbae270dcd68036c0dc5c7c3636f4a1100fd327b9ecfadd96683d84"
Job succeeded
2025-04-24 14:25.26: Job succeeded