(not at the head of any monitored branch or PR)
2024-11-29 15:19.47: New job: test tls-liquidsoap.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/26968/head (bd114b495c51db7a6e19ce75301ed7679f652d12)
                              on debian-12-ocaml-4.13/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/26968/head" && git reset --hard bd114b49
git fetch origin master
git merge --no-edit 0b65c91e7650d82e2c12fe1f64a466d2c6954272
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.13@sha256:38525c9ed237e5f90879e3c5ae83f26ff797bfe06ca5cecd26d5991582548ef1
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
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 tls-liquidsoap.1 1
RUN opam reinstall tls-liquidsoap.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'tls-liquidsoap.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 tls-liquidsoap.1) || true
RUN opam reinstall --with-test --verbose tls-liquidsoap.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'tls-liquidsoap.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 .

2024-11-29 15:19.47: Using cache hint "ocaml/opam:debian-12-ocaml-4.13@sha256:38525c9ed237e5f90879e3c5ae83f26ff797bfe06ca5cecd26d5991582548ef1-tls-liquidsoap.1-bd114b495c51db7a6e19ce75301ed7679f652d12"
2024-11-29 15:19.47: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.13@sha256:38525c9ed237e5f90879e3c5ae83f26ff797bfe06ca5cecd26d5991582548ef1)
 (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 "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 1000)
 (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 tls-liquidsoap.1 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall tls-liquidsoap.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'tls-liquidsoap.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 tls-liquidsoap.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose tls-liquidsoap.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'tls-liquidsoap.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-11-29 15:19.47: Waiting for resource in pool OCluster
2024-11-29 15:33.45: Waiting for worker…
2024-11-29 15:36.59: Got resource from pool OCluster
Building on x86-bm-c6.sw.ocaml.org
All commits already cached
Updating files:  63% (20831/32807)
Updating files:  64% (20997/32807)
Updating files:  65% (21325/32807)
Updating files:  66% (21653/32807)
Updating files:  67% (21981/32807)
Updating files:  68% (22309/32807)
Updating files:  69% (22637/32807)
Updating files:  70% (22965/32807)
Updating files:  71% (23293/32807)
Updating files:  72% (23622/32807)
Updating files:  73% (23950/32807)
Updating files:  74% (24278/32807)
Updating files:  75% (24606/32807)
Updating files:  76% (24934/32807)
Updating files:  77% (25262/32807)
Updating files:  78% (25590/32807)
Updating files:  79% (25918/32807)
Updating files:  80% (26246/32807)
Updating files:  81% (26574/32807)
Updating files:  82% (26902/32807)
Updating files:  83% (27230/32807)
Updating files:  84% (27558/32807)
Updating files:  85% (27886/32807)
Updating files:  86% (28215/32807)
Updating files:  87% (28543/32807)
Updating files:  88% (28871/32807)
Updating files:  89% (29199/32807)
Updating files:  90% (29527/32807)
Updating files:  91% (29855/32807)
Updating files:  92% (30183/32807)
Updating files:  93% (30511/32807)
Updating files:  94% (30839/32807)
Updating files:  95% (31167/32807)
Updating files:  96% (31495/32807)
Updating files:  97% (31823/32807)
Updating files:  98% (32151/32807)
Updating files:  99% (32479/32807)
Updating files: 100% (32807/32807)
Updating files: 100% (32807/32807), done.
HEAD is now at 0b65c91e76 Merge pull request #26997 from hannesm/revive-rml
Merge made by the 'ort' strategy.
 .../liquidsoap-core/liquidsoap-core.2.3.0/opam     | 135 +++++++++++++++++++++
 packages/liquidsoap-js/liquidsoap-js.2.3.0/opam    |  43 +++++++
 .../liquidsoap-lang/liquidsoap-lang.2.3.0/opam     |  44 +++++++
 .../liquidsoap-libs-extra.2.3.0/opam               |  38 ++++++
 .../liquidsoap-libs/liquidsoap-libs.2.3.0/opam     |  37 ++++++
 .../liquidsoap-mode/liquidsoap-mode.2.3.0/opam     |  45 +++++++
 packages/liquidsoap/liquidsoap.2.3.0/opam          |  68 +++++++++++
 packages/tls-liquidsoap/tls-liquidsoap.1/opam      |   8 +-
 8 files changed, 415 insertions(+), 3 deletions(-)
 create mode 100644 packages/liquidsoap-core/liquidsoap-core.2.3.0/opam
 create mode 100644 packages/liquidsoap-js/liquidsoap-js.2.3.0/opam
 create mode 100644 packages/liquidsoap-lang/liquidsoap-lang.2.3.0/opam
 create mode 100644 packages/liquidsoap-libs-extra/liquidsoap-libs-extra.2.3.0/opam
 create mode 100644 packages/liquidsoap-libs/liquidsoap-libs.2.3.0/opam
 create mode 100644 packages/liquidsoap-mode/liquidsoap-mode.2.3.0/opam
 create mode 100644 packages/liquidsoap/liquidsoap.2.3.0/opam

(from ocaml/opam:debian-12-ocaml-4.13@sha256:38525c9ed237e5f90879e3c5ae83f26ff797bfe06ca5cecd26d5991582548ef1)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.13@sha256:38525c9ed237e5f90879e3c5ae83f26ff797bfe06ca5cecd26d5991582548ef1' locally
docker.io/ocaml/opam@sha256:38525c9ed237e5f90879e3c5ae83f26ff797bfe06ca5cecd26d5991582548ef1: Pulling from ocaml/opam
23b1278e9ce1: Pulling fs layer
23b1278e9ce1: Verifying Checksum
23b1278e9ce1: Download complete
23b1278e9ce1: Pull complete
Digest: sha256:38525c9ed237e5f90879e3c5ae83f26ff797bfe06ca5cecd26d5991582548ef1
Status: Downloaded newer image for ocaml/opam@sha256:38525c9ed237e5f90879e3c5ae83f26ff797bfe06ca5cecd26d5991582548ef1
2024-11-29 15:39.29 ---> saved as "e5f18da413d9add1b761c3920fafad05763a4c399e64b417fe7b7a6ba78e61cb"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-11-29 15:39.29 ---> saved as "2e5239371b4668c06817b2165101daf3df76c54bf6adddf1341d6450098acb55"

/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.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 39 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=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-11-29 15:40.46 ---> saved as "11bc587a5fc42fac7da94a0e7617a95b366340128dcc6d03af3945c6f4d25e29"

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-126-generic
The OCaml toplevel, version 4.13.1
2.4.0~alpha1~dev
2024-11-29 15:40.46 ---> saved as "3e57772f5895622cbc270424b505cc58644ef05f5cf0cdfcf7a859f243e840e2"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 1000)

/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/"))
2024-11-29 15:41.04 ---> saved as "0bd19f7f9188b3878d1cbc30ebe735060bc921dc0a6a2171ad8f18294769ad32"

/home/opam: (copy (src .) (dst opam-repository/))
2024-11-29 15:41.20 ---> saved as "b35a18c3260ce32c97c94555f9ee76b2746a781bc97c2bdb8174102a6fae42ff"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-11-29 15:42.16 ---> saved as "13a93818cd6b7ae3dd4a10a689338c5aa421b1df19a6efe285d5e4765e2368f1"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [12.8 kB]
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2024-11-27-1405.46-F-2024-11-27-1405.46.pdiff [435 B]
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2024-11-27-1405.46-F-2024-11-27-1405.46.pdiff [435 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [206 kB]
- Fetched 322 kB in 0s (1167 kB/s)
- Reading package lists...
- 
2024-11-29 15:42.17 ---> saved as "2058af8549bc3c03edcd25046d95b7ba321bc7e89d5fc7ff80c3b315d7ab7f6e"

/home/opam: (run (shell "opam pin add -k version -yn tls-liquidsoap.1 1"))
tls-liquidsoap is now pinned to version 1
2024-11-29 15:42.18 ---> saved as "e9072dc0e55ef711c434d7c9d18738918079412188cb7c4e5c6719df3c772572"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall tls-liquidsoap.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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'tls-liquidsoap.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
tls-liquidsoap.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 37 packages
  - install asn1-combinators  0.3.2      [required by x509]
  - install astring           0.8.5      [required by bos]
  - install base64            3.5.1      [required by x509]
  - install bos               0.2.1      [required by ca-certs]
  - install ca-certs          1.0.0      [required by tls-liquidsoap]
  - install conf-gmp          4          [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec 3          [required by mirage-crypto-pk]
  - install conf-pkg-config   3          [required by zarith]
  - install csexp             1.5.2      [required by dune-configurator]
  - install cstruct           6.2.0      [required by tls-liquidsoap]
  - install digestif          1.2.0      [required by ca-certs, tls]
  - install domain-name       0.4.0      [required by tls]
  - install dune              3.17.0     [required by tls-liquidsoap]
  - install dune-configurator 3.17.0     [required by mirage-crypto]
  - install duration          0.2.1      [required by mirage-crypto-rng]
  - install eqaf              0.10       [required by digestif, mirage-crypto]
  - install fmt               0.9.0      [required by cstruct, tls]
  - install fpath             0.7.3      [required by ca-certs]
  - install gmap              0.3.0      [required by x509]
  - install ipaddr            5.6.0      [required by tls]
  - install kdf               1.0.0      [required by tls]
  - install logs              0.7.0      [required by ca-certs, tls]
  - install macaddr           5.6.0      [required by ipaddr]
  - install mirage-crypto     1.1.0      [required by ca-certs, tls]
  - install mirage-crypto-ec  1.1.0      [required by tls]
  - install mirage-crypto-pk  1.1.0      [required by tls]
  - install mirage-crypto-rng 1.1.0      [required by tls-liquidsoap]
  - install ocamlbuild        0.15.0     [required by bos, ptime]
  - install ocamlfind         1.9.6      [required by bos, ptime]
  - install ohex              0.2.0      [required by ca-certs, tls]
  - install ptime             1.2.0      [required by ca-certs]
  - install rresult           0.7.0      [required by bos]
  - install tls               1.0.4      [required by tls-liquidsoap]
  - install tls-liquidsoap    1 (pinned)
  - install topkg             1.0.7      [required by bos, ptime]
  - install x509              1.0.5      [required by ca-certs, tls]
  - install zarith            1.14       [required by mirage-crypto-pk]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- 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 ... 18745 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u9) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.0  (cached)
-> retrieved conf-gmp.4  (cached)
-> retrieved conf-gmp-powm-sec.3  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.3
-> installed conf-gmp.4
-> retrieved cstruct.6.2.0  (cached)
-> installed conf-gmp-powm-sec.3
-> retrieved digestif.1.2.0  (cached)
-> retrieved domain-name.0.4.0  (cached)
-> retrieved dune.3.17.0, dune-configurator.3.17.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved mirage-crypto.1.1.0, mirage-crypto-ec.1.1.0, mirage-crypto-pk.1.1.0, mirage-crypto-rng.1.1.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved tls.1.0.4  (cached)
-> retrieved tls-liquidsoap.1  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved x509.1.0.5  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.6
-> installed ocamlbuild.0.15.0
-> installed zarith.1.14
-> installed topkg.1.0.7
-> installed rresult.0.7.0
-> installed fmt.0.9.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed logs.0.7.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed dune.3.17.0
-> installed duration.0.2.1
-> installed ohex.0.2.0
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.1
-> installed cstruct.6.2.0
-> installed domain-name.0.4.0
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> installed macaddr.5.6.0
-> installed ipaddr.5.6.0
-> installed digestif.1.2.0
-> installed dune-configurator.3.17.0
-> installed mirage-crypto.1.1.0
-> installed kdf.1.0.0
-> installed mirage-crypto-rng.1.1.0
-> installed mirage-crypto-pk.1.1.0
-> installed mirage-crypto-ec.1.1.0
-> installed x509.1.0.5
-> installed ca-certs.1.0.0
-> installed tls.1.0.4
-> installed tls-liquidsoap.1
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:43.27 ---> saved as "a2b67285be99ff9e11aa286be24204e7a414e58db2bfc23662c7615abcee99ad"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test tls-liquidsoap.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile tls-liquidsoap 1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   tls-liquidsoap.1
-> installed tls-liquidsoap.1
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:43.44 ---> saved as "89462bda21debe597d3878a1b930b88aa3c60adecc46ea58ff42975ca032a20c"

/home/opam: (run (shell  "opam reinstall --with-test --verbose tls-liquidsoap.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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'tls-liquidsoap.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 1 package
  - recompile tls-liquidsoap 1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [tls-liquidsoap: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tls-liquidsoap" "-j" "31" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.13/.opam-switch/build/tls-liquidsoap.1)
Processing  2/4: [tls-liquidsoap: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "tls-liquidsoap" "--create-install-files" "tls-liquidsoap" (CWD=/home/opam/.opam/4.13/.opam-switch/build/tls-liquidsoap.1)
-> compiled  tls-liquidsoap.1
-> removed   tls-liquidsoap.1
-> installed tls-liquidsoap.1
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:44.01 ---> saved as "d95ed244a347720e4f729f2ecf91842d529133fbddec34cca6755ab2b5841b13"
Job succeeded
2024-11-29 15:44.11: Job succeeded