Build:
  1. 0
2025-12-11 04:26.38: New job: test spotify-web-api.0.2.1, using opam 2.1
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29055/head (14ee109db3ae9c9e16a17e8c754f90715d88e4fc)
                              on debian-13-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/29055/head" && git reset --hard 14ee109d
git fetch origin master
git merge --no-edit 810e1f14b7fa6411c66a3549f4c2aff47c52fc36
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /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 spotify-web-api.0.2.1 0.2.1
RUN opam reinstall spotify-web-api.0.2.1; \
    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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'spotify-web-api.0.2.1' && 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 spotify-web-api.0.2.1) || true
RUN opam reinstall --with-test --verbose spotify-web-api.0.2.1; \
    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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'spotify-web-api.0.2.1' && 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 .

2025-12-11 04:26.38: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-spotify-web-api.0.2.1-14ee109db3ae9c9e16a17e8c754f90715d88e4fc"
2025-12-11 04:26.38: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.1 /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 spotify-web-api.0.2.1 0.2.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall spotify-web-api.0.2.1;\
             \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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'spotify-web-api.0.2.1' && 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 spotify-web-api.0.2.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose spotify-web-api.0.2.1;\
             \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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'spotify-web-api.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-11 04:26.38: Waiting for resource in pool OCluster
2025-12-11 19:31.34: Waiting for worker…
2025-12-11 19:36.51: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  95% (18135/19010)
Updating files:  96% (18250/19010)
Updating files:  97% (18440/19010)
Updating files:  98% (18630/19010)
Updating files:  99% (18820/19010)
Updating files: 100% (19010/19010)
Updating files: 100% (19010/19010), done.
HEAD is now at 810e1f14b7 Merge pull request #29066 from gares/release-elpi-v3.4.4
Merge made by the 'ort' strategy.
 packages/atd/atd.3.0.1/opam                        | 124 ++++++++++++++++++++
 packages/atdcpp/atdcpp.3.0.1/opam                  | 116 ++++++++++++++++++
 packages/atdd/atdd.3.0.1/opam                      | 116 ++++++++++++++++++
 .../atdgen-codec-runtime.3.0.1/opam                | 115 ++++++++++++++++++
 packages/atdgen-runtime/atdgen-runtime.3.0.1/opam  | 117 +++++++++++++++++++
 packages/atdgen/atdgen.2.14.0/opam                 |   2 +-
 packages/atdgen/atdgen.2.14.1/opam                 |   2 +-
 packages/atdgen/atdgen.2.15.0/opam                 |   2 +-
 packages/atdgen/atdgen.2.16.0/opam                 |   2 +-
 packages/atdgen/atdgen.3.0.1/opam                  | 130 +++++++++++++++++++++
 packages/atdj/atdj.3.0.1/opam                      | 129 ++++++++++++++++++++
 packages/atdpy/atdpy.3.0.1/opam                    | 118 +++++++++++++++++++
 packages/atds/atds.3.0.1/opam                      | 114 ++++++++++++++++++
 packages/atdts/atdts.3.0.1/opam                    | 117 +++++++++++++++++++
 packages/sarif/sarif.0.1.0/opam                    |   2 +-
 .../spotify-web-api/spotify-web-api.0.2.1/opam     |   2 +-
 packages/uritemplate/uritemplate.0.1.0/opam        |   2 +-
 packages/uritemplate/uritemplate.0.2.0/opam        |   2 +-
 18 files changed, 1204 insertions(+), 8 deletions(-)
 create mode 100644 packages/atd/atd.3.0.1/opam
 create mode 100644 packages/atdcpp/atdcpp.3.0.1/opam
 create mode 100644 packages/atdd/atdd.3.0.1/opam
 create mode 100644 packages/atdgen-codec-runtime/atdgen-codec-runtime.3.0.1/opam
 create mode 100644 packages/atdgen-runtime/atdgen-runtime.3.0.1/opam
 create mode 100644 packages/atdgen/atdgen.3.0.1/opam
 create mode 100644 packages/atdj/atdj.3.0.1/opam
 create mode 100644 packages/atdpy/atdpy.3.0.1/opam
 create mode 100644 packages/atds/atds.3.0.1/opam
 create mode 100644 packages/atdts/atdts.3.0.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
