(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 centos-10-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:centos-10-ocaml-5.4@sha256:6129d3efd221cc59eed393e8f9ffee9691b80628eb826293a7c47bc34832ed59
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 "\"centos-10\""; 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:centos-10-ocaml-5.4@sha256:6129d3efd221cc59eed393e8f9ffee9691b80628eb826293a7c47bc34832ed59-awso-sync.0.9.0-26b581962da4b56e20652e11f59c3ecd2f3e2823"
2026-05-22 14:38.26: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-5.4@sha256:6129d3efd221cc59eed393e8f9ffee9691b80628eb826293a7c47bc34832ed59)
(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 \"\\\"centos-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-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:40.55: Waiting for worker…
2026-05-22 14:54.47: Got resource from pool OCluster
Building on asteria.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:centos-10-ocaml-5.4@sha256:6129d3efd221cc59eed393e8f9ffee9691b80628eb826293a7c47bc34832ed59)
2026-05-22 14:55.39 ---> saved as "0ac1e0c26c748004c1c1d16d31e4555f6db15fdf42d922e651734c9a410d70a5"
/: (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:55.43 ---> saved as "49cd5e9e21712f6b5a487c4acaaeae5b180e50cecaaa9ce0d71918cb9ddaaa8a"
/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
2026-05-22 14:55.56 ---> saved as "e1e26248408cac0a43ddc244ba9e28c751c7c9230fc6c60d02ae9d5db6c9e2d3"
/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=centos os-version=10
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# 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:56.00 ---> saved as "9f946a90ebd5c715a8f8b5584301e42079d7699e7118b2b09e0a0907ec8d30e0"
/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:56.15 ---> saved as "966c262249320636ca0125fa95d1871d230f1d7825e8f3b1bb8e665b4e199dcc"
/home/opam: (copy (src .) (dst opam-repository/))
2026-05-22 14:56.27 ---> saved as "e0b51a1df23dc79459adfc2f1b7eb7b2be9790a232854a20eca8a1597e9fed22"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-22 14:56.40 ---> saved as "fa83119f232e34754bb1f648bab77b2e1ab89dc3c6efe91a5de33264d06cf151"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS 21 kB/s | 14 kB 00:00
- CentOS Stream 10 - BaseOS 77 kB/s | 7.0 MB 01:31
- CentOS Stream 10 - AppStream 2.7 kB/s | 14 kB 00:05
- CentOS Stream 10 - AppStream 89 kB/s | 3.6 MB 00:41
- CentOS Stream 10 - CRB 40 kB/s | 14 kB 00:00
- CentOS Stream 10 - CRB 64 kB/s | 839 kB 00:13
- CentOS Stream 10 - Extras packages 3.2 kB/s | 16 kB 00:05
- Metadata cache created.
2026-05-22 14:59.27 ---> saved as "e6ec4d564e89e178a768e02a1b2cd7d4f7be55ff50b36e8b19d9c44034669dad"
/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:59.34 ---> saved as "eba41ab95dc6339d206b6d4c8f3031ce5c235ac8104d0e0ced15d4cf03aea17b"
/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 \"\\\"centos-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-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 openssl-devel zlib-ng-compat-static
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "gmp-devel" "libcurl-devel" "openssl-devel" "zlib-ng-compat-static"
- Last metadata expiration check: 0:00:25 ago on Fri May 22 14:59:21 2026.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repository Size
- ================================================================================
- Installing:
- gmp-devel x86_64 1:6.2.1-12.el10 appstream 174 k
- libcurl-devel x86_64 8.12.1-5.el10 appstream 946 k
- openssl-devel x86_64 1:3.5.5-3.el10 appstream 4.2 M
- zlib-ng-compat-static x86_64 2.2.3-3.el10 crb 84 k
- Upgrading:
- openssl-fips-provider x86_64 1:3.5.5-3.el10 baseos 813 k
- openssl-libs x86_64 1:3.5.5-3.el10 baseos 2.3 M
- Installing dependencies:
- brotli x86_64 1.1.0-7.el10 appstream 19 k
- brotli-devel x86_64 1.1.0-7.el10 appstream 34 k
- gmp-c++ x86_64 1:6.2.1-12.el10 appstream 20 k
- keyutils-libs-devel x86_64 1.6.3-5.el10 appstream 61 k
- krb5-devel x86_64 1.21.3-11.el10 appstream 143 k
- libcom_err-devel x86_64 1.47.1-5.el10 appstream 16 k
- libidn2-devel x86_64 2.3.7-3.el10 appstream 71 k
- libkadm5 x86_64 1.21.3-11.el10 baseos 76 k
- libnghttp2-devel x86_64 1.68.0-4.el10 appstream 53 k
- libpsl x86_64 0.21.5-6.el10 baseos 65 k
- libpsl-devel x86_64 0.21.5-6.el10 appstream 35 k
- libselinux-devel x86_64 3.10-2.el10 appstream 161 k
- libsepol-devel x86_64 3.10-1.el10 appstream 47 k
- libssh x86_64 0.12.0-2.el10 baseos 276 k
- libssh-config noarch 0.12.0-2.el10 baseos 8.2 k
- libssh-devel x86_64 0.12.0-2.el10 appstream 47 k
- libverto-devel x86_64 0.3.2-10.el10 appstream 15 k
- pcre2-devel x86_64 10.44-1.el10.3 appstream 532 k
- pcre2-utf16 x86_64 10.44-1.el10.3 appstream 227 k
- pcre2-utf32 x86_64 10.44-1.el10.3 appstream 215 k
- publicsuffix-list noarch 20240107-5.el10 appstream 88 k
- publicsuffix-list-dafsa noarch 20240107-5.el10 baseos 59 k
-
- Transaction Summary
- ================================================================================
- Install 26 Packages
- Upgrade 2 Packages
-
- Total download size: 11 M
- Downloading Packages:
- (1/28): libkadm5-1.21.3-11.el10.x86_64.rpm 21 kB/s | 76 kB 00:03
- (2/28): libpsl-0.21.5-6.el10.x86_64.rpm 17 kB/s | 65 kB 00:03
- (3/28): libssh-config-0.12.0-2.el10.noarch.rpm 16 kB/s | 8.2 kB 00:00
- (4/28): publicsuffix-list-dafsa-20240107-5.el10 118 kB/s | 59 kB 00:00
- (5/28): brotli-1.1.0-7.el10.x86_64.rpm 54 kB/s | 19 kB 00:00
- (6/28): gmp-c++-6.2.1-12.el10.x86_64.rpm 125 kB/s | 20 kB 00:00
- (7/28): brotli-devel-1.1.0-7.el10.x86_64.rpm 132 kB/s | 34 kB 00:00
- (8/28): keyutils-libs-devel-1.6.3-5.el10.x86_64 125 kB/s | 61 kB 00:00
- (9/28): libssh-0.12.0-2.el10.x86_64.rpm 51 kB/s | 276 kB 00:05
- (10/28): libcom_err-devel-1.47.1-5.el10.x86_64. 31 kB/s | 16 kB 00:00
- (11/28): gmp-devel-6.2.1-12.el10.x86_64.rpm 102 kB/s | 174 kB 00:01
- (12/28): krb5-devel-1.21.3-11.el10.x86_64.rpm 83 kB/s | 143 kB 00:01
- (13/28): libidn2-devel-2.3.7-3.el10.x86_64.rpm 76 kB/s | 71 kB 00:00
- (14/28): libnghttp2-devel-1.68.0-4.el10.x86_64. 79 kB/s | 53 kB 00:00
- (15/28): libpsl-devel-0.21.5-6.el10.x86_64.rpm 83 kB/s | 35 kB 00:00
- (16/28): libsepol-devel-3.10-1.el10.x86_64.rpm 106 kB/s | 47 kB 00:00
- (17/28): libssh-devel-0.12.0-2.el10.x86_64.rpm 90 kB/s | 47 kB 00:00
- (18/28): libverto-devel-0.3.2-10.el10.x86_64.rp 106 kB/s | 15 kB 00:00
- (19/28): libselinux-devel-3.10-2.el10.x86_64.rp 86 kB/s | 161 kB 00:01
- (20/28): pcre2-devel-10.44-1.el10.3.x86_64.rpm 87 kB/s | 532 kB 00:06
- (21/28): libcurl-devel-8.12.1-5.el10.x86_64.rpm 90 kB/s | 946 kB 00:10
- (22/28): pcre2-utf16-10.44-1.el10.3.x86_64.rpm 84 kB/s | 227 kB 00:02
- (23/28): pcre2-utf32-10.44-1.el10.3.x86_64.rpm 73 kB/s | 215 kB 00:02
- (24/28): publicsuffix-list-20240107-5.el10.noar 71 kB/s | 88 kB 00:01
- (25/28): zlib-ng-compat-static-2.2.3-3.el10.x86 91 kB/s | 84 kB 00:00
- (26/28): openssl-fips-provider-3.5.5-3.el10.x86 100 kB/s | 813 kB 00:08
- (27/28): openssl-libs-3.5.5-3.el10.x86_64.rpm 85 kB/s | 2.3 MB 00:27
- (28/28): openssl-devel-3.5.5-3.el10.x86_64.rpm 86 kB/s | 4.2 MB 00:50
- --------------------------------------------------------------------------------
- Total 154 kB/s | 11 MB 01:10
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Upgrading : openssl-libs-1:3.5.5-3.el10.x86_64 1/30
- Upgrading : openssl-fips-provider-1:3.5.5-3.el10.x86_64 2/30
- Installing : libkadm5-1.21.3-11.el10.x86_64 3/30
- Installing : openssl-devel-1:3.5.5-3.el10.x86_64 4/30
- Installing : publicsuffix-list-20240107-5.el10.noarch 5/30
- Installing : pcre2-utf32-10.44-1.el10.3.x86_64 6/30
- Installing : pcre2-utf16-10.44-1.el10.3.x86_64 7/30
- Installing : pcre2-devel-10.44-1.el10.3.x86_64 8/30
- Installing : libverto-devel-0.3.2-10.el10.x86_64 9/30
- Installing : libsepol-devel-3.10-1.el10.x86_64 10/30
- Installing : libselinux-devel-3.10-2.el10.x86_64 11/30
- Installing : libnghttp2-devel-1.68.0-4.el10.x86_64 12/30
- Installing : libidn2-devel-2.3.7-3.el10.x86_64 13/30
- Installing : libcom_err-devel-1.47.1-5.el10.x86_64 14/30
- Installing : keyutils-libs-devel-1.6.3-5.el10.x86_64 15/30
- Installing : krb5-devel-1.21.3-11.el10.x86_64 16/30
- Installing : gmp-c++-1:6.2.1-12.el10.x86_64 17/30
- Installing : brotli-1.1.0-7.el10.x86_64 18/30
- Installing : brotli-devel-1.1.0-7.el10.x86_64 19/30
- Installing : publicsuffix-list-dafsa-20240107-5.el10.noarch 20/30
- Installing : libpsl-0.21.5-6.el10.x86_64 21/30
- Installing : libpsl-devel-0.21.5-6.el10.x86_64 22/30
- Installing : libssh-config-0.12.0-2.el10.noarch 23/30
- Installing : libssh-0.12.0-2.el10.x86_64 24/30
- Installing : libssh-devel-0.12.0-2.el10.x86_64 25/30
-
- Installing : libcurl-devel-8.12.1-5.el10.x86_64 26/30
- Installing : gmp-devel-1:6.2.1-12.el10.x86_64 27/30
- Installing : zlib-ng-compat-static-2.2.3-3.el10.x86_64 28/30
- Cleanup : openssl-fips-provider-1:3.5.5-2.el10.x86_64 29/30
- Cleanup : openssl-libs-1:3.5.5-2.el10.x86_64 30/30
- Running scriptlet: openssl-libs-1:3.5.5-2.el10.x86_64 30/30
-
- Upgraded:
- openssl-fips-provider-1:3.5.5-3.el10.x86_64
- openssl-libs-1:3.5.5-3.el10.x86_64
- Installed:
- brotli-1.1.0-7.el10.x86_64
- brotli-devel-1.1.0-7.el10.x86_64
- gmp-c++-1:6.2.1-12.el10.x86_64
- gmp-devel-1:6.2.1-12.el10.x86_64
- keyutils-libs-devel-1.6.3-5.el10.x86_64
- krb5-devel-1.21.3-11.el10.x86_64
- libcom_err-devel-1.47.1-5.el10.x86_64
- libcurl-devel-8.12.1-5.el10.x86_64
- libidn2-devel-2.3.7-3.el10.x86_64
- libkadm5-1.21.3-11.el10.x86_64
- libnghttp2-devel-1.68.0-4.el10.x86_64
- libpsl-0.21.5-6.el10.x86_64
- libpsl-devel-0.21.5-6.el10.x86_64
- libselinux-devel-3.10-2.el10.x86_64
- libsepol-devel-3.10-1.el10.x86_64
- libssh-0.12.0-2.el10.x86_64
- libssh-config-0.12.0-2.el10.noarch
- libssh-devel-0.12.0-2.el10.x86_64
- libverto-devel-0.3.2-10.el10.x86_64
- openssl-devel-1:3.5.5-3.el10.x86_64
- pcre2-devel-10.44-1.el10.3.x86_64
- pcre2-utf16-10.44-1.el10.3.x86_64
- pcre2-utf32-10.44-1.el10.3.x86_64
- publicsuffix-list-20240107-5.el10.noarch
- publicsuffix-list-dafsa-20240107-5.el10.noarch
- zlib-ng-compat-static-2.2.3-3.el10.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "libcurl-devel" "openssl-devel" "zlib-ng-compat-static"
- gmp-devel-6.2.1-12.el10.x86_64
- libcurl-devel-8.12.1-5.el10.x86_64
- openssl-devel-3.5.5-3.el10.x86_64
- zlib-ng-compat-static-2.2.3-3.el10.x86_64
<><> 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-libcurl.2
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> retrieved domain-name.0.5.0 (cached)
-> installed conf-gmp.5
-> installed conf-zlib.1
-> installed conf-gmp-powm-sec.4
-> 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 base64.3.5.2
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed http.6.2.1
-> installed macaddr.5.6.2
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.2
-> installed octavius.1.2.2
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.3.0.0
-> installed ipaddr.5.6.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 ocurl.0.9.2
-> 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 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_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:09.06 ---> saved as "ddb411b11e25e2cc56c738ad82b23249bc176619e7f8772bfac6f4655e743974"
Job succeeded
2026-05-22 15:09.17: Job succeeded