(for PR #28827)
2025-11-10 16:57.22: New job: test saga.1.0.0~alpha2, using opam 2.0
from https://github.com/ocaml/opam-repository.git#refs/pull/28827/head (3adacbc6aba2762d0750bc10bb58285f6b461c46)
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/28827/head" && git reset --hard 3adacbc6
git fetch origin master
git merge --no-edit b6a264c784afa1e19f7a926fc10d49010ad12be4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn saga.1.0.0~alpha2 1.0.0~alpha2
RUN opam depext saga.1.0.0~alpha2 && opam reinstall saga.1.0.0~alpha2; \
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" != 'saga.1.0.0~alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam depext --with-test saga.1.0.0~alpha2 && opam reinstall --with-test saga.1.0.0~alpha2) || true
RUN opam depext --with-test saga.1.0.0~alpha2 && opam reinstall --with-test --verbose saga.1.0.0~alpha2; \
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" != 'saga.1.0.0~alpha2' && 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-11-10 16:57.22: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58-saga.1.0.0~alpha2-3adacbc6aba2762d0750bc10bb58285f6b461c46"
2025-11-10 16:57.22: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "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 depext -u || true"))
(run (shell "opam pin add -k version -yn saga.1.0.0~alpha2 1.0.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext saga.1.0.0~alpha2 && opam reinstall saga.1.0.0~alpha2;\
\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\" != 'saga.1.0.0~alpha2' && 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 depext --with-test saga.1.0.0~alpha2 && opam reinstall --with-test saga.1.0.0~alpha2) || true"))
(run (shell "opam depext --with-test saga.1.0.0~alpha2 && opam reinstall --with-test --verbose saga.1.0.0~alpha2;\
\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\" != 'saga.1.0.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-11-10 16:57.22: Waiting for resource in pool OCluster
2025-11-10 22:25.52: Waiting for worker…
2025-11-10 22:28.41: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at b6a264c784 Merge pull request #28853 from AltGr/catala100
Merge made by the 'ort' strategy.
packages/fehu/fehu.1.0.0~alpha2/opam | 49 +++++++++++++++
packages/hugin/hugin.1.0.0~alpha2/opam | 49 +++++++++++++++
packages/kaun/kaun.1.0.0~alpha2/opam | 50 ++++++++++++++++
packages/nx-datasets/nx-datasets.1.0.0~alpha2/opam | 54 +++++++++++++++++
packages/nx/nx.1.0.0~alpha2/opam | 65 ++++++++++++++++++++
packages/quill/quill.1.0.0~alpha2/opam | 70 ++++++++++++++++++++++
packages/raven/raven.1.0.0~alpha2/opam | 53 ++++++++++++++++
packages/rune/rune.1.0.0~alpha2/opam | 56 +++++++++++++++++
packages/saga/saga.1.0.0~alpha2/opam | 49 +++++++++++++++
packages/sowilo/sowilo.1.0.0~alpha2/opam | 47 +++++++++++++++
packages/talon/talon.1.0.0~alpha2/opam | 48 +++++++++++++++
11 files changed, 590 insertions(+)
create mode 100644 packages/fehu/fehu.1.0.0~alpha2/opam
create mode 100644 packages/hugin/hugin.1.0.0~alpha2/opam
create mode 100644 packages/kaun/kaun.1.0.0~alpha2/opam
create mode 100644 packages/nx-datasets/nx-datasets.1.0.0~alpha2/opam
create mode 100644 packages/nx/nx.1.0.0~alpha2/opam
create mode 100644 packages/quill/quill.1.0.0~alpha2/opam
create mode 100644 packages/raven/raven.1.0.0~alpha2/opam
create mode 100644 packages/rune/rune.1.0.0~alpha2/opam
create mode 100644 packages/saga/saga.1.0.0~alpha2/opam
create mode 100644 packages/sowilo/sowilo.1.0.0~alpha2/opam
create mode 100644 packages/talon/talon.1.0.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:0b68f45799a4ff0af182b78277d652e076097f37cbcb04aa9d74bfbd7d300e58)
2025-11-10 22:30.04 ---> using "9f1bc9b76367c8d29be355965b06cbbd4aeb05818e6e1915136daad8eabad361" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2025-11-10 22:30.04 ---> using "a1c0137067bb65a7ea8b87822659c70b2e7625c63e777247ecbfd440eade9a03" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.
[WARNING] Recommended dependencies -- most packages rely on these:
- m4
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2025-11-10 22:30.04 ---> using "3981b0163d70e751309abe78f1f944fd5f81637aff18daf7391d29368e139c92" from cache
/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version 2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-mccs+glpk
# install-criteria -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria -removed,-count[version-lag,solution],-new
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
2025-11-10 22:30.04 ---> using "6970807530dfb28bb919a5c2853c913ca01ad902ac6a3dd382fa9ee453a7d5e3" 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/"))
2025-11-10 22:30.04 ---> using "893e81f316285f3d12c0ef7bd80e6bbb382f1b6b175c780336d3861edcb9ea21" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 22:30.16 ---> saved as "b91916f2b4853b0933e0c362ab524dbd7d194c6a59f5b1e23c80908bcc48fae3"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2025-11-10 22:30.27 ---> saved as "e3140a3bfb9d06c1cd684f237d3b572183da27c10606b8f8d47a52bc07c42d00"
/home/opam: (run (network host)
(shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "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 [69.3 kB]
Fetched 160 kB in 0s (1810 kB/s)
Reading package lists...
# OS package update successful
2025-11-10 22:30.30 ---> saved as "593034e2325c7fc834e9c84618659ace266afb5687e145acdd5d4132b5003175"
/home/opam: (run (shell "opam pin add -k version -yn saga.1.0.0~alpha2 1.0.0~alpha2"))
saga is now pinned to version 1.0.0~alpha2
2025-11-10 22:30.31 ---> saved as "c8a3afb19f439e8c6c33aa9cd4b3128c1569d34fd3ddb394623c705475cc2144"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext saga.1.0.0~alpha2 && opam reinstall saga.1.0.0~alpha2;\
\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\" != 'saga.1.0.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# The following system packages are needed:
liblapacke-dev
libopenblas-dev
pkg-config
zlib1g-dev
The following command needs to be run through "sudo":
apt-get install -qq -yy liblapacke-dev libopenblas-dev pkg-config zlib1g-dev
Selecting previously unselected package libblas3: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 .../00-libblas3_3.12.1-6_amd64.deb ...
Unpacking libblas3:amd64 (3.12.1-6) ...
Selecting previously unselected package libblas-dev:amd64.
Preparing to unpack .../01-libblas-dev_3.12.1-6_amd64.deb ...
Unpacking libblas-dev:amd64 (3.12.1-6) ...
Selecting previously unselected package libgfortran5:amd64.
Preparing to unpack .../02-libgfortran5_14.2.0-19_amd64.deb ...
Unpacking libgfortran5:amd64 (14.2.0-19) ...
Selecting previously unselected package libopenblas0-pthread:amd64.
Preparing to unpack .../03-libopenblas0-pthread_0.3.29+ds-3_amd64.deb ...
Unpacking libopenblas0-pthread:amd64 (0.3.29+ds-3) ...
Selecting previously unselected package liblapack3:amd64.
Preparing to unpack .../04-liblapack3_3.12.1-6_amd64.deb ...
Unpacking liblapack3:amd64 (3.12.1-6) ...
Selecting previously unselected package libopenblas-pthread-dev:amd64.
Preparing to unpack .../05-libopenblas-pthread-dev_0.3.29+ds-3_amd64.deb ...
Unpacking libopenblas-pthread-dev:amd64 (0.3.29+ds-3) ...
Selecting previously unselected package liblapack-dev:amd64.
Preparing to unpack .../06-liblapack-dev_3.12.1-6_amd64.deb ...
Unpacking liblapack-dev:amd64 (3.12.1-6) ...
Selecting previously unselected package libtmglib3:amd64.
Preparing to unpack .../07-libtmglib3_3.12.1-6_amd64.deb ...
Unpacking libtmglib3:amd64 (3.12.1-6) ...
Selecting previously unselected package liblapacke:amd64.
Preparing to unpack .../08-liblapacke_3.12.1-6_amd64.deb ...
Unpacking liblapacke:amd64 (3.12.1-6) ...
Selecting previously unselected package libtmglib-dev:amd64.
Preparing to unpack .../09-libtmglib-dev_3.12.1-6_amd64.deb ...
Unpacking libtmglib-dev:amd64 (3.12.1-6) ...
Selecting previously unselected package liblapacke-dev:amd64.
Preparing to unpack .../10-liblapacke-dev_3.12.1-6_amd64.deb ...
Unpacking liblapacke-dev:amd64 (3.12.1-6) ...
Selecting previously unselected package libopenblas0:amd64.
Preparing to unpack .../11-libopenblas0_0.3.29+ds-3_amd64.deb ...
Unpacking libopenblas0:amd64 (0.3.29+ds-3) ...
Selecting previously unselected package libopenblas-dev:amd64.
Preparing to unpack .../12-libopenblas-dev_0.3.29+ds-3_amd64.deb ...
Unpacking libopenblas-dev:amd64 (0.3.29+ds-3) ...
Selecting previously unselected package libpkgconf3:amd64.
Preparing to unpack .../13-libpkgconf3_1.8.1-4_amd64.deb ...
Unpacking libpkgconf3:amd64 (1.8.1-4) ...
Selecting previously unselected package pkgconf-bin.
Preparing to unpack .../14-pkgconf-bin_1.8.1-4_amd64.deb ...
Unpacking pkgconf-bin (1.8.1-4) ...
Selecting previously unselected package pkgconf:amd64.
Preparing to unpack .../15-pkgconf_1.8.1-4_amd64.deb ...
Unpacking pkgconf:amd64 (1.8.1-4) ...
Selecting previously unselected package pkg-config:amd64.
Preparing to unpack .../16-pkg-config_1.8.1-4_amd64.deb ...
Unpacking pkg-config:amd64 (1.8.1-4) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../17-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
Setting up libblas3:amd64 (3.12.1-6) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
Setting up libpkgconf3:amd64 (1.8.1-4) ...
Setting up pkgconf-bin (1.8.1-4) ...
Setting up libgfortran5:amd64 (14.2.0-19) ...
Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
Setting up libblas-dev:amd64 (3.12.1-6) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
Setting up liblapack3:amd64 (3.12.1-6) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
Setting up libopenblas0-pthread:amd64 (0.3.29+ds-3) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/x86_64-linux-gnu/libopenblas.so.0 (libopenblas.so.0-x86_64-linux-gnu) in auto mode
Setting up pkgconf:amd64 (1.8.1-4) ...
Setting up libtmglib3:amd64 (3.12.1-6) ...
Setting up liblapack-dev:amd64 (3.12.1-6) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
Setting up pkg-config:amd64 (1.8.1-4) ...
Setting up libopenblas0:amd64 (0.3.29+ds-3) ...
Setting up liblapacke:amd64 (3.12.1-6) ...
Setting up libtmglib-dev:amd64 (3.12.1-6) ...
Setting up libopenblas-pthread-dev:amd64 (0.3.29+ds-3) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/x86_64-linux-gnu/libopenblas.so (libopenblas.so-x86_64-linux-gnu) in auto mode
Setting up liblapacke-dev:amd64 (3.12.1-6) ...
Setting up libopenblas-dev:amd64 (0.3.29+ds-3) ...
Processing triggers for libc-bin (2.41-12) ...
# OS packages installation successful
saga.1.0.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install ocamlbuild 0.16.1 [required by uucp, uutf]
- install conf-pkg-config 4 [required by nx]
- install ocamlfind 1.9.8 [required by uucp, uutf]
- install dune 3.20.2 [required by saga]
- install conf-zlib 1 [required by nx]
- install topkg 1.1.1 [required by uucp, uutf]
- install yojson 3.0.0 [required by saga]
- install stdlib-shims 0.3.0 [required by nx]
- install re 1.14.0 [required by saga]
- install csexp 1.5.2 [required by dune-configurator]
- install uutf 1.0.4 [required by saga]
- install uucp 17.0.0 [required by saga]
- install dune-configurator 3.20.2 [required by nx]
- install nx 1.0.0~alpha2 [required by saga]
- install saga 1.0.0~alpha2*
===== 15 to install =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[csexp.1.5.2] found in cache
[dune.3.20.2] found in cache
[dune-configurator.3.20.2] found in cache
[nx.1.0.0~alpha2] found in cache
[ocamlbuild.0.16.1] found in cache
[ocamlfind.1.9.8] found in cache
[re.1.14.0] found in cache
[saga.1.0.0~alpha2] found in cache
[stdlib-shims.0.3.0] found in cache
[topkg.1.1.1] found in cache
[uucp.17.0.0] found in cache
[uutf.1.0.4] found in cache
[yojson.3.0.0] found in cache
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.4
-> installed conf-zlib.1
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed dune-configurator.3.20.2
-> installed uucp.17.0.0
-> installed nx.1.0.0~alpha2
-> installed saga.1.0.0~alpha2
Done.
# Run eval $(opam env) to update the current shell environment
2025-11-10 22:31.53 ---> saved as "ab90d6ca0ed82c4b6b760ef81a05d21032c5c7f520bcf94f93697ffe72272b08"
/home/opam: (run (network host)
(shell "(opam depext --with-test saga.1.0.0~alpha2 && opam reinstall --with-test saga.1.0.0~alpha2) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] No solution for saga.1.0.0~alpha2: The actions to process have cyclic dependencies:
- install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install js_of_ocaml-compiler.6.2.0
- install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install js_of_ocaml.6.2.0
- install sedlex.3.7 -> install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install sedlex.3.7
- install sedlex.3.7 -> install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install ppx_assert.v0.17.0 -> install jst-config.v0.17.0 -> install time_now.v0.17.0 -> install ppx_inline_test.v0.17.1 -> install ppx_expect.v0.17.3 -> install sedlex.3.7
- install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install ppx_assert.v0.17.0 -> install jst-config.v0.17.0 -> install time_now.v0.17.0 -> install ppx_inline_test.v0.17.1 -> install ppx_expect.v0.17.3 -> install re.1.14.0
- install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install ppx_assert.v0.17.0 -> install jst-config.v0.17.0 -> install time_now.v0.17.0 -> install ppx_inline_test.v0.17.1 -> install ppx_expect.v0.17.3 -> install js_of_ocaml-compiler.6.2.0
- install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install ppx_assert.v0.17.0 -> install jst-config.v0.17.0 -> install time_now.v0.17.0 -> install ppx_inline_test.v0.17.1 -> install ppx_expect.v0.17.3 -> install js_of_ocaml.6.2.0
- install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install js_of_ocaml-compiler.6.2.0
- install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install js_of_ocaml.6.2.0
- install alcotest.1.9.1 -> install qcheck.0.27 -> install gen.1.1 -> install sedlex.3.7 -> install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install alcotest.1.9.1
Command failed: opam list --readonly --with-test --external '--resolve=saga.1.0.0~alpha2' --color=never returned 20
2025-11-10 22:31.57 ---> saved as "b86dcf370733a1df84510d7d5c517c0534120741855b3a41991a40a1123d7d59"
/home/opam: (run (shell "opam depext --with-test saga.1.0.0~alpha2 && opam reinstall --with-test --verbose saga.1.0.0~alpha2;\
\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\" != 'saga.1.0.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] No solution for saga.1.0.0~alpha2: The actions to process have cyclic dependencies:
- install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install js_of_ocaml-compiler.6.2.0
- install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install js_of_ocaml.6.2.0
- install sedlex.3.7 -> install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install sedlex.3.7
- install sedlex.3.7 -> install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install ppx_assert.v0.17.0 -> install jst-config.v0.17.0 -> install time_now.v0.17.0 -> install ppx_inline_test.v0.17.1 -> install ppx_expect.v0.17.3 -> install sedlex.3.7
- install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install ppx_assert.v0.17.0 -> install jst-config.v0.17.0 -> install time_now.v0.17.0 -> install ppx_inline_test.v0.17.1 -> install ppx_expect.v0.17.3 -> install re.1.14.0
- install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install ppx_assert.v0.17.0 -> install jst-config.v0.17.0 -> install time_now.v0.17.0 -> install ppx_inline_test.v0.17.1 -> install ppx_expect.v0.17.3 -> install js_of_ocaml-compiler.6.2.0
- install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install ppx_assert.v0.17.0 -> install jst-config.v0.17.0 -> install time_now.v0.17.0 -> install ppx_inline_test.v0.17.1 -> install ppx_expect.v0.17.3 -> install js_of_ocaml.6.2.0
- install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install js_of_ocaml-compiler.6.2.0
- install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.37.0 -> install js_of_ocaml.6.2.0
- install alcotest.1.9.1 -> install qcheck.0.27 -> install gen.1.1 -> install sedlex.3.7 -> install js_of_ocaml-compiler.6.2.0 -> install js_of_ocaml.6.2.0 -> install re.1.14.0 -> install alcotest.1.9.1
Command failed: opam list --readonly --with-test --external '--resolve=saga.1.0.0~alpha2' --color=never returned 20
"/usr/bin/env" "bash" "-c" "opam depext --with-test saga.1.0.0~alpha2 && opam reinstall --with-test --verbose saga.1.0.0~alpha2;
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" != 'saga.1.0.0~alpha2' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 20
2025-11-10 22:32.17: Job failed: Failed: Build failed
2025-11-10 22:32.17: Log analysis:
2025-11-10 22:32.17: >>>
[ERROR] No solution for saga.1.0.0~alpha2: The actions to process have cyclic dependencies:
(score = 20)
2025-11-10 22:32.17: >>>
[ERROR] No solution for saga.1.0.0~alpha2: The actions to process have cyclic dependencies:
(score = 20)
2025-11-10 22:32.17: No solution for saga.1.0.0~alpha2: The actions to process have cyclic dependencies: