- github
- ocaml
- opam-repository
- e70d48
- distributions,opensuse-tumbleweed-ocaml-5.4,opentelemetry-client.0.90,tests
(not at the head of any monitored branch or PR)
2026-04-02 19:45.06: New job: test opentelemetry-client.0.90, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29633/head (e70d48a1952a7edcae52bb270d471ba97379795b)
on opensuse-tumbleweed-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/29633/head" && git reset --hard e70d48a1
git fetch origin master
git merge --no-edit c0deda526f99d43a05c065e9218404492897c64b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:8dddfdd4781bab65e9592eaed33eb1863796fc1b447d09036bc9f7f20a9d4a89
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-client.0.90 0.90
RUN opam reinstall opentelemetry-client.0.90; \
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-tumbleweed\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opentelemetry-client.0.90' && 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-client.0.90) || true
RUN opam reinstall --with-test --verbose opentelemetry-client.0.90; \
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-tumbleweed\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opentelemetry-client.0.90' && 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-04-02 19:45.06: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:8dddfdd4781bab65e9592eaed33eb1863796fc1b447d09036bc9f7f20a9d4a89-opentelemetry-client.0.90-e70d48a1952a7edcae52bb270d471ba97379795b"
2026-04-02 19:45.06: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:8dddfdd4781bab65e9592eaed33eb1863796fc1b447d09036bc9f7f20a9d4a89)
(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-client.0.90 0.90"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opentelemetry-client.0.90;\
\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-tumbleweed\\\"\"; 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-client.0.90' && 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-client.0.90) || true"))
(run (shell "opam reinstall --with-test --verbose opentelemetry-client.0.90;\
\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-tumbleweed\\\"\"; 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-client.0.90' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-02 19:45.06: Waiting for resource in pool OCluster
2026-04-02 19:49.26: Waiting for worker…
2026-04-02 19:52.16: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files: 69% (12863/18600)
Updating files: 70% (13020/18600)
Updating files: 71% (13206/18600)
Updating files: 72% (13392/18600)
Updating files: 73% (13578/18600)
Updating files: 74% (13764/18600)
Updating files: 75% (13950/18600)
Updating files: 76% (14136/18600)
Updating files: 77% (14322/18600)
Updating files: 78% (14508/18600)
Updating files: 79% (14694/18600)
Updating files: 80% (14880/18600)
Updating files: 81% (15066/18600)
Updating files: 82% (15252/18600)
Updating files: 83% (15438/18600)
Updating files: 84% (15624/18600)
Updating files: 85% (15810/18600)
Updating files: 86% (15996/18600)
Updating files: 87% (16182/18600)
Updating files: 88% (16368/18600)
Updating files: 89% (16554/18600)
Updating files: 90% (16740/18600)
Updating files: 91% (16926/18600)
Updating files: 92% (17112/18600)
Updating files: 93% (17298/18600)
Updating files: 94% (17484/18600)
Updating files: 95% (17670/18600)
Updating files: 96% (17856/18600)
Updating files: 97% (18042/18600)
Updating files: 98% (18228/18600)
Updating files: 99% (18414/18600)
Updating files: 100% (18600/18600)
Updating files: 100% (18600/18600), done.
HEAD is now at c0deda526f Merge pull request #29625 from xvw/release-lunar-v1.0.0
Updating c0deda526f..e70d48a195
Fast-forward
.../opentelemetry-client-cohttp-eio.0.90/opam | 48 ++++++++++++++++++++
.../opentelemetry-client-cohttp-lwt.0.90/opam | 48 ++++++++++++++++++++
.../opentelemetry-client-ocurl-lwt.0.90/opam | 48 ++++++++++++++++++++
.../opentelemetry-client-ocurl.0.90/opam | 45 +++++++++++++++++++
.../opentelemetry-client.0.90/opam | 39 +++++++++++++++++
.../opentelemetry-cohttp-lwt.0.90/opam | 43 ++++++++++++++++++
.../opentelemetry-logs.0.90/opam | 43 ++++++++++++++++++
.../opentelemetry-lwt/opentelemetry-lwt.0.90/opam | 43 ++++++++++++++++++
packages/opentelemetry/opentelemetry.0.90/opam | 51 ++++++++++++++++++++++
9 files changed, 408 insertions(+)
create mode 100644 packages/opentelemetry-client-cohttp-eio/opentelemetry-client-cohttp-eio.0.90/opam
create mode 100644 packages/opentelemetry-client-cohttp-lwt/opentelemetry-client-cohttp-lwt.0.90/opam
create mode 100644 packages/opentelemetry-client-ocurl-lwt/opentelemetry-client-ocurl-lwt.0.90/opam
create mode 100644 packages/opentelemetry-client-ocurl/opentelemetry-client-ocurl.0.90/opam
create mode 100644 packages/opentelemetry-client/opentelemetry-client.0.90/opam
create mode 100644 packages/opentelemetry-cohttp-lwt/opentelemetry-cohttp-lwt.0.90/opam
create mode 100644 packages/opentelemetry-logs/opentelemetry-logs.0.90/opam
create mode 100644 packages/opentelemetry-lwt/opentelemetry-lwt.0.90/opam
create mode 100644 packages/opentelemetry/opentelemetry.0.90/opam
(from ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:8dddfdd4781bab65e9592eaed33eb1863796fc1b447d09036bc9f7f20a9d4a89)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:8dddfdd4781bab65e9592eaed33eb1863796fc1b447d09036bc9f7f20a9d4a89' locally
docker.io/ocaml/opam@sha256:8dddfdd4781bab65e9592eaed33eb1863796fc1b447d09036bc9f7f20a9d4a89: Pulling from ocaml/opam
dfa58f4d72cf: Pulling fs layer
f94eeb7e12be: Pulling fs layer
c642bd9ccfbf: Pulling fs layer
dc1006758a12: Pulling fs layer
deda37aecea5: Pulling fs layer
ed772b3456a3: Pulling fs layer
6f443926bec9: Pulling fs layer
b8b368fa1887: Pulling fs layer
a5ec3b357eea: Pulling fs layer
9cfecfc87439: Pulling fs layer
dc1006758a12: Waiting
deda37aecea5: Waiting
ed772b3456a3: Waiting
a62cc9da4d44: Pulling fs layer
9501d81e93d6: Pulling fs layer
8fd4dd2f047b: Pulling fs layer
b8b368fa1887: Waiting
f58ae6911ceb: Pulling fs layer
6f443926bec9: Waiting
a5ec3b357eea: Waiting
9cf14ae3463c: Pulling fs layer
9cfecfc87439: Waiting
8fd4dd2f047b: Waiting
a62cc9da4d44: Waiting
07a6850acfd3: Pulling fs layer
9501d81e93d6: Waiting
f58ae6911ceb: Waiting
9cf14ae3463c: Waiting
57c9d76921fb: Pulling fs layer
07a6850acfd3: Waiting
f2aab684bf47: Pulling fs layer
57c9d76921fb: Waiting
f2aab684bf47: Waiting
4f4fb700ef54: Pulling fs layer
e739222b0b16: Pulling fs layer
4f4fb700ef54: Waiting
ad5af65cbe3b: Pulling fs layer
e739222b0b16: Waiting
c09bc9f04c30: Pulling fs layer
97a41c2d1686: Pulling fs layer
ad5af65cbe3b: Waiting
c09bc9f04c30: Waiting
d68abda7c623: Pulling fs layer
b4caa53f33db: Pulling fs layer
97a41c2d1686: Waiting
d68abda7c623: Waiting
226e2ff8bdf4: Pulling fs layer
b4caa53f33db: Waiting
1e86189b37aa: Pulling fs layer
01c838a862af: Pulling fs layer
226e2ff8bdf4: Waiting
733441a7aaf0: Pulling fs layer
bf14ba7ee05b: Pulling fs layer
01c838a862af: Waiting
a80a648568cf: Pulling fs layer
bf14ba7ee05b: Waiting
733441a7aaf0: Waiting
e62408b178ab: Pulling fs layer
a80a648568cf: Waiting
c6d346a5237d: Pulling fs layer
e62408b178ab: Waiting
a952911c0297: Pulling fs layer
c6d346a5237d: Waiting
e52f058df488: Pulling fs layer
a952911c0297: Waiting
cdd17d1708eb: Pulling fs layer
e52f058df488: Waiting
e824dc516a37: Pulling fs layer
cdd17d1708eb: Waiting
55b9af191922: Pulling fs layer
e824dc516a37: Waiting
0c9f6dd7dc3b: Pulling fs layer
55b9af191922: Waiting
a00b64d28294: Pulling fs layer
0c9f6dd7dc3b: Waiting
c39ba5ed9489: Pulling fs layer
a00b64d28294: Waiting
da11c75adc48: Pulling fs layer
c39ba5ed9489: Waiting
a835a24cd7ba: Pulling fs layer
da11c75adc48: Waiting
295c9b314bb3: Pulling fs layer
a835a24cd7ba: Waiting
295c9b314bb3: Waiting
f94eeb7e12be: Verifying Checksum
f94eeb7e12be: Download complete
dfa58f4d72cf: Download complete
deda37aecea5: Download complete
c642bd9ccfbf: Verifying Checksum
c642bd9ccfbf: Download complete
ed772b3456a3: Verifying Checksum
ed772b3456a3: Download complete
6f443926bec9: Verifying Checksum
6f443926bec9: Download complete
b8b368fa1887: Verifying Checksum
b8b368fa1887: Download complete
9cfecfc87439: Verifying Checksum
9cfecfc87439: Download complete
a5ec3b357eea: Verifying Checksum
a5ec3b357eea: Download complete
a62cc9da4d44: Verifying Checksum
a62cc9da4d44: Download complete
9501d81e93d6: Verifying Checksum
9501d81e93d6: Download complete
8fd4dd2f047b: Verifying Checksum
8fd4dd2f047b: Download complete
dc1006758a12: Verifying Checksum
dc1006758a12: Download complete
9cf14ae3463c: Verifying Checksum
9cf14ae3463c: Download complete
f58ae6911ceb: Verifying Checksum
f58ae6911ceb: Download complete
07a6850acfd3: Verifying Checksum
07a6850acfd3: Download complete
dfa58f4d72cf: Pull complete
f94eeb7e12be: Pull complete
57c9d76921fb: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
f2aab684bf47: Verifying Checksum
f2aab684bf47: Download complete
c09bc9f04c30: Verifying Checksum
c09bc9f04c30: Download complete
e739222b0b16: Verifying Checksum
e739222b0b16: Download complete
ad5af65cbe3b: Verifying Checksum
ad5af65cbe3b: Download complete
d68abda7c623: Verifying Checksum
d68abda7c623: Download complete
97a41c2d1686: Verifying Checksum
97a41c2d1686: Download complete
b4caa53f33db: Verifying Checksum
b4caa53f33db: Download complete
01c838a862af: Verifying Checksum
01c838a862af: Download complete
1e86189b37aa: Verifying Checksum
1e86189b37aa: Download complete
226e2ff8bdf4: Verifying Checksum
226e2ff8bdf4: Download complete
733441a7aaf0: Download complete
bf14ba7ee05b: Verifying Checksum
bf14ba7ee05b: Download complete
a80a648568cf: Verifying Checksum
a80a648568cf: Download complete
c642bd9ccfbf: Pull complete
c6d346a5237d: Verifying Checksum
c6d346a5237d: Download complete
e52f058df488: Verifying Checksum
e52f058df488: Download complete
cdd17d1708eb: Download complete
e824dc516a37: Download complete
55b9af191922: Download complete
a952911c0297: Verifying Checksum
a952911c0297: Download complete
0c9f6dd7dc3b: Verifying Checksum
0c9f6dd7dc3b: Download complete
a00b64d28294: Verifying Checksum
a00b64d28294: Download complete
da11c75adc48: Verifying Checksum
da11c75adc48: Download complete
a835a24cd7ba: Download complete
295c9b314bb3: Verifying Checksum
295c9b314bb3: Download complete
dc1006758a12: Pull complete
deda37aecea5: Pull complete
ed772b3456a3: Pull complete
6f443926bec9: Pull complete
b8b368fa1887: Pull complete
a5ec3b357eea: Pull complete
9cfecfc87439: Pull complete
a62cc9da4d44: Pull complete
9501d81e93d6: Pull complete
8fd4dd2f047b: Pull complete
f58ae6911ceb: Pull complete
9cf14ae3463c: Pull complete
07a6850acfd3: Pull complete
57c9d76921fb: Pull complete
f2aab684bf47: Pull complete
4f4fb700ef54: Pull complete
e739222b0b16: Pull complete
ad5af65cbe3b: Pull complete
c09bc9f04c30: Pull complete
97a41c2d1686: Pull complete
d68abda7c623: Pull complete
b4caa53f33db: Pull complete
226e2ff8bdf4: Pull complete
1e86189b37aa: Pull complete
01c838a862af: Pull complete
733441a7aaf0: Pull complete
bf14ba7ee05b: Pull complete
a80a648568cf: Pull complete
c39ba5ed9489: Verifying Checksum
c39ba5ed9489: Download complete
e62408b178ab: Verifying Checksum
e62408b178ab: Download complete
e62408b178ab: Pull complete
c6d346a5237d: Pull complete
a952911c0297: Pull complete
e52f058df488: Pull complete
cdd17d1708eb: Pull complete
e824dc516a37: Pull complete
55b9af191922: Pull complete
0c9f6dd7dc3b: Pull complete
a00b64d28294: Pull complete
c39ba5ed9489: Pull complete
da11c75adc48: Pull complete
a835a24cd7ba: Pull complete
295c9b314bb3: Pull complete
Digest: sha256:8dddfdd4781bab65e9592eaed33eb1863796fc1b447d09036bc9f7f20a9d4a89
Status: Downloaded newer image for ocaml/opam@sha256:8dddfdd4781bab65e9592eaed33eb1863796fc1b447d09036bc9f7f20a9d4a89
2026-04-02 19:52.28 ---> using "9cb41d412bf1f3002d20ce68486fed5d0e0285f44a70b9f66fc9841263b2d8c6" 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-04-02 19:52.28 ---> using "b9ef89601a114b87aa6887411def49916f5c711ded2eebcfd50c52a54672bcda" 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 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-02 19:52.28 ---> using "862c3f08720bc249b8bb14c72089b2908e2adca1b87200c86c69e0b0a3401159" 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=opensuse-tumbleweed os-version=20260326
# 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-04-02 19:52.28 ---> using "cc7445ab73de038d7dd93d1e5e4c39ce31a8303e709a38d937b58782e44334a9" 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-04-02 19:52.28 ---> using "4330e807c259719c4e61e2aa1b25752bfdd6784bebdcc9301cfb85d81cd9d23b" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-02 19:52.30 ---> using "94fcc000487248c092f4faa84b5a13ae90c9d5f930ff182a414be574678d6f79" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-02 19:52.30 ---> using "4b61c61e00bed765cd8f29d363d60926d963561634fbc36eb40fe987e9220b7d" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [...
-
- Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss.
- gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key
- .......done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [...
-
- Looking for gpg keys in repository openSUSE-Tumbleweed-Oss.
- gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key
- ..........
- ..........
- ..........
- ...........done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- All repositories have been refreshed.
2026-04-02 19:52.30 ---> using "9242ba5d34b8325865cb01e97caa68863f725a0b207e6d36d69942d03be8aa28" from cache
/home/opam: (run (shell "opam pin add -k version -yn opentelemetry-client.0.90 0.90"))
opentelemetry-client is now pinned to version 0.90
2026-04-02 19:52.30 ---> using "728b645cbb5a70414141caa42e189c171331c3c829d209a4ffcfb1647e7972ab" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opentelemetry-client.0.90;\
\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-tumbleweed\\\"\"; 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-client.0.90' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
opentelemetry-client.0.90 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
- install ambient-context 0.2 [required by opentelemetry]
- install base64 3.5.2 [required by pbrt_yojson]
- install dune 3.22.0 [required by opentelemetry-client]
- install hmap 0.8.1 [required by opentelemetry]
- install mtime 2.1.0 [required by opentelemetry]
- install ocamlbuild 0.16.1 [required by mtime, ptime]
- install ocamlfind 1.9.8 [required by mtime, ptime]
- install opentelemetry 0.90 [required by opentelemetry-client]
- install opentelemetry-client 0.90 (pinned)
- install pbrt 4.1 [required by opentelemetry]
- install pbrt_yojson 4.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-client]
- install topkg 1.1.1 [required by mtime, ptime]
- install yojson 3.0.0 [required by pbrt_yojson]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ambient-context.0.2 (cached)
-> retrieved base64.3.5.2 (cached)
-> retrieved dune.3.22.0 (cached)
-> retrieved hmap.0.8.1 (cached)
-> retrieved mtime.2.1.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved opentelemetry.0.90, opentelemetry-client.0.90 (cached)
-> retrieved pbrt.4.1, pbrt_yojson.4.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)
-> retrieved yojson.3.0.0 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed dune.3.22.0
-> installed stdlib-shims.0.3.0
-> installed base64.3.5.2
-> installed thread-local-storage.0.2
-> installed pbrt.4.1
-> installed ambient-context.0.2
-> installed yojson.3.0.0
-> installed pbrt_yojson.4.1
-> installed opentelemetry.0.90
-> installed opentelemetry-client.0.90
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 19:53.21 ---> saved as "45838a735be812a2812d2fad48e0ce80889e6dfca73eac2996481d826417caa7"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test opentelemetry-client.0.90) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile opentelemetry-client 0.90 (pinned)
=== install 7 packages
- install alcotest 1.9.1 [required by opentelemetry-client]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.14.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed astring.0.8.5
-> installed re.1.14.0
-> removed opentelemetry-client.0.90
-> installed cmdliner.2.1.0
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
-> installed opentelemetry-client.0.90
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 19:53.42 ---> saved as "8f5c0926b0ad6398cb7798fd7f294324dab29a232f4f24a1710134dbd62021ab"
/home/opam: (run (shell "opam reinstall --with-test --verbose opentelemetry-client.0.90;\
\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-tumbleweed\\\"\"; 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-client.0.90' && 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-client 0.90 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [opentelemetry-client: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opentelemetry-client" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/opentelemetry-client.0.90)
-> compiled opentelemetry-client.0.90
-> removed opentelemetry-client.0.90
-> installed opentelemetry-client.0.90
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-02 19:53.47 ---> saved as "8c31466a097191c3d5e77376047239607efa12f0a3ee2d2dc021c2e38011533d"
Job succeeded
2026-04-02 19:54.01: Job succeeded