(for PR #29921)
2026-05-22 14:38.26: New job: build awso-sync.0.9.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29921/head (26b581962da4b56e20652e11f59c3ecd2f3e2823)
on opensuse-16.0-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:opensuse-16.0-ocaml-5.4@sha256:15e55112c4156fde534fc48cd0431f2b7da352746e63936c660612021da45e94
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-sync.0.9.0 0.9.0
RUN opam reinstall awso-sync.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 "\"opensuse-16.0\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'awso-sync.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:opensuse-16.0-ocaml-5.4@sha256:15e55112c4156fde534fc48cd0431f2b7da352746e63936c660612021da45e94-awso-sync.0.9.0-26b581962da4b56e20652e11f59c3ecd2f3e2823"
2026-05-22 14:38.26: Using OBuilder spec:
((from ocaml/opam:opensuse-16.0-ocaml-5.4@sha256:15e55112c4156fde534fc48cd0431f2b7da352746e63936c660612021da45e94)
(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-sync.0.9.0 0.9.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall awso-sync.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 \"\\\"opensuse-16.0\\\"\"; 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-sync.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:38.27: Waiting for worker…
2026-05-22 14:45.46: Got resource from pool OCluster
Building on clete.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:opensuse-16.0-ocaml-5.4@sha256:15e55112c4156fde534fc48cd0431f2b7da352746e63936c660612021da45e94)
2026-05-22 14:46.23 ---> saved as "dcaa0a584b4bb8e90982019ad94869b1f4d47f87a539b92b2d46b404e17fb290"
/: (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 14:46.23 ---> saved as "3d2246b5ee2f40f53bd65d4801a0096ed196d1b3f4b77b422d63767dc6b91c7c"
/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-22 14:46.33 ---> saved as "c9cb1b2c0208dd05eb16e3fb8b0587ecc11dc6619e7ad9f324093924de8a3017"
/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=opensuse-leap os-version=16.0
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# 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-22 14:46.33 ---> saved as "4c92b45c5b0bfa317c18f4005fe18cb03943d306f20c3bda75688e5471fbbb11"
/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 14:46.39 ---> saved as "c4797887f1c45969c3462b38e0fb6676ed1994c744da4405a246196c7c978897"
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-22 14:46.52 ---> saved as "df89b111864fa47c24b77276285b4165d19649a5ec17a9f8938741dd13a04b69"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-22 14:47.02 ---> saved as "e8372834ba79145ec28fbf6099424958a308ef53d5eb909529dd6d27be88fd4c"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'repo-openh264 (16.0)' is up to date.
- Retrieving repository 'repo-oss (16.0)' metadata [....
- Looking for gpg keys in repository repo-oss (16.0).
- gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key
- .
- ..
- .
- .
- .
- ...
- .......
- .....
- ....
- ........
- .....
- .....
- .......
- ......
- ......
- .......
- ......
- .....
- .........
- .....
- ......
- .....
- .......
- .....
- .......
- ......
- .......
- ......
- .......
- ......
- .......
- .....
- .....
- .......
- ....
- .......
- .......
- ......
- .....
- ......
- ......
- ......
- ......
- ......
- .....
- .......
- ......
- ......
- ......
- ......
- .......
- ......
- .....
- ........
- ........
- .......
- ......
- .......
- ........
- ......
- .......
- .....
- ........
- .......
- .....
- ........
- ......
- .......
- .....
- ......
- ........
- ......
- ......
- .......
- .......
- ......
- ......
- .....
- ......
- .......
- ......
- .......
- .......
- ....
- ......
- ....
- ......
- ......
- .......
- ......
- ......
- .....
- .......
- ........
- .......
- ....
- ......
- ......
- .....
- .......
- .....
- ......
- .......
- ......
- ........
- .........
- ......
- ......
- ........
- ......
- .....
- ......
- ....
- ......
- .....
- .......
- ........
- ......
- ......
- ......
- .....
- ......
- ......
- ......
- .....
- ......
- .......
- .....
- ......
- ......
- ......
- ......
- .......
- ........
- .......
- .....
- ......
- ......
- ......
- ......
- .....
- .....
- .......
- ......
- .......
- ......
- .......
- ......
- .......
- .....
- .....
- .......
- ......
- ......
- ......
- ......
- .......
- .....
- ......
- ......
- .......
- .....
- .....
- ......
- .....
- ......
- .....
- ......
- ......
- ......
- ......
- ......
- .......
- ......
- ......
- .......
- ......
- .......
- .......
- ......
- .....
- .......
- .......
- .........
- ......
- ......
- ......
- .....
- ......
- .......
- .....
- .....
- .......
- .......
- .......
- ....
- .......
- .......
- ......
- ......
- ....
- ......
- .......
- ......
- .......
- ......
- ......
- .....
- .......
- ......
- .......
- ....
- ......
- .......
- .......
- .....
- .......
- ......
- .......
- ......
- .....
- .........
- .......
- .......
- ......
- .......
- ......
- ......
- .......
- ......
- .......
- ......
- .......
- .....
- ......
- ........
- ......
- .......
- ........
- ......
- .........
- .....
- .......
- ......
- .......
- ......
- ........
- ........
- ......
- .......
- ......
- .......
- ......
- ......
- ......
- .......
- .........
- .......
- .....
- .......
- .......
- .......
- ......
- ......
- ......
- ........
- ....done]
- Building repository 'repo-oss (16.0)' cache [..
- ..done]
- All repositories have been refreshed.
2026-05-22 14:52.09 ---> saved as "a2fa6a33cddc9ff0dd247c65ff3aef1a5b1a8276c36cb6b2a149308e046d6d2f"
/home/opam: (run (shell "opam pin add -k version -yn awso-sync.0.9.0 0.9.0"))
awso-sync is now pinned to version 0.9.0
2026-05-22 14:52.11 ---> saved as "b200d1d8ad860aec902af3072633b02242f4491097f728caae224fb816a14dc4"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall awso-sync.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 \"\\\"opensuse-16.0\\\"\"; 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-sync.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-sync.0.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 61 packages
- install angstrom 0.16.1 [required by uri]
- install awso 0.9.0 [required by awso-sync]
- install awso-common 0.9.0 [required by awso]
- install awso-sync 0.9.0 (pinned)
- install base v0.17.3 [required by ppx_yojson_conv]
- install base64 3.5.2 [required by cohttp]
- install bigstringaf 0.10.0 [required by angstrom]
- install cohttp 6.2.1 [required by awso]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by cryptokit]
- install conf-libcurl 2 [required by ocurl]
- install conf-pkg-config 4 [required by conf-zlib, zarith]
- install conf-zlib 1 [required by cryptokit]
- install cryptokit 1.21.1 [required by awso]
- install csexp 1.5.2 [required by dune-configurator]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.23.1 [required by awso-sync]
- install dune-configurator 3.23.1 [required by cryptokit]
- install http 6.2.1 [required by cohttp]
- install ipaddr 5.6.2 [required by cohttp]
- install jane-street-headers v0.17.0 [required by time_now]
- install jst-config v0.17.0 [required by time_now]
- install logs 0.10.0 [required by cohttp]
- install macaddr 5.6.2 [required by ipaddr]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocaml_intrinsics_kernel v0.17.2 [required by base]
- install ocamlbuild 0.16.1 [required by xmlm]
- install ocamlfind 1.9.8 [required by ocurl]
- install octavius 1.2.2 [required by ppx_js_style]
- install ocurl 0.9.2 [required by awso-sync]
- 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-sync]
- 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_js_style v0.17.1 [required by ppx_yojson_conv]
- install ppx_optcomp v0.17.1 [required by time_now]
- install ppx_sexp_conv v0.17.1 [required by cohttp]
- install ppx_yojson_conv v0.17.1 [required by awso]
- install ppx_yojson_conv_lib v0.17.0 [required by ppx_yojson_conv]
- install ppxlib 0.38.0 [required by ppx_yojson_conv]
- install ppxlib_jane v0.17.4 [required by ppx_globalize, ppx_enumerate, ppx_hash]
- install re 1.14.0 [required by awso]
- install sexplib0 v0.17.0 [required by cohttp]
- install stdio v0.17.0 [required by ppx_expect]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install stringext 1.6.0 [required by cohttp]
- install time_now v0.17.0 [required by ppx_inline_test]
- install topkg 1.1.1 [required by xmlm]
- install uri 4.4.0 [required by cohttp]
- install uri-sexp 4.4.0 [required by cohttp]
- install xmlm 1.4.0 [required by awso]
- install yojson 3.0.0 [required by awso]
- install zarith 1.14 [required by awso]
The following system packages will first need to be installed:
gmp-devel libcurl-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "zypper" "--non-interactive" "install" "gmp-devel" "libcurl-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
-
- The following 18 NEW packages are going to be installed:
- gmp-devel keyutils-devel krb5-devel libbrotli-devel libbrotlienc1 libcom_err-devel libcrypto56 libcurl-devel libgmpxx4 libidn2-devel libnghttp2-devel libpsl-devel libressl-devel libssh-devel libssl59 libtls32 libverto-devel libzstd-devel
-
- 18 new packages to install.
-
- Package download size: 2.8 MiB
-
- Package install size change:
- | 7.0 MiB required by packages that will be installed
- 7.0 MiB | - 0 B released by packages that will be removed
-
- Backend: classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [.
- Preloading: krb5-devel-1.21.3-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- .
- Preloading: libverto-devel-0.3.2-160000.2.2.x86_64.rpm [done]
- .
- .
- Preloading: krb5-devel-1.21.3-160000.2.2.x86_64.rpm [done]
- ..
- .
- Preloading: libtls32-4.1.0-bp160.1.1.x86_64.rpm [done]
- ..
- Preloading: libressl-devel-4.1.0-bp160.1.1.x86_64.rpm [done]
- .
- .
- Preloading: libbrotli-devel-1.1.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libssl59-4.1.0-bp160.1.1.x86_64.rpm [done]
- .
- Preloading: libssh-devel-0.11.4-160000.1.1.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- .
- Preloading: libssh-devel-0.11.4-160000.1.1.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
-
- Preloading: libzstd-devel-1.5.7-160000.2.2.x86_64.rpm [done]
- .
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: keyutils-devel-1.6.3-160000.3.2.x86_64.rpm [done]
- .
- Preloading: libssh-devel-0.11.4-160000.1.1.x86_64.rpm [done]
- ..
- Preloading: libgmpxx4-6.3.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: libpsl-devel-0.21.5-160000.3.2.x86_64.rpm [done]
- ..
- .
- Preloading: libidn2-devel-2.3.8-160000.2.2.x86_64.rpm [done]
- ..
- Preloading: libnghttp2-devel-1.64.0-160000.3.1.x86_64.rpm [done]
- .
- Preloading: libcom_err-devel-1.47.0-160000.3.2.x86_64.rpm [done]
- .
- ..
-
- Preloading: libbrotlienc1-1.1.0-160000.2.2.x86_64.rpm [done]
- ...
- .
- .
- Preloading: libcrypto56-4.1.0-bp160.1.1.x86_64.rpm [done]
- .
-
- Preloading: libcurl-devel-8.14.1-160000.5.1.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
- ..
-
- Preloading: libcurl-devel-8.14.1-160000.5.1.x86_64.rpm [done]
- .done]
- Retrieving: keyutils-devel-1.6.3-160000.3.2.x86_64 (repo-oss (16.0)) (1/18), 17.0 KiB
- Retrieving: libbrotlienc1-1.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (2/18), 263.6 KiB
- Retrieving: libcom_err-devel-1.47.0-160000.3.2.x86_64 (repo-oss (16.0)) (3/18), 84.4 KiB
- Retrieving: libcrypto56-4.1.0-bp160.1.1.x86_64 (repo-oss (16.0)) (4/18), 709.4 KiB
- Retrieving: libgmpxx4-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (5/18), 32.3 KiB
- Retrieving: libidn2-devel-2.3.8-160000.2.2.x86_64 (repo-oss (16.0)) (6/18), 67.7 KiB
- Retrieving: libnghttp2-devel-1.64.0-160000.3.1.x86_64 (repo-oss (16.0)) (7/18), 115.0 KiB
- Retrieving: libpsl-devel-0.21.5-160000.3.2.x86_64 (repo-oss (16.0)) (8/18), 31.9 KiB
- Retrieving: libssh-devel-0.11.4-160000.1.1.x86_64 (repo-oss (16.0)) (9/18), 72.7 KiB
- Retrieving: libverto-devel-0.3.2-160000.2.2.x86_64 (repo-oss (16.0)) (10/18), 14.9 KiB
- Retrieving: libzstd-devel-1.5.7-160000.2.2.x86_64 (repo-oss (16.0)) (11/18), 79.5 KiB
- Retrieving: libbrotli-devel-1.1.0-160000.2.2.x86_64 (repo-oss (16.0)) (12/18), 37.7 KiB
- Retrieving: libssl59-4.1.0-bp160.1.1.x86_64 (repo-oss (16.0)) (13/18), 186.9 KiB
- Retrieving: gmp-devel-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (14/18), 320.7 KiB
- Retrieving: krb5-devel-1.21.3-160000.2.2.x86_64 (repo-oss (16.0)) (15/18), 196.7 KiB
- Retrieving: libtls32-4.1.0-bp160.1.1.x86_64 (repo-oss (16.0)) (16/18), 71.3 KiB
- Retrieving: libressl-devel-4.1.0-bp160.1.1.x86_64 (repo-oss (16.0)) (17/18), 216.5 KiB
- Retrieving: libcurl-devel-8.14.1-160000.5.1.x86_64 (repo-oss (16.0)) (18/18), 344.6 KiB
-
- Checking for file conflicts: [..done]
- ( 1/18) Installing: keyutils-devel-1.6.3-160000.3.2.x86_64 [..done]
- ( 2/18) Installing: libbrotlienc1-1.1.0-160000.2.2.x86_64 [..done]
- ( 3/18) Installing: libcom_err-devel-1.47.0-160000.3.2.x86_64 [..done]
- ( 4/18) Installing: libcrypto56-4.1.0-bp160.1.1.x86_64 [..done]
- ( 5/18) Installing: libgmpxx4-6.3.0-160000.2.2.x86_64 [..done]
- ( 6/18) Installing: libidn2-devel-2.3.8-160000.2.2.x86_64 [..done]
- ( 7/18) Installing: libnghttp2-devel-1.64.0-160000.3.1.x86_64 [..done]
- ( 8/18) Installing: libpsl-devel-0.21.5-160000.3.2.x86_64 [..done]
- ( 9/18) Installing: libssh-devel-0.11.4-160000.1.1.x86_64 [.
- .done]
- (10/18) Installing: libverto-devel-0.3.2-160000.2.2.x86_64 [..done]
- (11/18) Installing: libzstd-devel-1.5.7-160000.2.2.x86_64 [..done]
- (12/18) Installing: libbrotli-devel-1.1.0-160000.2.2.x86_64 [..done]
- (13/18) Installing: libssl59-4.1.0-bp160.1.1.x86_64 [..done]
- (14/18) Installing: gmp-devel-6.3.0-160000.2.2.x86_64 [..done]
- (15/18) Installing: krb5-devel-1.21.3-160000.2.2.x86_64 [..done]
- (16/18) Installing: libtls32-4.1.0-bp160.1.1.x86_64 [..done]
- (17/18) Installing: libressl-devel-4.1.0-bp160.1.1.x86_64 [..done]
- (18/18) Installing: libcurl-devel-8.14.1-160000.5.1.x86_64 [..done]
- Running post-transaction scripts [...done]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved awso.0.9.0, awso-common.0.9.0, awso-sync.0.9.0 (https://github.com/mbacarella/ocaml-awso/releases/download/0.9.0/awso-0.9.0.tbz)
-> retrieved base.v0.17.3 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved cohttp.6.2.1, http.6.2.1 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-gmp-powm-sec.4 (cached)
-> retrieved cryptokit.1.21.1 (cached)
-> installed conf-gmp.5
-> installed conf-libcurl.2
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-zlib.1
-> retrieved dune.3.23.1, dune-configurator.3.23.1 (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2 (cached)
-> retrieved jane-street-headers.v0.17.0 (cached)
-> retrieved jst-config.v0.17.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (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 octavius.1.2.2 (cached)
-> retrieved ocurl.0.9.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_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 re.1.14.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, uri-sexp.4.4.0 (cached)
-> retrieved xmlm.1.4.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed logs.0.10.0
-> installed xmlm.1.4.0
-> installed dune.3.23.1
-> installed jane-street-headers.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed base64.3.5.2
-> installed stdlib-shims.0.3.0
-> installed macaddr.5.6.2
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed http.6.2.1
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.2
-> installed sexplib0.v0.17.0
-> installed stringext.1.6.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed re.1.14.0
-> installed octavius.1.2.2
-> installed ipaddr.5.6.2
-> installed yojson.3.0.0
-> installed ppx_yojson_conv_lib.v0.17.0
-> installed dune-configurator.3.23.1
-> installed bigstringaf.0.10.0
-> installed ocurl.0.9.2
-> installed angstrom.0.16.1
-> installed cryptokit.1.21.1
-> installed uri.4.4.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.38.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_js_style.v0.17.1
-> installed ppx_enumerate.v0.17.0
-> 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 ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed cohttp.6.2.1
-> 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
-> installed awso.0.9.0
-> installed awso-sync.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-22 15:11.22 ---> saved as "8d7460124b8c23fdd02c6f50c4899c00587110daf7ebd9bd81ebceaa4e3e2985"
Job succeeded
2026-05-22 15:11.48: Job succeeded