2025-12-11 19:37.01 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2025-12-11 19:37.01 ---> using "7ff13938240a08408a26030c66f2b428414ae976242aba17a99b7672ea8494f3" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.1, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-11 19:38.14 ---> saved as "8e6b612cd3acb921cf2d3a5186c75183ee9371be16789b0e85a99bd1e23091f7"

/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.1.6 (263921263e1f745613e2882745114b7b08f3608b) 
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     
# upgrade-criteria     
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# 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
2025-12-11 19:38.17 ---> saved as "5c4cd168bd75aad870f6576ff729cdc915cc1eccd0ec6d372463937384d7b05f"

/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/"))
2025-12-11 19:38.30 ---> saved as "ae5a32f7810d6f111a01883b8b42a09ffd3225d9680f9acec1fdaf83d5160556"

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-11 19:38.46 ---> saved as "4623f7ff4ca24eeedfcd4ccbeb07b0bb54a0c0d5b7eec04bb909875edf20fa9d"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-11 19:38.59 ---> saved as "8d7d07b2cecce244d4d701a3ef37df2fb078838f340a1576d8126800248f7374"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [82.1 kB]
- Fetched 173 kB in 0s (1440 kB/s)
- Reading package lists...
- 
2025-12-11 19:39.01 ---> saved as "d563893e583d0dfedc8f129c3a5f26fa112c4c81042cf0b73964735a515be3d9"

/home/opam: (run (shell "opam pin add -k version -yn spotify-web-api.0.2.1 0.2.1"))
spotify-web-api is now pinned to version 0.2.1
2025-12-11 19:39.03 ---> saved as "231f5f69ee7785c04466934d8ddd9068e84caa6cc7541b957d4a5ad48e6265ec"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall spotify-web-api.0.2.1;\
                        \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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'spotify-web-api.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
