(for PR #29921)
2026-05-22 14:38.27: New job: test awso-common.0.9.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29921/head (26b581962da4b56e20652e11f59c3ecd2f3e2823)
on ubuntu-24.04-ocaml-5.4/riscv64
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:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /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-common.0.9.0 0.9.0
RUN opam reinstall awso-common.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'awso-common.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-common.0.9.0) || true
RUN opam reinstall --with-test --verbose awso-common.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'awso-common.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:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c-awso-common.0.9.0-26b581962da4b56e20652e11f59c3ecd2f3e2823"
2026-05-22 14:38.27: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /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-common.0.9.0 0.9.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall awso-common.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 \"\\\"ubuntu-24.04\\\"\"; 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-common.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-common.0.9.0) || true"))
(run (shell "opam reinstall --with-test --verbose awso-common.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 \"\\\"ubuntu-24.04\\\"\"; 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-common.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:38.27: Waiting for worker…
2026-05-23 01:04.32: Connecting to build cluster…
2026-05-23 01:05.29: Waiting for worker…
2026-05-24 03:32.05: Got resource from pool OCluster
Building on riscv-bm-02.sw.ci.dev
All commits already cached
Updating files: 14% (2688/17939)
Updating files: 15% (2691/17939)
Updating files: 16% (2871/17939)
Updating files: 17% (3050/17939)
Updating files: 18% (3230/17939)
Updating files: 19% (3409/17939)
Updating files: 20% (3588/17939)
Updating files: 21% (3768/17939)
Updating files: 22% (3947/17939)
Updating files: 23% (4126/17939)
Updating files: 24% (4306/17939)
Updating files: 25% (4485/17939)
Updating files: 26% (4665/17939)
Updating files: 27% (4844/17939)
Updating files: 28% (5023/17939)
Updating files: 29% (5203/17939)
Updating files: 29% (5265/17939)
Updating files: 30% (5382/17939)
Updating files: 31% (5562/17939)
Updating files: 32% (5741/17939)
Updating files: 33% (5920/17939)
Updating files: 34% (6100/17939)
Updating files: 35% (6279/17939)
Updating files: 36% (6459/17939)
Updating files: 37% (6638/17939)
Updating files: 38% (6817/17939)
Updating files: 39% (6997/17939)
Updating files: 40% (7176/17939)
Updating files: 41% (7355/17939)
Updating files: 42% (7535/17939)
Updating files: 43% (7714/17939)
Updating files: 43% (7732/17939)
Updating files: 44% (7894/17939)
Updating files: 45% (8073/17939)
Updating files: 46% (8252/17939)
Updating files: 47% (8432/17939)
Updating files: 48% (8611/17939)
Updating files: 49% (8791/17939)
Updating files: 50% (8970/17939)
Updating files: 51% (9149/17939)
Updating files: 52% (9329/17939)
Updating files: 53% (9508/17939)
Updating files: 54% (9688/17939)
Updating files: 55% (9867/17939)
Updating files: 55% (10011/17939)
Updating files: 56% (10046/17939)
Updating files: 57% (10226/17939)
Updating files: 58% (10405/17939)
Updating files: 59% (10585/17939)
Updating files: 60% (10764/17939)
Updating files: 61% (10943/17939)
Updating files: 62% (11123/17939)
Updating files: 63% (11302/17939)
Updating files: 64% (11481/17939)
Updating files: 65% (11661/17939)
Updating files: 66% (11840/17939)
Updating files: 67% (12020/17939)
Updating files: 68% (12199/17939)
Updating files: 68% (12324/17939)
Updating files: 69% (12378/17939)
Updating files: 70% (12558/17939)
Updating files: 71% (12737/17939)
Updating files: 72% (12917/17939)
Updating files: 73% (13096/17939)
Updating files: 74% (13275/17939)
Updating files: 75% (13455/17939)
Updating files: 76% (13634/17939)
Updating files: 77% (13814/17939)
Updating files: 78% (13993/17939)
Updating files: 79% (14172/17939)
Updating files: 80% (14352/17939)
Updating files: 81% (14531/17939)
Updating files: 81% (14601/17939)
Updating files: 82% (14710/17939)
Updating files: 83% (14890/17939)
Updating files: 84% (15069/17939)
Updating files: 85% (15249/17939)
Updating files: 86% (15428/17939)
Updating files: 87% (15607/17939)
Updating files: 88% (15787/17939)
Updating files: 89% (15966/17939)
Updating files: 90% (16146/17939)
Updating files: 91% (16325/17939)
Updating files: 92% (16504/17939)
Updating files: 93% (16684/17939)
Updating files: 94% (16863/17939)
Updating files: 94% (17013/17939)
Updating files: 95% (17043/17939)
Updating files: 96% (17222/17939)
Updating files: 97% (17401/17939)
Updating files: 98% (17581/17939)
Updating files: 99% (17760/17939)
Updating files: 100% (17939/17939)
Updating files: 100% (17939/17939), 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:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c)
2026-05-24 03:23.59 ---> using "a1656590e14c2bbb99fe4e1542a3da93ebad2c61b82ad4f5c6c4160a00d2bddc" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-05-24 03:23.59 ---> using "4806f51d6f3bc2de9a852ee769a60dd035fc363f7fc4d1b69a79ef932ac93a70" 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.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
[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
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-24 03:23.59 ---> using "439dd86dec9fb362937d89ecd37491a6b41d2c1253aee3730a3983fad21710a6" from cache
/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.5.1
# self-upgrade no
# system arch=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# 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-24 03:23.59 ---> using "ecccf7bb651d479573ac3620ad3e4cc37024872068ff91cb1ae564765b117df5" from cache
/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-24 03:23.59 ---> using "5f4873b758d7510d073dee429b7f7d65809f0ec20e5be63a2abc8d4d24c6041f" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-24 03:24.05 ---> using "bc42d77e747bf6c078ca57b9733433f457e53edb900425c6819a923ada1b189d" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-24 03:24.05 ---> using "a707cb8fd8b33f14c6fa48ab6c77793fbf6dd375f268371d11018540a58da5c7" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/restricted riscv64 Packages [12.5 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1603 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [970 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-backports/universe riscv64 Packages [29.7 kB]
- Get:9 http://ports.ubuntu.com/ubuntu-ports noble-security/restricted riscv64 Packages [9971 B]
- Get:10 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [1126 kB]
- Get:11 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [656 kB]
- Fetched 4786 kB in 2s (2120 kB/s)
- Reading package lists...
-
2026-05-24 03:24.05 ---> using "fa544facf9c4332faaa3fd3680161c6aa640ec1d42321d2273ea4c4258c9db45" from cache
/home/opam: (run (shell "opam pin add -k version -yn awso-common.0.9.0 0.9.0"))
awso-common is now pinned to version 0.9.0
2026-05-24 03:24.08 ---> saved as "0d6a3619d2b822923ea1e0ae48f22bd4f975794e7b7e99905b6264793a2a1f9b"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall awso-common.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 \"\\\"ubuntu-24.04\\\"\"; 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-common.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-common.0.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 29 packages
- install awso-common 0.9.0 (pinned)
- install base v0.17.3 [required by ppx_expect]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.23.1 [required by awso-common]
- install dune-configurator 3.23.1 [required by base]
- install jane-street-headers v0.17.0 [required by time_now]
- install jst-config v0.17.0 [required by time_now]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml_intrinsics_kernel v0.17.2 [required by base]
- install ppx_assert v0.17.0 [required by jst-config]
- install ppx_base v0.17.0 [required by time_now]
- install ppx_cold v0.17.0 [required by ppx_base]
- install ppx_compare v0.17.0 [required by ppx_base]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_enumerate v0.17.0 [required by ppx_base]
- install ppx_expect v0.17.3 [required by awso-common]
- install ppx_globalize v0.17.2 [required by ppx_base]
- install ppx_hash v0.17.0 [required by ppx_base]
- install ppx_here v0.17.0 [required by ppx_expect]
- install ppx_inline_test v0.17.1 [required by ppx_expect]
- install ppx_optcomp v0.17.1 [required by time_now]
- install ppx_sexp_conv v0.17.1 [required by ppx_base]
- install ppxlib 0.38.0 [required by ppx_expect]
- install ppxlib_jane v0.17.4 [required by ppx_globalize, ppx_enumerate, ppx_hash]
- install sexplib0 v0.17.0 [required by base]
- install stdio v0.17.0 [required by ppx_expect]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install time_now v0.17.0 [required by ppx_inline_test]
- install yojson 3.0.0 [required by awso-common]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved awso-common.0.9.0 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.23.1, dune-configurator.3.23.1 (cached)
-> retrieved jane-street-headers.v0.17.0 (cached)
-> retrieved jst-config.v0.17.0 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.2 (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_optcomp.v0.17.1 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdio.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved time_now.v0.17.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed dune.3.23.1
-> installed jane-street-headers.v0.17.0
-> installed csexp.1.5.2
-> installed ppx_derivers.1.2.1
-> installed ocaml_intrinsics_kernel.v0.17.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.23.1
-> installed yojson.3.0.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.38.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_here.v0.17.0
-> installed ppx_cold.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed awso-common.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 03:38.43 ---> saved as "496b42ca648259d4a7c7a1e21551f1b5e7b7e14a5d16c3da869397b87cbf8f62"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test awso-common.0.9.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile awso-common 0.9.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed awso-common.0.9.0
-> installed awso-common.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 03:39.45 ---> saved as "788f7abf82bfa86b3d9f30c2e9a3347f697118cf9009c67edbe0c4c282054e0f"
/home/opam: (run (shell "opam reinstall --with-test --verbose awso-common.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 \"\\\"ubuntu-24.04\\\"\"; 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-common.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 1 package
- recompile awso-common 0.9.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [awso-common: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "awso-common" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/awso-common.0.9.0)
-> compiled awso-common.0.9.0
-> removed awso-common.0.9.0
-> installed awso-common.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-24 03:40.44 ---> saved as "3deb47715ab3e455e299dd70e54957e9183fae219cc7ecef958ccce484638167"
Job succeeded
2026-05-24 03:48.22: Job succeeded