(for PR #29921)
2026-05-22 14:38.27: New job: test awso-lwt.0.9.0, using opam 2.1
from https://github.com/ocaml/opam-repository.git#refs/pull/29921/head (26b581962da4b56e20652e11f59c3ecd2f3e2823)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29921/head" && git reset --hard 26b58196
git fetch origin master
git merge --no-edit 3e30e43808721339489775ee25d69c4c9c441697
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /usr/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 --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn awso-lwt.0.9.0 0.9.0
RUN opam reinstall awso-lwt.0.9.0; \
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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'awso-lwt.0.9.0' && 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 awso-lwt.0.9.0) || true
RUN opam reinstall --with-test --verbose awso-lwt.0.9.0; \
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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'awso-lwt.0.9.0' && 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-05-22 14:38.27: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc-awso-lwt.0.9.0-26b581962da4b56e20652e11f59c3ecd2f3e2823"
2026-05-22 14:38.27: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -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 --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn awso-lwt.0.9.0 0.9.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall awso-lwt.0.9.0;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'awso-lwt.0.9.0' && 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 awso-lwt.0.9.0) || true"))
(run (shell "opam reinstall --with-test --verbose awso-lwt.0.9.0;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'awso-lwt.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-05-22 14:38.27: Waiting for resource in pool OCluster
2026-05-22 14:59.31: Waiting for worker…
2026-05-22 15:17.50: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files: 68% (12203/17943)
Updating files: 69% (12381/17943)
Updating files: 70% (12561/17943)
Updating files: 71% (12740/17943)
Updating files: 72% (12919/17943)
Updating files: 73% (13099/17943)
Updating files: 74% (13278/17943)
Updating files: 75% (13458/17943)
Updating files: 76% (13637/17943)
Updating files: 77% (13817/17943)
Updating files: 78% (13996/17943)
Updating files: 79% (14175/17943)
Updating files: 80% (14355/17943)
Updating files: 81% (14534/17943)
Updating files: 82% (14714/17943)
Updating files: 83% (14893/17943)
Updating files: 84% (15073/17943)
Updating files: 85% (15252/17943)
Updating files: 86% (15431/17943)
Updating files: 87% (15611/17943)
Updating files: 88% (15790/17943)
Updating files: 89% (15970/17943)
Updating files: 90% (16149/17943)
Updating files: 91% (16329/17943)
Updating files: 92% (16508/17943)
Updating files: 93% (16687/17943)
Updating files: 94% (16867/17943)
Updating files: 95% (17046/17943)
Updating files: 96% (17226/17943)
Updating files: 97% (17405/17943)
Updating files: 98% (17585/17943)
Updating files: 99% (17764/17943)
Updating files: 100% (17943/17943)
Updating files: 100% (17943/17943), done.
HEAD is now at 3e30e43808 Merge pull request #29935 from sim642/release-odep-0.2.2
Updating 3e30e43808..26b581962d
Fast-forward
packages/awso-async/awso-async.0.9.0/opam | 52 ++++++++++++++++++++++++++++
packages/awso-cli/awso-cli.0.9.0/opam | 47 +++++++++++++++++++++++++
packages/awso-common/awso-common.0.9.0/opam | 45 ++++++++++++++++++++++++
packages/awso-lwt/awso-lwt.0.9.0/opam | 47 +++++++++++++++++++++++++
packages/awso-sync/awso-sync.0.9.0/opam | 47 +++++++++++++++++++++++++
packages/awso/awso.0.9.0/opam | 53 +++++++++++++++++++++++++++++
6 files changed, 291 insertions(+)
create mode 100644 packages/awso-async/awso-async.0.9.0/opam
create mode 100644 packages/awso-cli/awso-cli.0.9.0/opam
create mode 100644 packages/awso-common/awso-common.0.9.0/opam
create mode 100644 packages/awso-lwt/awso-lwt.0.9.0/opam
create mode 100644 packages/awso-sync/awso-sync.0.9.0/opam
create mode 100644 packages/awso/awso.0.9.0/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc)
2026-05-22 15:22.47 ---> using "ac1995f8abd260285fd7f15d3dfa37a0c18d5abe2573e173c9117b295287210f" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2026-05-22 15:22.48 ---> using "688c46b3729d4d44e6294b5dbc3144fe1e77e349148dba56ba52c65c8751cc00" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from 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.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-22 15:23.10 ---> saved as "6ff9f227318ced3826ee778e564a5faf9a9fe6a9f10d2b1fdc59b2c6b07c4b22"
/home/opam: (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.1.6 (263921263e1f745613e2882745114b7b08f3608b)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria
# upgrade-criteria
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-05-22 15:23.24 ---> saved as "aece597466071897f2129e44649ddf826792545d59d101a324ae52628f20e447"
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-05-22 15:23.45 ---> saved as "4fc0fb55a46ad50477689d187ff56b603e4a1c4e16d14967eb2a4beb2751fe7c"
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-22 15:31.16 ---> saved as "6e877984ffcd0377bf10ee3cb0e7743c0bf77d9aaeb4994f8f6f4b70aca7369d"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-22 15:31.42 ---> saved as "1e35b727a5a46070788b06cf4c82b95e70265fbbc7c1dd7faddba0c54c7fec55"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [166 kB]
- Fetched 10.1 MB in 24s (422 kB/s)
- Reading package lists...
-
2026-05-22 15:32.15 ---> saved as "9ebf12058991d99ba0d9b0177ff959ccca1a481410c3098fd71b7178a300e550"
/home/opam: (run (shell "opam pin add -k version -yn awso-lwt.0.9.0 0.9.0"))
awso-lwt is now pinned to version 0.9.0
2026-05-22 15:32.21 ---> saved as "702d6856636a94206584c7ba1b2a62ff21387371c20a3092e6d1d777c9d4a037"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall awso-lwt.0.9.0;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'awso-lwt.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
awso-lwt.0.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- recompile ocaml-compiler 5.4.1 [upstream or system changes]
- install conf-pkg-config 4 [required by conf-zlib, zarith]
- install conf-gmp-powm-sec 4 [required by cryptokit]
- recompile ocaml-base-compiler 5.4.1* [uses ocaml-compiler]
- install conf-zlib 1 [required by cryptokit]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile ocaml 5.4.1 [upstream or system changes]
- install ocamlfind 1.9.8 [required by xmlm]
- install ocamlbuild 0.16.1 [required by xmlm]
- install dune 3.23.1 [required by awso-lwt]
- install cmdliner 2.1.1 [required by cohttp-lwt-unix]
- recompile opam-depext 1.2.3 [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-domains base [uses ocaml]
- install zarith 1.14 [required by awso]
- install base-bytes base [required by ocplib-endian]
- install topkg 1.1.1 [required by xmlm]
- install yojson 3.0.0 [required by awso]
- install stringext 1.6.0 [required by cohttp]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install sexplib0 v0.17.0 [required by cohttp-lwt, cohttp, conduit-lwt]
- install re 1.14.0 [required by awso]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ohex 0.2.0 [required by ca-certs]
- install octavius 1.2.2 [required by ppx_js_style]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml_intrinsics_kernel v0.17.2 [required by base]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install macaddr 5.6.2 [required by ipaddr]
- install jane-street-headers v0.17.0 [required by time_now]
- install http 6.2.1 [required by cohttp-lwt-unix]
- install gmap 0.3.0 [required by x509]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install duration 0.3.1 [required by mirage-crypto-rng]
- install domain-name 0.5.0 [required by ipaddr]
- install csexp 1.5.2 [required by dune-configurator]
- install cppo 1.8.0 [required by lwt]
- install base64 3.5.2 [required by cohttp]
- recompile base-nnp base [uses base-domains]
- install xmlm 1.4.0 [required by awso]
- install rresult 0.7.0 [required by bos]
- install ptime 1.2.0 [required by ca-certs]
- install fmt 0.11.0 [required by cohttp-lwt-unix]
- install astring 0.8.5 [required by conduit]
- install ppx_yojson_conv_lib v0.17.0 [required by ppx_yojson_conv]
- install ppxlib 0.38.0 [required by lwt_ppx]
- install digestif 1.3.0 [required by ca-certs]
- install ipaddr 5.6.2 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install dune-configurator 3.23.1 [required by cryptokit]
- install ocplib-endian 1.2 [required by lwt]
- install asn1-combinators 0.3.2 [required by x509]
- install fpath 0.7.3 [required by ca-certs]
- install ppxlib_jane v0.17.4 [required by ppx_globalize, ppx_enumerate, ppx_hash]
- install mirage-crypto 2.1.0 [required by ca-certs]
- install cryptokit 1.21.1 [required by awso]
- install bigstringaf 0.10.0 [required by angstrom]
- install base v0.17.3 [required by ppx_yojson_conv]
- install lwt 6.1.2 [required by awso-lwt]
- install kdf 1.0.0 [required by x509]
- install angstrom 0.16.1 [required by uri]
- install stdio v0.17.0 [required by ppx_expect]
- install ppx_sexp_conv v0.17.1 [required by cohttp-lwt-unix]
- install ppx_js_style v0.17.1 [required by ppx_yojson_conv]
- install ppx_here v0.17.0 [required by ppx_expect]
- install ppx_globalize v0.17.2 [required by ppx_base]
- install ppx_enumerate v0.17.0 [required by ppx_base]
- install ppx_compare v0.17.0 [required by ppx_base]
- install ppx_cold v0.17.0 [required by ppx_base]
- install lwt_ppx 6.1.0 [required by awso-lwt]
- install logs 0.10.0 [required by cohttp-lwt-unix]
- install uri 4.4.0 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install ppx_optcomp v0.17.1 [required by time_now]
- install ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
- install ppx_yojson_conv v0.17.1 [required by awso]
- install ppx_hash v0.17.0 [required by ppx_base]
- install ppx_assert v0.17.0 [required by jst-config]
- install mirage-crypto-rng 2.1.0 [required by x509]
- install bos 0.3.0 [required by ca-certs]
- install uri-sexp 4.4.0 [required by cohttp]
- install conduit 8.0.0 [required by conduit-lwt]
- install ppx_base v0.17.0 [required by time_now]
- install jst-config v0.17.0 [required by time_now]
- install mirage-crypto-pk 2.1.0 [required by x509]
- install mirage-crypto-ec 2.1.0 [required by x509]
- install cohttp 6.2.1 [required by awso, cohttp-lwt-unix]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install time_now v0.17.0 [required by ppx_inline_test]
- install x509 1.0.6 [required by ca-certs]
- install cohttp-lwt 6.2.1 [required by cohttp-lwt-unix]
- install ppx_inline_test v0.17.1 [required by ppx_expect]
- install ca-certs 1.0.3 [required by conduit-lwt-unix]
- install ppx_expect v0.17.3 [required by awso]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install awso-common 0.9.0 [required by awso]
- install cohttp-lwt-unix 6.2.1 [required by awso-lwt]
- install awso 0.9.0 [required by awso-lwt]
- install awso-lwt 0.9.0*
===== 91 to install | 8 to recompile =====
The following system packages will first need to be installed:
libgmp-dev pkg-config zlib1g-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
Let opam run your package manager to install the required system packages?
(answer 'n' for other options) [Y/n] y
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../6-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved asn1-combinators.0.3.2 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved awso.0.9.0 (cached)
-> retrieved awso-common.0.9.0 (cached)
-> retrieved awso-lwt.0.9.0 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved bos.0.3.0 (cached)
-> retrieved ca-certs.1.0.3 (cached)
-> retrieved cmdliner.2.1.1 (cached)
-> retrieved cohttp.6.2.1 (cached)
-> retrieved cohttp-lwt.6.2.1 (cached)
-> retrieved cohttp-lwt-unix.6.2.1 (cached)
-> retrieved conduit.8.0.0 (cached)
-> retrieved conduit-lwt.8.0.0 (cached)
-> retrieved 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-gmp.5
-> installed conf-pkg-config.4
-> retrieved cryptokit.1.21.1 (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-zlib.1
-> retrieved csexp.1.5.2 (cached)
-> retrieved digestif.1.3.0 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.23.1 (cached)
-> retrieved dune-configurator.3.23.1 (cached)
-> retrieved duration.0.3.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 http.6.2.1 (cached)
-> retrieved ipaddr.5.6.2 (cached)
-> retrieved ipaddr-sexp.5.6.2 (cached)
-> retrieved jane-street-headers.v0.17.0 (cached)
-> retrieved jst-config.v0.17.0 (cached)
-> retrieved kdf.1.0.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.6.1.2 (cached)
-> retrieved lwt_ppx.6.1.0 (cached)
-> retrieved macaddr.5.6.2 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved mirage-crypto.2.1.0 (cached)
-> retrieved mirage-crypto-ec.2.1.0 (cached)
-> retrieved mirage-crypto-pk.2.1.0 (cached)
-> retrieved mirage-crypto-rng.2.1.0 (cached)
-> retrieved ocaml-compiler.5.4.1 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.2 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved octavius.1.2.2 (cached)
-> retrieved ohex.0.2.0 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> retrieved ppx_assert.v0.17.0 (cached)
-> retrieved ppx_base.v0.17.0 (cached)
-> retrieved ppx_cold.v0.17.0 (cached)
-> retrieved ppx_compare.v0.17.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_enumerate.v0.17.0 (cached)
-> retrieved ppx_expect.v0.17.3 (cached)
-> retrieved ppx_globalize.v0.17.2 (cached)
-> retrieved ppx_hash.v0.17.0 (cached)
-> retrieved ppx_here.v0.17.0 (cached)
-> retrieved ppx_inline_test.v0.17.1 (cached)
-> retrieved ppx_js_style.v0.17.1 (cached)
-> retrieved ppx_optcomp.v0.17.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppx_yojson_conv.v0.17.1 (cached)
-> retrieved ppx_yojson_conv_lib.v0.17.0 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdio.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved time_now.v0.17.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved uri.4.4.0 (cached)
-> retrieved uri-sexp.4.4.0 (cached)
-> retrieved x509.1.0.6 (cached)
-> retrieved xmlm.1.4.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.1
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.1
-> removed ocaml-compiler.5.4.1
-> installed ocaml-compiler.5.4.1
-> installed ocaml-base-compiler.5.4.1
-> installed ocaml-config.3
-> installed ocaml.5.4.1
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed cmdliner.2.1.1
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed xmlm.1.4.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.23.1
-> installed jane-street-headers.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed base64.3.5.2
-> installed domain-name.0.5.0
-> installed duration.0.3.1
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> installed http.6.2.1
-> installed macaddr.5.6.2
-> installed ocaml_intrinsics_kernel.v0.17.2
-> installed ohex.0.2.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed asn1-combinators.0.3.2
-> installed sexplib0.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed magic-mime.1.3.1
-> installed ipaddr.5.6.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed octavius.1.2.2
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed digestif.1.3.0
-> installed ocplib-endian.1.2
-> installed ppx_yojson_conv_lib.v0.17.0
-> installed dune-configurator.3.23.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.1.0
-> installed cryptokit.1.21.1
-> installed kdf.1.0.0
-> installed lwt.6.1.2
-> installed uri.4.4.0
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.1.0
-> installed mirage-crypto-pk.2.1.0
-> installed base.v0.17.3
-> installed bos.0.3.0
-> installed stdio.v0.17.0
-> installed mirage-crypto-ec.2.1.0
-> installed x509.1.0.6
-> installed ca-certs.1.0.3
-> installed ppxlib.0.38.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed lwt_ppx.6.1.0
-> installed ppx_js_style.v0.17.1
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_yojson_conv.v0.17.1
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.6.2
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed conduit.8.0.0
-> installed ppx_base.v0.17.0
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed jst-config.v0.17.0
-> installed cohttp-lwt.6.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed time_now.v0.17.0
-> installed cohttp-lwt-unix.6.2.1
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed awso-common.0.9.0
-> installed awso.0.9.0
-> installed awso-lwt.0.9.0
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# Run eval $(opam env) to update the current shell environment
2026-05-22 15:44.07 ---> saved as "eec2368cb23f2b0eb8c9f5660aa6985955d3f584ebc8426da5fc25fe28762d55"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test awso-lwt.0.9.0) || true"))
The following actions will be performed:
- recompile awso-lwt 0.9.0*
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed awso-lwt.0.9.0
-> installed awso-lwt.0.9.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-05-22 15:45.02 ---> saved as "5ddee3bea1460070b6d96b16fc3d43742d71ff82cb91c6202e1d3947b1912092"
/home/opam: (run (shell "opam reinstall --with-test --verbose awso-lwt.0.9.0;\
\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 \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'awso-lwt.0.9.0' && 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 awso-lwt 0.9.0*
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [awso-lwt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "awso-lwt" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/awso-lwt.0.9.0)
-> compiled awso-lwt.0.9.0
-> removed awso-lwt.0.9.0
-> installed awso-lwt.0.9.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-05-22 15:45.56 ---> saved as "42725c668968a043a41f120b628afa97a8077ed19130742546865ce3ddf7eb25"
Job succeeded
2026-05-22 15:54.39: Job succeeded