(for PR #29921)
2026-05-22 14:38.26: New job: build awso.0.9.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29921/head (26b581962da4b56e20652e11f59c3ecd2f3e2823)
on ubuntu-25.10-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/29921/head" && git reset --hard 26b58196
git fetch origin master
git merge --no-edit 3e30e43808721339489775ee25d69c4c9c441697
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:4b8a8389e00ed6255a6d5579bb2f37e5c6e27a27276cbfbf09bedcb83a31f121
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.0.9.0 0.9.0
RUN opam reinstall awso.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-25.10\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'awso.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.26: Using cache hint "ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:4b8a8389e00ed6255a6d5579bb2f37e5c6e27a27276cbfbf09bedcb83a31f121-awso.0.9.0-26b581962da4b56e20652e11f59c3ecd2f3e2823"
2026-05-22 14:38.26: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:4b8a8389e00ed6255a6d5579bb2f37e5c6e27a27276cbfbf09bedcb83a31f121)
(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.0.9.0 0.9.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall awso.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-25.10\\\"\"; 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.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.26: Waiting for resource in pool OCluster
2026-05-22 14:44.06: Waiting for worker…
2026-05-22 15:00.12: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
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-25.10-ocaml-4.14@sha256:4b8a8389e00ed6255a6d5579bb2f37e5c6e27a27276cbfbf09bedcb83a31f121)
Unable to find image 'ocaml/opam:ubuntu-25.10-ocaml-4.14@sha256:4b8a8389e00ed6255a6d5579bb2f37e5c6e27a27276cbfbf09bedcb83a31f121' locally
docker.io/ocaml/opam@sha256:4b8a8389e00ed6255a6d5579bb2f37e5c6e27a27276cbfbf09bedcb83a31f121: Pulling from ocaml/opam
16c195d4c5e9: Pulling fs layer
5d5ae59f12bf: Pulling fs layer
2a1bdaff57b1: Pulling fs layer
4f0da68efc03: Pulling fs layer
ddae77db6783: Pulling fs layer
fdb5e27abf0f: Pulling fs layer
93a3171e4fee: Pulling fs layer
4f0da68efc03: Waiting
dbf7af4bbc5e: Pulling fs layer
ddae77db6783: Waiting
5f7df1a633be: Pulling fs layer
93a3171e4fee: Waiting
fdb5e27abf0f: Waiting
dbf7af4bbc5e: Waiting
91c5054ad467: Pulling fs layer
5f7df1a633be: Waiting
f85e33539fc1: Pulling fs layer
91c5054ad467: Waiting
60715424f1f3: Pulling fs layer
3d928beeeddb: Pulling fs layer
f85e33539fc1: Waiting
60715424f1f3: Waiting
ad721eb63d8e: Pulling fs layer
6423a1c6a219: Pulling fs layer
3d928beeeddb: Waiting
5b5461462268: Pulling fs layer
d0115271718d: Pulling fs layer
6423a1c6a219: Waiting
5b5461462268: Waiting
ad721eb63d8e: Waiting
9fd788776761: Pulling fs layer
ee0541408fb9: Pulling fs layer
3710803c65d7: Pulling fs layer
ee0541408fb9: Waiting
ce2c52193d43: Pulling fs layer
3710803c65d7: Waiting
4f4fb700ef54: Pulling fs layer
ce2c52193d43: Waiting
a2f980d0b98b: Pulling fs layer
4f4fb700ef54: Waiting
410070a2f222: Pulling fs layer
d3816a848673: Pulling fs layer
7c855ca71d74: Pulling fs layer
1528501eaf16: Pulling fs layer
23228c2200ea: Pulling fs layer
54f128346b20: Pulling fs layer
76cf7939a21f: Pulling fs layer
ebfcf91f683f: Pulling fs layer
a2f980d0b98b: Waiting
aba3e293a4a1: Pulling fs layer
5f6c0c42c902: Pulling fs layer
410070a2f222: Waiting
266bc6609d9e: Pulling fs layer
1528501eaf16: Waiting
d3816a848673: Waiting
76cf7939a21f: Waiting
23228c2200ea: Waiting
7c855ca71d74: Waiting
9ba70185e826: Pulling fs layer
ebfcf91f683f: Waiting
54f128346b20: Waiting
892f7eadbfc9: Pulling fs layer
aba3e293a4a1: Waiting
5f6c0c42c902: Waiting
81c302137335: Pulling fs layer
9ba70185e826: Waiting
a255dc714083: Pulling fs layer
892f7eadbfc9: Waiting
81c302137335: Waiting
266bc6609d9e: Waiting
a255dc714083: Waiting
da091890895b: Pulling fs layer
da091890895b: Waiting
40fc735d2330: Pulling fs layer
e17b0673218b: Pulling fs layer
228a2a4b38bc: Pulling fs layer
40fc735d2330: Waiting
e17b0673218b: Waiting
832881162d49: Pulling fs layer
228a2a4b38bc: Waiting
295fec493822: Pulling fs layer
832881162d49: Waiting
295fec493822: Waiting
2a1bdaff57b1: Download complete
5d5ae59f12bf: Verifying Checksum
5d5ae59f12bf: Download complete
ddae77db6783: Verifying Checksum
ddae77db6783: Download complete
16c195d4c5e9: Verifying Checksum
16c195d4c5e9: Download complete
93a3171e4fee: Verifying Checksum
93a3171e4fee: Download complete
4f0da68efc03: Verifying Checksum
4f0da68efc03: Download complete
5f7df1a633be: Verifying Checksum
5f7df1a633be: Download complete
dbf7af4bbc5e: Verifying Checksum
dbf7af4bbc5e: Download complete
91c5054ad467: Verifying Checksum
91c5054ad467: Download complete
f85e33539fc1: Verifying Checksum
f85e33539fc1: Download complete
60715424f1f3: Verifying Checksum
60715424f1f3: Download complete
ad721eb63d8e: Verifying Checksum
ad721eb63d8e: Download complete
16c195d4c5e9: Pull complete
5d5ae59f12bf: Pull complete
2a1bdaff57b1: Pull complete
fdb5e27abf0f: Verifying Checksum
fdb5e27abf0f: Download complete
3d928beeeddb: Verifying Checksum
3d928beeeddb: Download complete
6423a1c6a219: Verifying Checksum
6423a1c6a219: Download complete
5b5461462268: Download complete
9fd788776761: Verifying Checksum
9fd788776761: Download complete
d0115271718d: Verifying Checksum
d0115271718d: Download complete
ee0541408fb9: Verifying Checksum
ee0541408fb9: Download complete
3710803c65d7: Download complete
ce2c52193d43: Verifying Checksum
ce2c52193d43: Download complete
a2f980d0b98b: Verifying Checksum
a2f980d0b98b: Download complete
4f4fb700ef54: Download complete
4f0da68efc03: Pull complete
410070a2f222: Verifying Checksum
410070a2f222: Download complete
d3816a848673: Verifying Checksum
d3816a848673: Download complete
7c855ca71d74: Verifying Checksum
7c855ca71d74: Download complete
1528501eaf16: Download complete
23228c2200ea: Verifying Checksum
23228c2200ea: Download complete
54f128346b20: Verifying Checksum
54f128346b20: Download complete
76cf7939a21f: Download complete
ebfcf91f683f: Download complete
aba3e293a4a1: Verifying Checksum
aba3e293a4a1: Download complete
5f6c0c42c902: Verifying Checksum
5f6c0c42c902: Download complete
ddae77db6783: Pull complete
266bc6609d9e: Verifying Checksum
266bc6609d9e: Download complete
a255dc714083: Download complete
da091890895b: Verifying Checksum
da091890895b: Download complete
9ba70185e826: Verifying Checksum
9ba70185e826: Download complete
fdb5e27abf0f: Pull complete
93a3171e4fee: Pull complete
dbf7af4bbc5e: Pull complete
5f7df1a633be: Pull complete
40fc735d2330: Verifying Checksum
40fc735d2330: Download complete
91c5054ad467: Pull complete
81c302137335: Verifying Checksum
81c302137335: Download complete
228a2a4b38bc: Verifying Checksum
228a2a4b38bc: Download complete
f85e33539fc1: Pull complete
295fec493822: Verifying Checksum
295fec493822: Download complete
60715424f1f3: Pull complete
3d928beeeddb: Pull complete
832881162d49: Verifying Checksum
832881162d49: Download complete
ad721eb63d8e: Pull complete
6423a1c6a219: Pull complete
5b5461462268: Pull complete
d0115271718d: Pull complete
e17b0673218b: Verifying Checksum
e17b0673218b: Download complete
9fd788776761: Pull complete
ee0541408fb9: Pull complete
3710803c65d7: Pull complete
ce2c52193d43: Pull complete
4f4fb700ef54: Pull complete
a2f980d0b98b: Pull complete
410070a2f222: Pull complete
d3816a848673: Pull complete
7c855ca71d74: Pull complete
1528501eaf16: Pull complete
23228c2200ea: Pull complete
54f128346b20: Pull complete
76cf7939a21f: Pull complete
ebfcf91f683f: Pull complete
aba3e293a4a1: Pull complete
5f6c0c42c902: Pull complete
266bc6609d9e: Pull complete
9ba70185e826: Pull complete
892f7eadbfc9: Pull complete
81c302137335: Pull complete
a255dc714083: Pull complete
da091890895b: Pull complete
40fc735d2330: Pull complete
e17b0673218b: Pull complete
228a2a4b38bc: Pull complete
832881162d49: Pull complete
295fec493822: Pull complete
Digest: sha256:4b8a8389e00ed6255a6d5579bb2f37e5c6e27a27276cbfbf09bedcb83a31f121
Status: Downloaded newer image for ocaml/opam@sha256:4b8a8389e00ed6255a6d5579bb2f37e5c6e27a27276cbfbf09bedcb83a31f121
2026-05-22 15:00.14 ---> using "7d42f7b527b21a50e9c485d51cd4562c3b21cb305a289008a67ad4a1619765d8" 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-22 15:00.15 ---> saved as "66e269269fc04e360f44757317087996d95a70738a4e87899f92486c0181a42a"
/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.
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:///home/opam/opam-repository
[ocaml-patches-overlay] no changes from git+https://github.com/ocurrent/opam-repository#patches
2026-05-22 15:00.27 ---> saved as "a443fd58d77ff0ed64a335cf4e7817096dda541bf2a9247400cadbd6aac44908"
/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=x86_64 os=linux os-distribution=ubuntu os-version=25.10
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 2 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-05-22 15:00.28 ---> saved as "31d00ecd04fe6af944ea53b9a41509b33406b913a5475ed7fabcabe2102a2fe1"
/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:00.37 ---> saved as "bc7ddaeb70fde709cc55cc88ac819ed10edb11fb8aad4c3f282eb1002cc196d7"
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-22 15:00.47 ---> saved as "f10122eeef7893dad25e1e6c9c5ccb14816e2834eaa4de97b09ed57a43a427e8"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-22 15:00.57 ---> saved as "d99935b1dd4a849cd3feab0a427008d91de312401c9c9fb10e55c8cfc76ddf60"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu questing-security InRelease [136 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu questing InRelease
- Get:3 http://archive.ubuntu.com/ubuntu questing-updates InRelease [136 kB]
- Get:4 http://security.ubuntu.com/ubuntu questing-security/main amd64 Packages [397 kB]
- Get:5 http://archive.ubuntu.com/ubuntu questing-backports InRelease [133 kB]
- Get:6 http://archive.ubuntu.com/ubuntu questing-updates/universe amd64 Packages [401 kB]
- Get:7 http://security.ubuntu.com/ubuntu questing-security/restricted amd64 Packages [287 kB]
- Get:8 http://archive.ubuntu.com/ubuntu questing-updates/main amd64 Packages [542 kB]
- Get:9 http://archive.ubuntu.com/ubuntu questing-updates/multiverse amd64 Packages [22.9 kB]
- Get:10 http://archive.ubuntu.com/ubuntu questing-updates/restricted amd64 Packages [323 kB]
- Get:11 http://security.ubuntu.com/ubuntu questing-security/universe amd64 Packages [318 kB]
- Get:12 http://security.ubuntu.com/ubuntu questing-security/multiverse amd64 Packages [19.3 kB]
- Fetched 2714 kB in 8s (343 kB/s)
- Reading package lists...
2026-05-22 15:01.07 ---> saved as "7b944b50de25716883714ca19e2c151e661f7230dced15bfc506e8de1dd45c70"
/home/opam: (run (shell "opam pin add -k version -yn awso.0.9.0 0.9.0"))
awso is now pinned to version 0.9.0
2026-05-22 15:01.08 ---> saved as "45bf0152a07bc23bd3827a1b234e326a17a6a4c9c7cf4411503ea90123881eff"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall awso.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-25.10\\\"\"; 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.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.0.9.0 is not installed. Install it? [Y/n] y
* Incompatible packages:
- (invariant) -> ocaml-base-compiler = 4.14.3
- awso -> ocaml >= 5.3.0 -> ocaml-variants < 5.6.1~
You can temporarily relax the switch invariant with `--update-invariant'
* Missing dependency:
- awso -> ocaml >= 5.3.0 -> ocaml-variants < 5.3.1~ -> base-implicits
unknown package
* Missing dependency:
- awso -> ocaml >= 5.3.0 -> ocaml-variants < 5.3.1~ -> ocaml-beta
unmet availability conditions: 'enable-ocaml-beta-repository'
* Missing dependency:
- awso -> ocaml >= 5.3.0 -> ocaml-variants < 5.3.1~ -> ocaml (= 4.02.4 | = 4.03.1 | = 4.04.3 | = 4.05.1 | = 4.06.2 | = 4.07.2 | = 4.08.2)
no matching version
* Missing dependency:
- awso -> ocaml >= 5.3.0 -> ocaml-variants < 5.3.1~ -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall awso.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-25.10\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'awso.0.9.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 20
2026-05-22 15:01.21: Job failed: Failed: Build failed
2026-05-22 15:01.21: Log analysis:
2026-05-22 15:01.21: >>>
No solution found, exiting
(score = 100)
2026-05-22 15:01.21: [SKIP] Package not available