Build:
  1. 1
  2. 0
2026-03-05 22:52.36: New job: test opentelemetry-logs.0.13, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29501/head (fee83bbe33e4b4e7608ba61bb82ca9ea3c0ad932)
                              on alpine-3.22-ocaml-4.14/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:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216
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 "\"alpine-3.22\""; 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 "\"alpine-3.22\""; 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.36: Using cache hint "ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216-opentelemetry-logs.0.13-fee83bbe33e4b4e7608ba61bb82ca9ea3c0ad932"
2026-03-05 22:52.36: Using OBuilder spec:
((from ocaml/opam:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
 (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 \"\\\"alpine-3.22\\\"\"; 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 \"\\\"alpine-3.22\\\"\"; 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.36: Waiting for resource in pool OCluster
2026-03-05 22:52.36: Waiting for worker…
2026-03-05 22:54.34: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  72% (13277/18385)
Updating files:  73% (13422/18385)
Updating files:  74% (13605/18385)
Updating files:  75% (13789/18385)
Updating files:  76% (13973/18385)
Updating files:  77% (14157/18385)
Updating files:  78% (14341/18385)
Updating files:  79% (14525/18385)
Updating files:  80% (14708/18385)
Updating files:  81% (14892/18385)
Updating files:  82% (15076/18385)
Updating files:  83% (15260/18385)
Updating files:  84% (15444/18385)
Updating files:  85% (15628/18385)
Updating files:  86% (15812/18385)
Updating files:  87% (15995/18385)
Updating files:  88% (16179/18385)
Updating files:  89% (16363/18385)
Updating files:  90% (16547/18385)
Updating files:  91% (16731/18385)
Updating files:  92% (16915/18385)
Updating files:  93% (17099/18385)
Updating files:  94% (17282/18385)
Updating files:  95% (17466/18385)
Updating files:  96% (17650/18385)
Updating files:  97% (17834/18385)
Updating files:  98% (18018/18385)
Updating files:  99% (18202/18385)
Updating files: 100% (18385/18385)
Updating files: 100% (18385/18385), done.
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:alpine-3.22-ocaml-4.14@sha256:1c3a5ef9216cc43d14bea2bc9b42f4b1ee30cd78bf2e6993672b4c0c52909216)
2026-03-05 22:54.47 ---> using "d1cef22083ba59d6db4e2f107091c68dd70ebdcc64c3894ad7db7be62ad17f4a" 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:54.47 ---> using "d2cb172e755b5e8a0ee24e133445a3ea22478f4e48886729c76cbcde08270342" 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-03-05 22:54.47 ---> using "4b7ed401555204d1f183307388cb649d473c8a52ff80ce2f5a4e8504a88269c7" 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=alpine os-version=3.22.2
# 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-05 22:54.47 ---> using "9b1883465557a61ecd00e6282d59de098d32d80cc71a923a8ed0faa5af1a02e7" 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:54.47 ---> using "be1c70f0be6391803fdc2f3adb75bd0fc31dd6c9a80328fabfc5d1e074dcb1ff" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-05 22:54.48 ---> using "63f64f0978644a0695e01bc1990e4c810d63bc6047fb39377de3d1472aa47422" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-05 22:54.48 ---> using "2e11ed62e9e5e54dc3ef8c811460a2d4040f25d6c889f1b335b8ba6ac198ce41" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
- v3.22.3-50-g6078ada4508 [https://dl-cdn.alpinelinux.org/alpine/v3.22/main]
- v3.22.3-47-gac2ede25b7c [https://dl-cdn.alpinelinux.org/alpine/v3.22/community]
- v20260127-2361-g1c07c098ac8 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20260127-2362-g5deb8383745 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20260127-2367-g0a7963458ff [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 61052 distinct packages available
2026-03-05 22:54.48 ---> using "9f297160827407b6a3472bce8507d2f2d8c7f9c0a08084fb15c00894d4a9c471" from cache

/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:54.48 ---> using "e97a016c0e106ad3ec0cd2f5f3a1c9bf4715fd42f60b6a68bfa5540a7c5e243a" from cache

/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 \"\\\"alpine-3.22\\\"\"; 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:56.04 ---> saved as "4aae939b98ba0d3f2e04e5603b975493ef9795072fa9abe96823542c58013987"

/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 63 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.16.4       [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                             5.9.2         [required by opentelemetry-client-cohttp-lwt, cohttp-lwt-unix, opentelemetry-cohttp-lwt]
  - install   lwt_ppx                         5.9.1         [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.12.4       [required by ppxlib]
  - install   ocaml-syntax-shims              1.0.0         [required by alcotest]
  - 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.16.0       [required by cohttp-lwt-unix]
  - install   ppxlib                          0.35.0        [required by lwt_ppx]
  - install   re                              1.14.0        [required by alcotest]
  - install   rresult                         0.7.0         [required by bos]
  - install   sexplib0                        v0.16.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-dev

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apk to install them (may need root/sudo access)
  2. Display the recommended apk 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 "apk" "add" "gmp-dev"
- (1/2) Installing libgmpxx (6.3.0-r3)
- (2/2) Installing gmp-dev (6.3.0-r3)
- OK: 307 MiB in 104 packages

<><> 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.16.4  (https://opam.ocaml.org/cache)
-> installed base-bytes.base
-> retrieved base64.3.5.2  (https://opam.ocaml.org/cache)
-> retrieved bigstringaf.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved bos.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved ca-certs.1.0.1  (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> installed asn1-combinators.0.3.2
-> 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 conf-pkg-config.4
-> installed conf-gmp-powm-sec.4
-> retrieved containers.3.18  (https://opam.ocaml.org/cache)
-> installed http.6.2.1
-> retrieved cppo.1.8.0  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> retrieved digestif.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved domain-name.0.5.0  (https://opam.ocaml.org/cache)
-> 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)
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed duration.0.2.1
-> retrieved eqaf.0.10  (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved gmap.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (https://opam.ocaml.org/cache)
-> installed gmap.0.3.0
-> retrieved kdf.1.0.0  (https://opam.ocaml.org/cache)
-> installed eqaf.0.10
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> installed macaddr.5.6.2
-> retrieved lwt.5.9.2  (https://opam.ocaml.org/cache)
-> retrieved lwt_ppx.5.9.1  (https://opam.ocaml.org/cache)
-> installed fpath.0.7.3
-> retrieved magic-mime.1.3.1  (https://opam.ocaml.org/cache)
-> installed ipaddr.5.6.2
-> installed fmt.0.11.0
-> installed dune-configurator.3.21.1
-> installed digestif.1.3.0
-> 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)
-> installed bigstringaf.0.10.0
-> retrieved ocaml-compiler-libs.v0.12.4  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (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 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 ocplib-endian.1.2
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.16.0  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed containers.3.18
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stringext.1.6.0  (https://opam.ocaml.org/cache)
-> installed angstrom.0.16.1
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (https://opam.ocaml.org/cache)
-> installed stringext.1.6.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed rresult.0.7.0
-> retrieved x509.1.0.6  (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14  (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.16.0
-> installed mirage-crypto.2.0.3
-> removed   opentelemetry-logs.0.13
-> removed   logs.0.10.0
-> removed   opentelemetry.0.13
-> installed re.1.14.0
-> installed kdf.1.0.0
-> installed uutf.1.0.4
-> installed lwt.5.9.2
-> installed uri.4.4.0
-> installed alcotest.1.9.1
-> installed logs.0.10.0
-> installed opentelemetry.0.13
-> installed mirage-crypto-rng.2.0.3
-> installed zarith.1.14
-> installed mirage-crypto-pk.2.0.3
-> installed bos.0.2.1
-> installed base.v0.16.4
-> installed mirage-crypto-ec.2.0.3
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed ppx_sexp_conv.v0.16.0
-> installed opentelemetry-lwt.0.13
-> 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:57.27 ---> saved as "4275067bbb76fbca7a5cd0985ada5a5f5417a3ddc83cae63b99b68166dfb5a23"

/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 \"\\\"alpine-3.22\\\"\"; 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" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.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/4.14/.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:57.39 ---> saved as "53c32bd54d7707d523e923be2d1f0bded9f95c6f556d78c4a9f013cee678e400"
Job succeeded
2026-03-05 22:57.47: Job succeeded