spotify-web-api.0.2.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install seq                     base          [required by yojson]
  - install conf-gmp                5             [required by conf-gmp-powm-sec, zarith]
  - install ocamlfind               1.9.8         [required by logs]
  - install dune                    3.20.2        [required by spotify-web-api]
  - install ocamlbuild              0.16.1        [required by logs]
  - install cmdliner                1.3.0         [required by cohttp-lwt-unix]
  - install conf-pkg-config         4             [required by conf-libssl]
  - install conf-gmp-powm-sec       4             [required by mirage-crypto-pk]
  - install base-bytes              base          [required by cohttp]
  - install yojson                  2.2.2         [required by spotify-web-api]
  - install stringext               1.6.0         [required by cohttp]
  - install stdlib-shims            0.3.0         [required by ppxlib]
  - install sexplib0                v0.17.0       [required by cohttp-lwt, conduit-lwt]
  - install re                      1.14.0        [required by atdgen]
  - install ppx_derivers            1.2.1         [required by ppxlib]
  - install ohex                    0.2.0         [required by ca-certs]
  - install ocaml-syntax-shims      1.0.0         [required by angstrom]
  - install ocaml-compiler-libs     v0.17.0       [required by ppxlib]
  - install ocaml_intrinsics_kernel v0.17.1       [required by base]
  - install menhirSdk               20250912      [required by menhir]
  - install menhirLib               20250912      [required by menhir]
  - install menhirCST               20250912      [required by menhir]
  - install magic-mime              1.3.1         [required by cohttp-lwt-unix]
  - install macaddr                 5.6.1         [required by ipaddr]
  - install gmap                    0.3.0         [required by x509]
  - install eqaf                    0.10          [required by digestif, mirage-crypto]
  - install easy-format             1.3.4         [required by atd]
  - install duration                0.2.1         [required by mirage-crypto-rng]
  - install domain-name             0.5.0         [required by ipaddr, x509]
  - install csexp                   1.5.2         [required by dune-configurator]
  - install cppo                    1.8.0         [required by lwt]
  - install camlp-streams           5.0.1         [required by biniou]
  - install base64                  3.5.2         [required by cohttp]
  - install topkg                   1.1.1         [required by logs]
  - install zarith                  1.14          [required by mirage-crypto-pk]
  - install conf-libssl             4             [required by ssl]
  - install ppxlib                  0.37.0        [required by ppx_sexp_conv]
  - install menhir                  20250912      [required by atd]
  - install digestif                1.3.0         [required by ca-certs]
  - install ipaddr                  5.6.1         [required by conduit-lwt-unix]
  - install dune-configurator       3.20.2        [required by ssl]
  - install ocplib-endian           1.2           [required by lwt]
  - install biniou                  1.2.2         [required by spotify-web-api]
  - install uutf                    1.0.4         [required by jsonm]
  - install rresult                 0.7.0         [required by bos]
  - install ptime                   1.2.0         [required by ca-certs]
  - install fmt                     0.11.0        [required by cohttp-lwt-unix]
  - install astring                 0.8.5         [required by conduit]
  - install ppxlib_jane             v0.17.4       [required by ppx_sexp_conv]
  - install atd                     2.16.0        [required by atdgen]
  - install ssl                     0.7.0         [required by spotify-web-api]
  - install mirage-crypto           2.0.2         [required by ca-certs]
  - install bigstringaf             0.10.0        [required by angstrom]
  - install base                    v0.17.3       [required by ppx_sexp_conv]
  - install lwt                     6.0.0~alpha00 [required by cohttp-lwt-unix]
  - install atdgen-runtime          2.16.0        [required by atdgen]
  - install jsonm                   1.0.2         [required by cohttp]
  - install asn1-combinators        0.3.2         [required by x509]
  - install fpath                   0.7.3         [required by ca-certs]
  - install kdf                     1.0.0         [required by x509]
  - install angstrom                0.16.1        [required by uri]
  - install ppx_sexp_conv           v0.17.1       [required by cohttp-lwt-unix]
  - install logs                    0.10.0        [required by cohttp-lwt-unix]
  - install atdgen                  2.15.0        [required by spotify-web-api]
  - install uri                     4.4.0         [required by spotify-web-api]
  - install ipaddr-sexp             5.6.1         [required by conduit-lwt-unix]
  - install mirage-crypto-rng       2.0.2         [required by x509]
  - install bos                     0.2.1         [required by ca-certs]
  - install uri-sexp                4.4.0         [required by cohttp]
  - install conduit                 8.0.0         [required by conduit-lwt]
  - install mirage-crypto-pk        2.0.2         [required by x509]
  - install mirage-crypto-ec        2.0.2         [required by x509]
  - install cohttp                  5.3.1         [required by cohttp-lwt]
  - install conduit-lwt             8.0.0         [required by cohttp-lwt-unix]
  - install x509                    1.0.6         [required by ca-certs]
  - install cohttp-lwt              5.3.0         [required by cohttp-lwt-unix]
  - install ca-certs                1.0.1         [required by conduit-lwt-unix]
  - install conduit-lwt-unix        8.0.0         [required by cohttp-lwt-unix]
  - install cohttp-lwt-unix         5.3.0         [required by spotify-web-api]
  - install spotify-web-api         0.2.1*
===== 80 to install =====

The following system packages will first need to be installed:
    libgmp-dev libssl-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
