- github
- ocaml
- opam-repository
- 893c17
- distributions,debian-testing-ocaml-5.4,opentelemetry.0.13
(not at the head of any monitored branch or PR)
2026-03-06 15:46.05: New job: build opentelemetry.0.13, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29501/head (893c1784a20aa699d0ef00d2df9fe0e8c997c853)
on debian-testing-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 893c1784
git fetch origin master
git merge --no-edit 31db989bcaf14647d9889b8903120d6202ac37a8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-testing-ocaml-5.4@sha256:21581a8189e7e47a21bf59bfd7c53c7f26a94468e79d2e2a599b61ce8b33dd90
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.0.13 0.13
RUN opam reinstall opentelemetry.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 "\"debian-testing\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'opentelemetry.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-06 15:46.05: Using cache hint "ocaml/opam:debian-testing-ocaml-5.4@sha256:21581a8189e7e47a21bf59bfd7c53c7f26a94468e79d2e2a599b61ce8b33dd90-opentelemetry.0.13-893c1784a20aa699d0ef00d2df9fe0e8c997c853"
2026-03-06 15:46.05: Using OBuilder spec:
((from ocaml/opam:debian-testing-ocaml-5.4@sha256:21581a8189e7e47a21bf59bfd7c53c7f26a94468e79d2e2a599b61ce8b33dd90)
(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.0.13 0.13"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opentelemetry.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 \"\\\"debian-testing\\\"\"; 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.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-06 15:46.05: Waiting for resource in pool OCluster
2026-03-06 15:46.15: Waiting for worker…
2026-03-06 15:48.21: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 31db989bca Merge pull request #29510 from kit-ty-kate/lwt-ocaml5
Updating 31db989bca..893c1784a2
Fast-forward
.../opentelemetry-client-cohttp-eio.0.13/opam | 54 ++++++++++++++++++++
.../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, 353 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:debian-testing-ocaml-5.4@sha256:21581a8189e7e47a21bf59bfd7c53c7f26a94468e79d2e2a599b61ce8b33dd90)
Unable to find image 'ocaml/opam:debian-testing-ocaml-5.4@sha256:21581a8189e7e47a21bf59bfd7c53c7f26a94468e79d2e2a599b61ce8b33dd90' locally
docker.io/ocaml/opam@sha256:21581a8189e7e47a21bf59bfd7c53c7f26a94468e79d2e2a599b61ce8b33dd90: Pulling from ocaml/opam
e78b302b322b: Pulling fs layer
76f0da389aa6: Pulling fs layer
66665062d66a: Pulling fs layer
2f024bdd9d42: Pulling fs layer
cbbea2b96215: Pulling fs layer
e78b302b322b: Waiting
8a89c5c91cd0: Pulling fs layer
66665062d66a: Waiting
f82bbf211cfc: Pulling fs layer
2f024bdd9d42: Waiting
76f0da389aa6: Waiting
7a177b0c529a: Pulling fs layer
cbbea2b96215: Waiting
f82bbf211cfc: Waiting
7a177b0c529a: Waiting
76f0da389aa6: Verifying Checksum
76f0da389aa6: Download complete
66665062d66a: Download complete
2f024bdd9d42: Verifying Checksum
2f024bdd9d42: Download complete
cbbea2b96215: Verifying Checksum
cbbea2b96215: Download complete
8a89c5c91cd0: Verifying Checksum
8a89c5c91cd0: Download complete
f82bbf211cfc: Verifying Checksum
f82bbf211cfc: Download complete
7a177b0c529a: Verifying Checksum
7a177b0c529a: Download complete
e78b302b322b: Verifying Checksum
e78b302b322b: Download complete
e78b302b322b: Pull complete
76f0da389aa6: Pull complete
66665062d66a: Pull complete
2f024bdd9d42: Pull complete
cbbea2b96215: Pull complete
8a89c5c91cd0: Pull complete
f82bbf211cfc: Pull complete
7a177b0c529a: Pull complete
Digest: sha256:21581a8189e7e47a21bf59bfd7c53c7f26a94468e79d2e2a599b61ce8b33dd90
Status: Downloaded newer image for ocaml/opam@sha256:21581a8189e7e47a21bf59bfd7c53c7f26a94468e79d2e2a599b61ce8b33dd90
2026-03-06 15:51.58 ---> saved as "b20b2077c285a816a488fe14f12738d48f48796676c6c4058fceb21cec84ce29"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-06 15:51.59 ---> saved as "f9865ad8ed9996c3d4e51839ebb70238b16a23cc23d91c00f2b994b4e230a7ef"
/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-06 15:52.23 ---> saved as "90dddd89b06ef402b126040adad84c44ad3a390cfbe8b5a74889c79d112a976a"
/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=debian os-version=unknown
# 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-06 15:52.24 ---> saved as "5122af43b31179566c88d36a4692cc89a3634b7af4e64766125354c5800c97e5"
/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-06 15:52.43 ---> saved as "543d823b38ea219c23e039ed1fed96e4860a0b2c953d8039f1826412d8a9c3d6"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-06 15:53.11 ---> saved as "2371c771288d29fcf86b50c082d7544722d865c817979939deeb098e96f49410"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-06 15:53.37 ---> saved as "5d0fb5c6e3220edc43047e17f13fd08e9b73f480dae2a805e998fd4e0bacbd25"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian testing InRelease [137 kB]
- Get:2 http://deb.debian.org/debian testing-updates InRelease [40.6 kB]
- Get:3 http://deb.debian.org/debian-security testing-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Err:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index
- Couldn't find the start of the patch series
- Get:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index [63.6 kB]
- Ign:4 http://deb.debian.org/debian testing/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian testing/main amd64 Packages [9600 kB]
- Fetched 9885 kB in 1s (7828 kB/s)
- Reading package lists...
-
2026-03-06 15:53.39 ---> saved as "9f0a7942e8faf62818c08cba87ad1c67a580d3bf51511277e880cae872623a4b"
/home/opam: (run (shell "opam pin add -k version -yn opentelemetry.0.13 0.13"))
opentelemetry is now pinned to version 0.13
2026-03-06 15:53.40 ---> saved as "2f54d0b6d06053c823a51b8482ee8a9cec4dbb514b83b13328f9a825eb7aa0ce"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall opentelemetry.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 \"\\\"debian-testing\\\"\"; 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.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.0.13 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 13 packages
- install ambient-context 0.2 [required by opentelemetry]
- install atomic base [required by opentelemetry]
- install dune 3.21.1 [required by opentelemetry]
- 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.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 mtime, ptime]
<><> 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 mtime.2.1.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved opentelemetry.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 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
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-06 15:54.14 ---> saved as "f9d2be1c83d4732f21981ea5626b5c973bc85247712687d19c412bf373ec0b2d"
Job succeeded
2026-03-06 15:54.27: Job succeeded