Build:
- 1
- 0
2026-01-10 18:28.31: New job: test liquidsoap-mode.2.4.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29207/head (a04474c832479f09f1fe171eb70cf5f4b66f5525)
on alpine-3.22-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/29207/head" && git reset --hard a04474c8
git fetch origin master
git merge --no-edit a6b2f19780b2edfc4e5dba2566235c877dbf5acd
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:alpine-3.22-ocaml-5.4@sha256:2fde8d2e456699c59ad17e425ac3317126ebcdbc9f19214314ddb97ba97f990e
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 liquidsoap-mode.2.4.1 2.4.1
RUN opam reinstall liquidsoap-mode.2.4.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 "\"alpine-3.22\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'liquidsoap-mode.2.4.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 liquidsoap-mode.2.4.1) || true
RUN opam reinstall --with-test --verbose liquidsoap-mode.2.4.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 "\"alpine-3.22\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'liquidsoap-mode.2.4.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 .
2026-01-10 18:28.31: Using cache hint "ocaml/opam:alpine-3.22-ocaml-5.4@sha256:2fde8d2e456699c59ad17e425ac3317126ebcdbc9f19214314ddb97ba97f990e-liquidsoap-mode.2.4.1-a04474c832479f09f1fe171eb70cf5f4b66f5525"
2026-01-10 18:28.31: Using OBuilder spec:
((from ocaml/opam:alpine-3.22-ocaml-5.4@sha256:2fde8d2e456699c59ad17e425ac3317126ebcdbc9f19214314ddb97ba97f990e)
(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 liquidsoap-mode.2.4.1 2.4.1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall liquidsoap-mode.2.4.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 \"\\\"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\" != 'liquidsoap-mode.2.4.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 liquidsoap-mode.2.4.1) || true"))
(run (shell "opam reinstall --with-test --verbose liquidsoap-mode.2.4.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 \"\\\"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\" != 'liquidsoap-mode.2.4.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-10 18:28.31: Waiting for resource in pool OCluster
2026-01-10 18:28.32: Waiting for worker…
2026-01-10 18:29.34: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files: 64% (12309/19153)
Updating files: 65% (12450/19153)
Updating files: 66% (12641/19153)
Updating files: 67% (12833/19153)
Updating files: 68% (13025/19153)
Updating files: 69% (13216/19153)
Updating files: 70% (13408/19153)
Updating files: 71% (13599/19153)
Updating files: 72% (13791/19153)
Updating files: 73% (13982/19153)
Updating files: 74% (14174/19153)
Updating files: 75% (14365/19153)
Updating files: 76% (14557/19153)
Updating files: 77% (14748/19153)
Updating files: 78% (14940/19153)
Updating files: 79% (15131/19153)
Updating files: 80% (15323/19153)
Updating files: 81% (15514/19153)
Updating files: 82% (15706/19153)
Updating files: 83% (15897/19153)
Updating files: 84% (16089/19153)
Updating files: 84% (16097/19153)
Updating files: 85% (16281/19153)
Updating files: 86% (16472/19153)
Updating files: 87% (16664/19153)
Updating files: 88% (16855/19153)
Updating files: 89% (17047/19153)
Updating files: 90% (17238/19153)
Updating files: 91% (17430/19153)
Updating files: 92% (17621/19153)
Updating files: 93% (17813/19153)
Updating files: 94% (18004/19153)
Updating files: 95% (18196/19153)
Updating files: 96% (18387/19153)
Updating files: 97% (18579/19153)
Updating files: 98% (18770/19153)
Updating files: 99% (18962/19153)
Updating files: 100% (19153/19153)
Updating files: 100% (19153/19153), done.
HEAD is now at a6b2f19780 Merge pull request #29201 from lindig/fit
Updating a6b2f19780..a04474c832
Fast-forward
packages/liquidsoap-js/liquidsoap-js.2.4.1/opam | 44 ++++++
.../liquidsoap-lang/liquidsoap-lang.2.4.1/opam | 46 ++++++
.../liquidsoap-mode/liquidsoap-mode.2.4.1/opam | 47 ++++++
packages/liquidsoap/liquidsoap.2.4.1/opam | 163 +++++++++++++++++++++
4 files changed, 300 insertions(+)
create mode 100644 packages/liquidsoap-js/liquidsoap-js.2.4.1/opam
create mode 100644 packages/liquidsoap-lang/liquidsoap-lang.2.4.1/opam
create mode 100644 packages/liquidsoap-mode/liquidsoap-mode.2.4.1/opam
create mode 100644 packages/liquidsoap/liquidsoap.2.4.1/opam
(from ocaml/opam:alpine-3.22-ocaml-5.4@sha256:2fde8d2e456699c59ad17e425ac3317126ebcdbc9f19214314ddb97ba97f990e)
2026-01-10 18:34.35 ---> using "85b6bd98a77cc0d04bdab183623c973ff39c2d7b71864119e3625225879b3f20" 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-01-10 18:34.35 ---> using "fd4b81edc78e6eb6cd75b4c05d5e0cfd8038af83bc35a8c78c4e739cd4f59bd5" 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-01-10 18:34.35 ---> using "85df8e550e9a3de687f2fafa45423e227b5b461820af8cc2ec3a04c9f6258ce6" 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 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-01-10 18:34.35 ---> using "fa3369a2785a5ca961db29d8c317c2c08dd72db54f38eeb907666662190e894d" 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-01-10 18:34.35 ---> using "13666b48b7c58b0b287d446454025c485aab966a14c72f83941b7287aa43a73c" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-10 18:42.56 ---> saved as "860ae8db23d2e2a44eddc95b54e04e478f357cdbf8de2c6fba6823c60e236819"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
"/usr/bin/env" "bash" "-c" "opam repository set-url --strict default opam-repository/" failed with exit status 137
2026-01-10 19:05.05: Job failed: Failed: Build failed