- github
- ocaml
- opam-repository
- bd114b
- distributions,alpine-3.20-ocaml-4.14,liquidsoap-core.2.3.0,tests
(not at the head of any monitored branch or PR)
2024-11-29 15:19.48: New job: test liquidsoap-core.2.3.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/26968/head (bd114b495c51db7a6e19ce75301ed7679f652d12)
on alpine-3.20-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/26968/head" && git reset --hard bd114b49
git fetch origin master
git merge --no-edit 0b65c91e7650d82e2c12fe1f64a466d2c6954272
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.20-ocaml-4.14@sha256:eecc7a576f82b62c060a258702ffc4b4a8df394ce93e2ddc0f3297f1fa9c992b
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 liquidsoap-core.2.3.0 2.3.0
RUN opam reinstall liquidsoap-core.2.3.0; \
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.20\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'liquidsoap-core.2.3.0' && 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 liquidsoap-core.2.3.0) || true
RUN opam reinstall --with-test --verbose liquidsoap-core.2.3.0; \
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.20\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'liquidsoap-core.2.3.0' && 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.48: Using cache hint "ocaml/opam:alpine-3.20-ocaml-4.14@sha256:eecc7a576f82b62c060a258702ffc4b4a8df394ce93e2ddc0f3297f1fa9c992b-liquidsoap-core.2.3.0-bd114b495c51db7a6e19ce75301ed7679f652d12"
2024-11-29 15:19.48: Using OBuilder spec:
((from ocaml/opam:alpine-3.20-ocaml-4.14@sha256:eecc7a576f82b62c060a258702ffc4b4a8df394ce93e2ddc0f3297f1fa9c992b)
(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 liquidsoap-core.2.3.0 2.3.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall liquidsoap-core.2.3.0;\
\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.20\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'liquidsoap-core.2.3.0' && 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 liquidsoap-core.2.3.0) || true"))
(run (shell "opam reinstall --with-test --verbose liquidsoap-core.2.3.0;\
\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.20\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'liquidsoap-core.2.3.0' && 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.48: Waiting for resource in pool OCluster
2024-11-29 15:43.55: Waiting for worker…
2024-11-29 15:48.29: Got resource from pool OCluster
Building on x86-bm-c3.sw.ocaml.org
All commits already cached
Updating files: 63% (20983/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:alpine-3.20-ocaml-4.14@sha256:eecc7a576f82b62c060a258702ffc4b4a8df394ce93e2ddc0f3297f1fa9c992b)
2024-11-29 15:48.34 ---> using "f5b800e66ef4cf98e854241bc343ee68858291040e38383743936af3079dec08" from cache
/: (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:48.34 ---> using "6036847050fc992506c2dc887c3eb70c5f8561aa0b26abfc212322835d37d1bd" 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.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] synchronised from file:///home/opam/opam-repository
2024-11-29 15:48.34 ---> using "a3829e9b647a70d95d1811c9205e0eba9dc8a05f5e791125f3bc21c8f3bffe9b" from cache
/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-126-generic
The OCaml toplevel, version 4.14.2
2.4.0~alpha1~dev
2024-11-29 15:48.34 ---> using "e81a0d515c1dd090fdfcd92ee376ea70b9bc2216820c0857383bec78f468f6f1" from cache
/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:48.34 ---> using "fa4d33771ebc14335d7ace34d11558aaaeb266e9ecc1ad6a3d4f6df3fc340002" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2024-11-29 15:48.36 ---> using "e604ff296f75b083667dfc3877807cf0af90a92384604d724067fa4ed823fe40" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-11-29 15:49.18 ---> saved as "4f8468b543849a7ae40cc803b09053a844119ee39cd37176f8d1e35bdbfd99ba"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apk" "update"
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz
- fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/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.20.3-372-gf76f8d196b6 [https://dl-cdn.alpinelinux.org/alpine/v3.20/main]
- v3.20.3-378-ge4d42640421 [https://dl-cdn.alpinelinux.org/alpine/v3.20/community]
- v20240923-5598-gda9ccdad0b9 [https://dl-cdn.alpinelinux.org/alpine/edge/main]
- v20240923-5607-g49f982d3801 [https://dl-cdn.alpinelinux.org/alpine/edge/community]
- v20240923-5594-g3370babfa46 [https://dl-cdn.alpinelinux.org/alpine/edge/testing]
- OK: 56020 distinct packages available
2024-11-29 15:49.19 ---> saved as "0cc1973c89b923df6a13af9b11763eacf1b7b260cf33cb6293df0a4aafbe294c"
/home/opam: (run (shell "opam pin add -k version -yn liquidsoap-core.2.3.0 2.3.0"))
liquidsoap-core is now pinned to version 2.3.0
2024-11-29 15:49.20 ---> saved as "1e8e10e5c923485063d0d7d1d3a319e459acb96c823360f260de95dcedbe93bb"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall liquidsoap-core.2.3.0;\
\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.20\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'liquidsoap-core.2.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
liquidsoap-core.2.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 56 packages
- install angstrom 0.16.1 [required by uri]
- install base v0.16.3 [required by ppx_hash, ppx_string]
- install base-bytes base [required by cry]
- install bigstringaf 0.10.0 [required by angstrom]
- install camlp-streams 5.0.1 [required by camomile]
- install camomile 2.0.0 [required by liquidsoap-core]
- install conf-bash 1 [required by base]
- install conf-libcurl 2 [required by ocurl]
- install cry 1.0.3 [required by liquidsoap-core]
- install csexp 1.5.2 [required by dune-private-libs]
- install domain_shims 0.1.0 [required by saturn_lockfree]
- install dtools 0.4.5 [required by liquidsoap-core]
- install dune 3.17.0 [required by liquidsoap-core]
- install dune-build-info 3.17.0 [required by liquidsoap-core]
- install dune-configurator 3.17.0 [required by mm]
- install dune-private-libs 3.17.0 [required by dune-site]
- install dune-site 3.17.0 [required by camomile, liquidsoap-lang]
- install duppy 0.9.4 [required by liquidsoap-core]
- install dyn 3.17.0 [required by dune-private-libs]
- install fileutils 0.6.4 [required by liquidsoap-core]
- install gen 1.1 [required by sedlex]
- install liquidsoap-core 2.3.0 (pinned)
- install liquidsoap-lang 2.3.0 [required by liquidsoap-core]
- install magic-mime 1.3.1 [required by liquidsoap-core]
- install mem_usage 0.1.1 [required by liquidsoap-core]
- install menhir 20240715 [required by liquidsoap-lang]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by liquidsoap-core]
- install menhirSdk 20240715 [required by menhir]
- install metadata 0.3.0 [required by liquidsoap-core]
- install mm 0.8.6 [required by liquidsoap-core]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlfind 1.9.6 [required by ocurl]
- install ocurl 0.9.2 [required by liquidsoap-core]
- install ordering 3.17.0 [required by dyn, stdune]
- install pp 2.0.0 [required by dune-private-libs]
- install ppx_base v0.16.0 [required by ppx_string]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_hash]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_hash v0.16.0 [required by liquidsoap-lang]
- install ppx_sexp_conv v0.16.0 [required by ppx_hash]
- install ppx_string v0.16.0 [required by liquidsoap-core]
- install ppxlib 0.33.0 [required by ppx_string, ppx_hash, sedlex]
- install re 1.12.0 [required by liquidsoap-core]
- install saturn_lockfree 0.4.1 [required by liquidsoap-lang]
- install sedlex 3.3 [required by liquidsoap-lang]
- install seq base [required by fileutils]
- install sexplib0 v0.16.0 [required by base, ppx_sexp_conv]
- install stdlib-shims 0.3.0 [required by fileutils]
- install stdune 3.17.0 [required by dune-private-libs]
- install stringext 1.6.0 [required by uri]
- install uri 4.4.0 [required by liquidsoap-core]
The following system packages will first need to be installed:
curl-dev linux-headers
<><> 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" "curl-dev" "linux-headers"
- (1/13) Installing brotli (1.1.0-r2)
- (2/13) Installing brotli-dev (1.1.0-r2)
- (3/13) Installing c-ares-dev (1.33.1-r0)
- (4/13) Installing libidn2-dev (2.3.7-r0)
- (5/13) Installing libpsl-utils (0.21.5-r1)
- (6/13) Installing libpsl-dev (0.21.5-r1)
- (7/13) Installing nghttp2-dev (1.62.1-r0)
- (8/13) Installing openssl-dev (3.3.2-r1)
- (9/13) Installing zlib-dev (1.3.1-r1)
- (10/13) Installing zstd (1.5.6-r0)
- (11/13) Installing zstd-dev (1.5.6-r0)
- (12/13) Installing curl-dev (8.11.0-r2)
- (13/13) Installing linux-headers (6.6-r0)
- Executing busybox-1.36.1-r29.trigger
- OK: 305 MiB in 113 packages
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved base.v0.16.3 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved camomile.2.0.0 (cached)
-> retrieved cry.1.0.3 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved domain_shims.0.1.0 (cached)
-> retrieved dtools.0.4.5 (cached)
-> installed conf-bash.1
-> installed conf-libcurl.2
-> retrieved dune.3.17.0, dune-build-info.3.17.0, dune-configurator.3.17.0, dune-private-libs.3.17.0, dune-site.3.17.0, dyn.3.17.0, ordering.3.17.0, stdune.3.17.0 (cached)
-> retrieved duppy.0.9.4 (cached)
-> retrieved fileutils.0.6.4 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved liquidsoap-core.2.3.0, liquidsoap-lang.2.3.0 (cached)
-> retrieved magic-mime.1.3.1 (cached)
-> retrieved mem_usage.0.1.1 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> retrieved metadata.0.3.0 (cached)
-> retrieved mm.0.8.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlfind.1.9.6 (cached)
-> retrieved ocurl.0.9.2 (cached)
-> retrieved pp.2.0.0 (cached)
-> retrieved ppx_base.v0.16.0 (cached)
-> retrieved ppx_cold.v0.16.0 (cached)
-> retrieved ppx_compare.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_enumerate.v0.16.0 (cached)
-> retrieved ppx_globalize.v0.16.0 (cached)
-> retrieved ppx_hash.v0.16.0 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppx_string.v0.16.0 (cached)
-> retrieved ppxlib.0.33.0 (cached)
-> retrieved re.1.12.0 (cached)
-> retrieved saturn_lockfree.0.4.1 (cached)
-> retrieved sedlex.3.3 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> retrieved uri.4.4.0 (cached)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed dune.3.17.0
-> installed camlp-streams.5.0.1
-> installed cry.1.0.3
-> installed csexp.1.5.2
-> installed domain_shims.0.1.0
-> installed dtools.0.4.5
-> installed gen.1.1
-> installed magic-mime.1.3.1
-> installed mem_usage.0.1.1
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed metadata.0.3.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.12.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed saturn_lockfree.0.4.1
-> installed duppy.0.9.4
-> installed fileutils.0.6.4
-> installed ordering.3.17.0
-> installed dune-build-info.3.17.0
-> installed dune-configurator.3.17.0
-> installed bigstringaf.0.10.0
-> installed dyn.3.17.0
-> installed angstrom.0.16.1
-> installed mm.0.8.6
-> installed uri.4.4.0
-> installed stdune.3.17.0
-> installed base.v0.16.3
-> installed ocurl.0.9.2
-> installed dune-private-libs.3.17.0
-> installed dune-site.3.17.0
-> installed menhir.20240715
-> installed ppxlib.0.33.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed camomile.2.0.0
-> installed ppx_compare.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.3
-> installed ppx_hash.v0.16.0
-> installed ppx_base.v0.16.0
-> installed ppx_string.v0.16.0
-> installed liquidsoap-lang.2.3.0
-> installed liquidsoap-core.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:51.19 ---> saved as "160cb9cc4a6d9954714a6712a956026fc981cbc3aa6715bfa444da68e4c752d6"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test liquidsoap-core.2.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile liquidsoap-core 2.3.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed liquidsoap-core.2.3.0
-> installed liquidsoap-core.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:51.50 ---> saved as "a55fc889cc2206b0b6b79ed3c638beb4e98c14dccf179e2a9186a856bf862beb"
/home/opam: (run (shell "opam reinstall --with-test --verbose liquidsoap-core.2.3.0;\
\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.20\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'liquidsoap-core.2.3.0' && 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 liquidsoap-core 2.3.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [liquidsoap-core: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "liquidsoap-core" "-j" "39" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/liquidsoap-core.2.3.0)
Processing 2/4: [liquidsoap-core: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "liquidsoap-core" "--create-install-files" "liquidsoap-core" (CWD=/home/opam/.opam/4.14/.opam-switch/build/liquidsoap-core.2.3.0)
-> compiled liquidsoap-core.2.3.0
-> removed liquidsoap-core.2.3.0
-> installed liquidsoap-core.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 15:52.19 ---> saved as "1dd6fcdecc974375c764bb1f835e9cfc323307b2c6073fe71430f8c17aee76e9"
Job succeeded
2024-11-29 15:52.27: Job succeeded