Build:
- 1
- 0
2026-03-05 22:52.49: New job: test opentelemetry-logs.0.13, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29501/head (fee83bbe33e4b4e7608ba61bb82ca9ea3c0ad932)
on centos-9-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/29501/head" && git reset --hard fee83bbe
git fetch origin master
git merge --no-edit 60ec6b8550edfae5d646174db3d4a71d61428705
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-5.4@sha256:323780c6dfcdd73de53d675c4bf7052e2e5bee8eaf9eb67d39f87542c86f09d8
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 opentelemetry-logs.0.13 0.13
RUN opam reinstall opentelemetry-logs.0.13; \
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-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opentelemetry-logs.0.13' && 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 opentelemetry-logs.0.13) || true
RUN opam reinstall --with-test --verbose opentelemetry-logs.0.13; \
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-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opentelemetry-logs.0.13' && 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-03-05 22:52.49: Using cache hint "ocaml/opam:centos-9-ocaml-5.4@sha256:323780c6dfcdd73de53d675c4bf7052e2e5bee8eaf9eb67d39f87542c86f09d8-opentelemetry-logs.0.13-fee83bbe33e4b4e7608ba61bb82ca9ea3c0ad932"
2026-03-05 22:52.49: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-5.4@sha256:323780c6dfcdd73de53d675c4bf7052e2e5bee8eaf9eb67d39f87542c86f09d8)
(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 opentelemetry-logs.0.13 0.13"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opentelemetry-logs.0.13;\
\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-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opentelemetry-logs.0.13' && 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 opentelemetry-logs.0.13) || true"))
(run (shell "opam reinstall --with-test --verbose opentelemetry-logs.0.13;\
\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-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opentelemetry-logs.0.13' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-05 22:52.49: Waiting for resource in pool OCluster
2026-03-05 22:52.49: Waiting for worker…
2026-03-05 22:52.50: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 60ec6b8550 Merge pull request #29448 from jeromemaloberti/obuild.0.2.2
Merge made by the 'ort' strategy.
.../opentelemetry-client-cohttp-eio.0.13/opam | 53 ++++++++++++++++++++
.../opentelemetry-client-cohttp-lwt.0.13/opam | 51 +++++++++++++++++++
.../opentelemetry-client-ocurl.0.13/opam | 47 ++++++++++++++++++
.../opentelemetry-cohttp-lwt.0.13/opam | 47 ++++++++++++++++++
.../opentelemetry-logs.0.13/opam | 49 +++++++++++++++++++
.../opentelemetry-lwt/opentelemetry-lwt.0.13/opam | 48 ++++++++++++++++++
packages/opentelemetry/opentelemetry.0.13/opam | 57 ++++++++++++++++++++++
7 files changed, 352 insertions(+)
create mode 100644 packages/opentelemetry-client-cohttp-eio/opentelemetry-client-cohttp-eio.0.13/opam
create mode 100644 packages/opentelemetry-client-cohttp-lwt/opentelemetry-client-cohttp-lwt.0.13/opam
create mode 100644 packages/opentelemetry-client-ocurl/opentelemetry-client-ocurl.0.13/opam
create mode 100644 packages/opentelemetry-cohttp-lwt/opentelemetry-cohttp-lwt.0.13/opam
create mode 100644 packages/opentelemetry-logs/opentelemetry-logs.0.13/opam
create mode 100644 packages/opentelemetry-lwt/opentelemetry-lwt.0.13/opam
create mode 100644 packages/opentelemetry/opentelemetry.0.13/opam
(from ocaml/opam:centos-9-ocaml-5.4@sha256:323780c6dfcdd73de53d675c4bf7052e2e5bee8eaf9eb67d39f87542c86f09d8)
Unable to find image 'ocaml/opam:centos-9-ocaml-5.4@sha256:323780c6dfcdd73de53d675c4bf7052e2e5bee8eaf9eb67d39f87542c86f09d8' locally
docker.io/ocaml/opam@sha256:323780c6dfcdd73de53d675c4bf7052e2e5bee8eaf9eb67d39f87542c86f09d8: Pulling from ocaml/opam
0e3cb7fbe929: Pulling fs layer
51993f938d82: Pulling fs layer
51b85b90cedc: Pulling fs layer
97d73fde0b10: Pulling fs layer
3cd32d66ff23: Pulling fs layer
a1abaee787b2: Pulling fs layer
a1abaee787b2: Waiting
97d73fde0b10: Waiting
3cd32d66ff23: Waiting
51993f938d82: Verifying Checksum
51993f938d82: Download complete
97d73fde0b10: Verifying Checksum
97d73fde0b10: Download complete
3cd32d66ff23: Download complete
a1abaee787b2: Verifying Checksum
a1abaee787b2: Download complete
0e3cb7fbe929: Verifying Checksum
0e3cb7fbe929: Download complete
51b85b90cedc: Verifying Checksum
51b85b90cedc: Download complete
0e3cb7fbe929: Pull complete
51993f938d82: Pull complete
51b85b90cedc: Pull complete
97d73fde0b10: Pull complete
3cd32d66ff23: Pull complete
a1abaee787b2: Pull complete
Digest: sha256:323780c6dfcdd73de53d675c4bf7052e2e5bee8eaf9eb67d39f87542c86f09d8
Status: Downloaded newer image for ocaml/opam@sha256:323780c6dfcdd73de53d675c4bf7052e2e5bee8eaf9eb67d39f87542c86f09d8
2026-03-05 22:53.09 ---> using "5de76c316a63ced250ca94402133e8d7075ef1cf98b6bc8c2a436ecbdb76475e" 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-03-05 22:53.09 ---> using "449ecaa46b245ad4f189493bdfb290031b97bdb739086ec0f1996f82b3e21d51" 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.0 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 71 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=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-05 22:53.09 ---> using "d2986b2132fa65452b4e62c14db21b4d47c1d531cbc42db9836215b39cf4ef2d" 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.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=centos os-version=9
# 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.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, 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.0
2026-03-05 22:53.09 ---> using "4af94eb05ca34268efbe19f32c433cc50b25c877167311413e52cd83f90b57f3" 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-03-05 22:53.09 ---> using "2e3d62e2b3a35f9365e802718bd1fe3386f864f14883c05d6e5095062dc9b49a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-05 22:53.21 ---> saved as "c5bcbeb39a48e5ef7b2b47cedef8ff57224bc43693d5dc66c4e35822e2ee115b"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-05 22:53.41 ---> saved as "9a7e5e603ea3a2bee33b281b7d21ce0a315ad080e98199d36ec06e460cb03185"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 108 kB/s | 15 kB 00:00
- CentOS Stream 9 - AppStream 112 kB/s | 16 kB 00:00
- CentOS Stream 9 - CRB 28 kB/s | 15 kB 00:00
- CentOS Stream 9 - Extras packages 132 kB/s | 17 kB 00:00
- Metadata cache created.
2026-03-05 22:53.46 ---> saved as "10a05a0b558cc82fc9f51a6b695f7e5e07c6c3921ced08a7596c663b74446a72"
/home/opam: (run (shell "opam pin add -k version -yn opentelemetry-logs.0.13 0.13"))
opentelemetry-logs is now pinned to version 0.13
2026-03-05 22:53.50 ---> saved as "e4434a0533d531fc0829427fa8cdcd407d2076e711788d9dbe5057d6b4bac46c"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opentelemetry-logs.0.13;\
\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-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opentelemetry-logs.0.13' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
opentelemetry-logs.0.13 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 15 packages
- install ambient-context 0.2 [required by opentelemetry]
- install atomic base [required by opentelemetry]
- install dune 3.21.1 [required by opentelemetry-logs]
- install hmap 0.8.1 [required by opentelemetry]
- install logs 0.10.0 [required by opentelemetry-logs]
- install mtime 2.1.0 [required by opentelemetry]
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install opentelemetry 0.13 [required by opentelemetry-logs]
- install opentelemetry-logs 0.13 (pinned)
- install pbrt 3.1.1 [required by opentelemetry]
- install ptime 1.2.0 [required by opentelemetry]
- install stdlib-shims 0.3.0 [required by pbrt]
- install thread-local-storage 0.2 [required by opentelemetry]
- install topkg 1.1.1 [required by logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ambient-context.0.2 (cached)
-> retrieved atomic.base (cached)
-> installed atomic.base
-> retrieved dune.3.21.1 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved opentelemetry.0.13, opentelemetry-logs.0.13 (cached)
-> retrieved pbrt.3.1.1 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved thread-local-storage.0.2 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed logs.0.10.0
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed dune.3.21.1
-> installed stdlib-shims.0.3.0
-> installed thread-local-storage.0.2
-> installed pbrt.3.1.1
-> installed ambient-context.0.2
-> installed opentelemetry.0.13
-> installed opentelemetry-logs.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 22:54.24 ---> saved as "f56baf89a91f87a479f9e64a5605bc5db38ad02c254a1bce6380c9a99f1fc625"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test opentelemetry-logs.0.13) || true"))
The following actions will be performed:
=== recompile 3 packages
- recompile logs 0.10.0 [uses cmdliner]
- recompile opentelemetry 0.13 [uses lwt]
- recompile opentelemetry-logs 0.13 (pinned)
=== install 65 packages
- install alcotest 1.9.1 [required by opentelemetry-logs]
- install angstrom 0.16.1 [required by uri]
- install asn1-combinators 0.3.2 [required by x509]
- install astring 0.8.5 [required by alcotest]
- install base v0.17.3 [required by ppx_sexp_conv]
- install base-bytes base [required by ocplib-endian]
- install base64 3.5.2 [required by cohttp]
- install bigstringaf 0.10.0 [required by angstrom]
- install bos 0.2.1 [required by ca-certs]
- install ca-certs 1.0.1 [required by conduit-lwt-unix]
- install cmdliner 2.1.0 [required by alcotest, cohttp-lwt-unix]
- install cohttp 6.2.1 [required by cohttp-lwt-unix]
- install cohttp-lwt 6.2.1 [required by opentelemetry-client-cohttp-lwt, cohttp-lwt-unix, opentelemetry-cohttp-lwt]
- install cohttp-lwt-unix 6.2.1 [required by opentelemetry-logs]
- install conduit 8.0.0 [required by conduit-lwt]
- install conduit-lwt 8.0.0 [required by cohttp-lwt-unix]
- install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix]
- install conf-gmp 5 [required by conf-gmp-powm-sec, zarith]
- install conf-gmp-powm-sec 4 [required by mirage-crypto-pk]
- install conf-pkg-config 4 [required by zarith]
- install containers 3.18 [required by opentelemetry-logs]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install digestif 1.3.0 [required by ca-certs]
- install domain-name 0.5.0 [required by ipaddr]
- install dune-configurator 3.21.1 [required by containers]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install either 1.0.0 [required by containers]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install fmt 0.11.0 [required by alcotest, cohttp-lwt-unix]
- install fpath 0.7.3 [required by ca-certs]
- install gmap 0.3.0 [required by x509]
- install http 6.2.1 [required by cohttp-lwt-unix]
- install ipaddr 5.6.2 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install ipaddr-sexp 5.6.2 [required by conduit-lwt-unix]
- install kdf 1.0.0 [required by x509]
- install lwt 6.1.1 [required by opentelemetry-client-cohttp-lwt, cohttp-lwt-unix, opentelemetry-cohttp-lwt]
- install lwt_ppx 6.1.0 [required by opentelemetry-client-cohttp-lwt]
- install macaddr 5.6.2 [required by ipaddr]
- install magic-mime 1.3.1 [required by cohttp-lwt-unix]
- install mirage-crypto 2.0.3 [required by ca-certs]
- install mirage-crypto-ec 2.0.3 [required by x509]
- install mirage-crypto-pk 2.0.3 [required by x509]
- install mirage-crypto-rng 2.0.3 [required by x509]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocplib-endian 1.2 [required by lwt]
- install ohex 0.2.0 [required by ca-certs]
- install opentelemetry-client-cohttp-lwt 0.13 [required by opentelemetry-logs]
- install opentelemetry-cohttp-lwt 0.13 [required by opentelemetry-logs]
- install opentelemetry-lwt 0.13 [required by opentelemetry-client-cohttp-lwt, opentelemetry-cohttp-lwt]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_sexp_conv v0.17.1 [required by cohttp-lwt-unix]
- install ppxlib 0.37.0 [required by lwt_ppx]
- install ppxlib_jane v0.17.4 [required by ppx_sexp_conv]
- install re 1.14.0 [required by alcotest]
- install rresult 0.7.0 [required by bos]
- install sexplib0 v0.17.0 [required by cohttp-lwt, cohttp, conduit-lwt]
- install stringext 1.6.0 [required by cohttp]
- install uri 4.4.0 [required by cohttp-lwt, cohttp, conduit-lwt-unix]
- install uri-sexp 4.4.0 [required by cohttp]
- install uutf 1.0.4 [required by alcotest]
- install x509 1.0.6 [required by ca-certs]
- install zarith 1.14 [required by mirage-crypto-pk]
The following system packages will first need to be installed:
gmp-devel
<><> 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"
- Last metadata expiration check: 0:00:45 ago on Thu Mar 5 22:53:44 2026.
- Dependencies resolved.
- ================================================================================
- Package Architecture Version Repository Size
- ================================================================================
- Installing:
- gmp-devel x86_64 1:6.2.0-13.el9 appstream 174 k
- Installing dependencies:
- gmp-c++ x86_64 1:6.2.0-13.el9 appstream 19 k
-
- Transaction Summary
- ================================================================================
- Install 2 Packages
-
- Total download size: 193 k
- Installed size: 382 k
- Downloading Packages:
- (1/2): gmp-c++-6.2.0-13.el9.x86_64.rpm 73 kB/s | 19 kB 00:00
- (2/2): gmp-devel-6.2.0-13.el9.x86_64.rpm 635 kB/s | 174 kB 00:00
- --------------------------------------------------------------------------------
- Total 478 kB/s | 193 kB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : gmp-c++-1:6.2.0-13.el9.x86_64 1/2
- Installing : gmp-devel-1:6.2.0-13.el9.x86_64 2/2
- Running scriptlet: gmp-devel-1:6.2.0-13.el9.x86_64 2/2
- Verifying : gmp-c++-1:6.2.0-13.el9.x86_64 1/2
- Verifying : gmp-devel-1:6.2.0-13.el9.x86_64 2/2
-
- Installed:
- gmp-c++-1:6.2.0-13.el9.x86_64 gmp-devel-1:6.2.0-13.el9.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.2.0-13.el9.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved angstrom.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.3.2 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved base.v0.17.3 (https://opam.ocaml.org/cache)
-> installed base-bytes.base
-> installed asn1-combinators.0.3.2
-> retrieved base64.3.5.2 (https://opam.ocaml.org/cache)
-> retrieved bigstringaf.0.10.0 (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> retrieved bos.0.2.1 (https://opam.ocaml.org/cache)
-> retrieved ca-certs.1.0.1 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1 (https://opam.ocaml.org/cache)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5 (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> retrieved conf-gmp-powm-sec.4 (https://opam.ocaml.org/cache)
-> installed http.6.2.1
-> installed conf-gmp-powm-sec.4
-> installed conf-pkg-config.4
-> retrieved containers.3.18 (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved digestif.1.3.0 (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> installed domain-name.0.5.0
-> retrieved dune-configurator.3.21.1 (https://opam.ocaml.org/cache)
-> retrieved duration.0.2.1 (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed duration.0.2.1
-> retrieved either.1.0.0 (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> installed dune-configurator.3.21.1
-> retrieved eqaf.0.10 (https://opam.ocaml.org/cache)
-> installed bigstringaf.0.10.0
-> installed eqaf.0.10
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3 (https://opam.ocaml.org/cache)
-> installed containers.3.18
-> retrieved gmap.0.3.0 (https://opam.ocaml.org/cache)
-> installed digestif.1.3.0
-> installed gmap.0.3.0
-> installed fpath.0.7.3
-> installed fmt.0.11.0
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2 (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.2
-> retrieved kdf.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> installed ipaddr.5.6.2
-> retrieved lwt.6.1.1 (https://opam.ocaml.org/cache)
-> retrieved lwt_ppx.6.1.0 (https://opam.ocaml.org/cache)
-> retrieved magic-mime.1.3.1 (https://opam.ocaml.org/cache)
-> installed magic-mime.1.3.1
-> retrieved mirage-crypto.2.0.3, mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (https://opam.ocaml.org/cache)
-> retrieved ocplib-endian.1.2 (https://opam.ocaml.org/cache)
-> retrieved ohex.0.2.0 (https://opam.ocaml.org/cache)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ocplib-endian.1.2
-> installed ohex.0.2.0
-> retrieved opentelemetry.0.13, opentelemetry-client-cohttp-lwt.0.13, opentelemetry-cohttp-lwt.0.13, opentelemetry-logs.0.13, opentelemetry-lwt.0.13 (https://github.com/ocaml-tracing/ocaml-opentelemetry/releases/download/v0.13/opentelemetry-0.13.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed mirage-crypto.2.0.3
-> installed angstrom.0.16.1
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed kdf.1.0.0
-> retrieved ppx_sexp_conv.v0.17.1 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> installed lwt.6.1.1
-> retrieved rresult.0.7.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stringext.1.6.0 (https://opam.ocaml.org/cache)
-> retrieved uri.4.4.0, uri-sexp.4.4.0 (https://opam.ocaml.org/cache)
-> installed stringext.1.6.0
-> installed rresult.0.7.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.17.0
-> removed opentelemetry-logs.0.13
-> removed logs.0.10.0
-> removed opentelemetry.0.13
-> installed re.1.14.0
-> retrieved x509.1.0.6 (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14 (https://opam.ocaml.org/cache)
-> installed opentelemetry.0.13
-> installed logs.0.10.0
-> installed uutf.1.0.4
-> installed mirage-crypto-rng.2.0.3
-> installed uri.4.4.0
-> installed alcotest.1.9.1
-> installed zarith.1.14
-> installed bos.0.2.1
-> installed mirage-crypto-pk.2.0.3
-> installed base.v0.17.3
-> installed mirage-crypto-ec.2.0.3
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed lwt_ppx.6.1.0
-> installed opentelemetry-lwt.0.13
-> installed ppx_sexp_conv.v0.17.1
-> installed ipaddr-sexp.5.6.2
-> installed uri-sexp.4.4.0
-> installed conduit.8.0.0
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed opentelemetry-cohttp-lwt.0.13
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed opentelemetry-client-cohttp-lwt.0.13
-> installed opentelemetry-logs.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 22:55.28 ---> saved as "d70e68fe9d04bda5a818017b84291d9bd8173345314529f76f65a05445503375"
/home/opam: (run (shell "opam reinstall --with-test --verbose opentelemetry-logs.0.13;\
\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-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'opentelemetry-logs.0.13' && 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 opentelemetry-logs 0.13 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [opentelemetry-logs: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opentelemetry-logs" "-j" "255" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/opentelemetry-logs.0.13)
- (cd _build/default/tests/logs && ./test_logs_e2e.exe) > _build/default/tests/logs/test_logs_e2e.exe.output
- starting server on http://localhost:4359
- running command: emit_logs_cohttp --url http://localhost:4359
- config: { debug=false;
- self_trace=false; url_traces="http://localhost:4359/v1/traces";
- url_metrics="http://localhost:4359/v1/metrics";
- url_logs="http://localhost:4359/v1/logs"; headers=;
- batch_traces=400; batch_metrics=3; batch_logs=400;
- batch_timeout_ms=2000 }
- emit_logs_cohttp: [INFO] emit_logs: this log will be emitted from otel and fmt reporter
Processing 2/4: [opentelemetry-logs: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "opentelemetry-logs" "--create-install-files" "opentelemetry-logs" (CWD=/home/opam/.opam/5.4/.opam-switch/build/opentelemetry-logs.0.13)
-> compiled opentelemetry-logs.0.13
-> removed opentelemetry-logs.0.13
-> installed opentelemetry-logs.0.13
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-05 22:55.42 ---> saved as "3d8cae4d1f4698295f2ad05568c0babd5839626f5923130629b8718109adae72"
Job succeeded
2026-03-05 22:56.34: Job succeeded