Let opam run your package manager to install the required system packages?
(answer 'n' for other options) [Y/n] y
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "libssl-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20653 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../3-libssl-dev_3.5.4-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../4-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../5-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../6-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved atd.2.16.0  (cached)
-> retrieved atdgen.2.15.0  (cached)
-> retrieved atdgen-runtime.2.16.0  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cohttp.5.3.1  (cached)
-> retrieved cohttp-lwt.5.3.0  (cached)
-> retrieved cohttp-lwt-unix.5.3.0  (cached)
-> retrieved conduit.8.0.0  (cached)
-> retrieved conduit-lwt.8.0.0  (cached)
-> retrieved conduit-lwt-unix.8.0.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved conf-libssl.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-libssl.4
-> retrieved digestif.1.3.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.20.2  (cached)
-> retrieved dune-configurator.3.20.2  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> installed cmdliner.1.3.0
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved ipaddr.5.6.1  (cached)
-> retrieved ipaddr-sexp.5.6.1  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.0.0~alpha00  (cached)
-> retrieved macaddr.5.6.1  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved menhir.20250912  (cached)
-> retrieved menhirCST.20250912  (cached)
-> retrieved menhirLib.20250912  (cached)
-> retrieved menhirSdk.20250912  (cached)
-> retrieved mirage-crypto.2.0.2  (cached)
-> retrieved mirage-crypto-ec.2.0.2  (cached)
-> retrieved mirage-crypto-pk.2.0.2  (cached)
-> retrieved mirage-crypto-rng.2.0.2  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved spotify-web-api.0.2.1  (cached)
-> retrieved ssl.0.7.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved uri-sexp.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved yojson.2.2.2  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.20.2
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed camlp-streams.5.0.1
-> installed asn1-combinators.0.3.2
-> installed domain-name.0.5.0
-> installed easy-format.1.3.4
-> installed eqaf.0.10
-> installed macaddr.5.6.1
-> installed menhirCST.20250912
-> installed menhirSdk.20250912
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed menhirLib.20250912
-> installed magic-mime.1.3.1
-> installed cppo.1.8.0
-> installed re.1.14.0
-> installed ocaml-syntax-shims.1.0.0
-> installed biniou.1.2.2
-> installed ipaddr.5.6.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocplib-endian.1.2
-> installed yojson.2.2.2
-> installed digestif.1.3.0
-> installed atdgen-runtime.2.16.0
-> installed dune-configurator.3.20.2
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed ssl.0.7.0
-> installed mirage-crypto.2.0.2
-> installed kdf.1.0.0
-> installed lwt.6.0.0~alpha00
-> installed uri.4.4.0
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.0.2
-> installed mirage-crypto-pk.2.0.2
-> installed base.v0.17.3
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.2
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed menhir.20250912
-> installed atd.2.16.0
-> installed ppxlib.0.37.0
-> installed atdgen.2.15.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_sexp_conv.v0.17.1
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed conduit.8.0.0
-> installed cohttp.5.3.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.5.3.0
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.5.3.0
-> installed spotify-web-api.0.2.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-11 19:41.08 ---> saved as "b1b8ae108f175a44fdb5921cebd62b0e4c98a5fcb85aa7a8c7b0700dff04ceb2"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test spotify-web-api.0.2.1) || true"))
The following actions will be performed:
  - install   ounit2          2.2.7  [required by ounit]
  - install   ounit           2.2.7  [required by spotify-web-api]
  - recompile spotify-web-api 0.2.1*
===== 2 to install | 1 to recompile =====

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ounit.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (cached)
-> retrieved spotify-web-api.0.2.1  (https://opam.ocaml.org/cache)
-> removed   spotify-web-api.0.2.1
-> installed ounit2.2.2.7
-> installed ounit.2.2.7
-> installed spotify-web-api.0.2.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-11 19:41.28 ---> saved as "a45cb4937a633af63e57f942efc097a88832fbda1dbc6fa652b55c79c8b90109"

/home/opam: (run (shell  "opam reinstall --with-test --verbose spotify-web-api.0.2.1;\
                        \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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'spotify-web-api.0.2.1' && 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 spotify-web-api 0.2.1*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4:
-> retrieved spotify-web-api.0.2.1  (cached)
Processing  2/4: [spotify-web-api: make build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "build" (CWD=/home/opam/.opam/5.4/.opam-switch/build/spotify-web-api.0.2.1)
- atdgen -j lib/album.atd
- atdgen -j lib/artist.atd
- atdgen -j lib/external_ids.atd
- atdgen -j lib/external_urls.atd
- atdgen -j lib/followers.atd
- atdgen -j lib/image.atd
- atdgen -j lib/paging.atd
- atdgen -j lib/track.atd
- atdgen -t lib/album.atd
- atdgen -t lib/artist.atd
- atdgen -t lib/external_ids.atd
- atdgen -t lib/external_urls.atd
- atdgen -t lib/followers.atd
- atdgen -t lib/image.atd
- atdgen -t lib/paging.atd
- atdgen -t lib/track.atd
- dune build @install
Processing  2/4: [spotify-web-api: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "spotify-web-api" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/spotify-web-api.0.2.1)
Processing  2/4: [spotify-web-api: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "spotify-web-api" (CWD=/home/opam/.opam/5.4/.opam-switch/build/spotify-web-api.0.2.1)
- (cd _build/default/test && ./test_main.exe)
- .........
- Ran: 9 tests in: 0.11 seconds.
- OK
-> compiled  spotify-web-api.0.2.1
-> removed   spotify-web-api.0.2.1
-> installed spotify-web-api.0.2.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-11 19:41.47 ---> saved as "fe514ca5c2a7d26b95031bc63d2dec0680f3589792466f5bfb7398efd68b5f18"
Job succeeded
2025-12-11 19:41.54: Job succeeded