(for PR #28917)
2025-11-18 13:14.28: New job: test salto-analyzer.0.2, using opam 2.0
from https://github.com/ocaml/opam-repository.git#refs/pull/28917/head (3a30a99940d7e265723c7b3f522a70efdb9ec65a)
on debian-13-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/28917/head" && git reset --hard 3a30a999
git fetch origin master
git merge --no-edit 1c92c86556d4b9c73229d94763be9715317321bc
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c
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 salto-analyzer.0.2 0.2
RUN opam depext salto-analyzer.0.2 && opam reinstall salto-analyzer.0.2; \
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" != 'salto-analyzer.0.2' && 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 salto-analyzer.0.2 && opam reinstall --with-test salto-analyzer.0.2) || true
RUN opam depext --with-test salto-analyzer.0.2 && opam reinstall --with-test --verbose salto-analyzer.0.2; \
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" != 'salto-analyzer.0.2' && 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-18 13:14.28: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c-salto-analyzer.0.2-3a30a99940d7e265723c7b3f522a70efdb9ec65a"
2025-11-18 13:14.28: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c)
(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 salto-analyzer.0.2 0.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext salto-analyzer.0.2 && opam reinstall salto-analyzer.0.2;\
\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\" != 'salto-analyzer.0.2' && 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 salto-analyzer.0.2 && opam reinstall --with-test salto-analyzer.0.2) || true"))
(run (shell "opam depext --with-test salto-analyzer.0.2 && opam reinstall --with-test --verbose salto-analyzer.0.2;\
\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\" != 'salto-analyzer.0.2' && 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-18 13:14.28: Waiting for resource in pool OCluster
2025-11-18 13:14.28: Waiting for worker…
2025-11-18 13:14.30: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at 1c92c86556 Merge pull request #28847 from nikochiko/opam-publish-raga.0.1.0
Updating 1c92c86556..3a30a99940
Fast-forward
packages/salto-analyzer/salto-analyzer.0.2/opam | 64 +++++++++++++++++++++++++
1 file changed, 64 insertions(+)
create mode 100644 packages/salto-analyzer/salto-analyzer.0.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c' locally
docker.io/ocaml/opam@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c: Pulling from ocaml/opam
13cc39f8244a: Already exists
9d7c1cac6af4: Already exists
979e6521bf84: Already exists
b129e961d700: Already exists
9288fc69cd29: Already exists
b232c90b1855: Already exists
658a78f60f44: Already exists
b3e6010fbc4c: Already exists
e75ac7b73fdb: Already exists
f1dbfc01d8b6: Already exists
42e8958c94a5: Already exists
1c77fd15fa4b: Already exists
f8ae0ec2765e: Already exists
87b5808a8709: Already exists
6551add7b2f4: Already exists
a050a941214a: Already exists
da6cadefa7ea: Already exists
0a3e89137cf8: Already exists
cc34154fc322: Already exists
eb7661180f3a: Already exists
faad806bf7c5: Already exists
4f4fb700ef54: Already exists
fe5692607199: Already exists
caa548e7f855: Already exists
8ad66e641b14: Already exists
b9d5d27dc0b6: Already exists
788961b65661: Already exists
9ed95272e11f: Already exists
82c1497059a3: Already exists
8abbeded2fb9: Already exists
1276181ef5dc: Already exists
0bd63c9342a5: Already exists
0294cf425d8c: Already exists
def43d8fc04c: Already exists
c87ed18f9ca6: Already exists
056f995b50a2: Already exists
c9f03af6c585: Already exists
4e0df0b17574: Already exists
1fcd55c53252: Already exists
9fe15f147c9c: Already exists
ada2682c449c: Pulling fs layer
295973a65af5: Pulling fs layer
e7a455463b73: Pulling fs layer
98af01a2e2e5: Pulling fs layer
98af01a2e2e5: Waiting
295973a65af5: Verifying Checksum
295973a65af5: Download complete
e7a455463b73: Download complete
98af01a2e2e5: Download complete
ada2682c449c: Verifying Checksum
ada2682c449c: Download complete
ada2682c449c: Pull complete
295973a65af5: Pull complete
e7a455463b73: Pull complete
98af01a2e2e5: Pull complete
Digest: sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c
Status: Downloaded newer image for ocaml/opam@sha256:99907d462a916dc0195d51cfc4de28ffc4995497f1f069c9dde86b445ade484c
2025-11-18 13:16.05 ---> using "e1d8c7e6beb03face60eaf04e7070eb8fe39365c831388bb928a8a0dc291c14b" 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-18 13:16.05 ---> using "daa5c27b303555eb08e063616d44973741a7df82bbb32474a57820e41765a274" 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-18 13:16.05 ---> using "d880a3938fdc72a79b019ebd2eac9edd75752d6aad6907824e0c75a8f8f24f5c" 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 4.14
2025-11-18 13:16.05 ---> using "b39a6518b6397510c3ec25add8199a0600b01748d56dbf62e33c446913ee4dda" 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-18 13:16.05 ---> using "89ef2ffada4c2228b8f41fd0f0f76294214777eb5c05cd80349181ba79290445" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-18 13:16.06 ---> using "12bd02e7df1b1444ce4742c2b1d1e54b06f65338b488d013b06b7768c9c96d87" from cache
/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-18 13:16.06 ---> using "a7bc1b9741341ac2528b6751f96814232fe6b8c71ee4b35897c3c025616d89cf" from cache
/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
Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
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 trixie/main amd64 Packages [9670 kB]
Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [71.8 kB]
Fetched 9973 kB in 1s (7062 kB/s)
Reading package lists...
# OS package update successful
2025-11-18 13:16.06 ---> using "f136e2d9c0d9ff30685582641e9a50627cc860b5a1ef6c7101c63dc735e3e6dc" from cache
/home/opam: (run (shell "opam pin add -k version -yn salto-analyzer.0.2 0.2"))
salto-analyzer is now pinned to version 0.2
2025-11-18 13:16.06 ---> using "8a35f8fd79112d8ae81a591e069809a3a0218ce17e17168259659a150e74ba24" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext salto-analyzer.0.2 && opam reinstall salto-analyzer.0.2;\
\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\" != 'salto-analyzer.0.2' && 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:
libgmp-dev
pkg-config
The following command needs to be run through "sudo":
apt-get install -qq -yy libgmp-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 ... 20622 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 pkgconf-bin.
Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
Unpacking pkgconf-bin (1.8.1-4) ...
Selecting previously unselected package pkgconf:amd64.
Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
Unpacking pkgconf:amd64 (1.8.1-4) ...
Selecting previously unselected package pkg-config:amd64.
Preparing to unpack .../5-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 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) ...
# OS packages installation successful
salto-analyzer.0.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install ocamlbuild 0.16.1 [required by react]
- install seq base [required by saltoIL]
- install cmdliner 2.0.0 [required by salto-analyzer]
- install conf-gmp 5 [required by zarith]
- install ocamlfind 1.9.8 [required by ppx_deriving, zarith]
- install dune 3.20.2 [required by salto-analyzer]
- install zarith 1.13 [required by salto-analyzer]
- install topkg 1.1.1 [required by react]
- install zarith_stubs_js v0.16.1 [required by salto-analyzer]
- install yojson 3.0.0 [required by js_of_ocaml-compiler]
- install stdlib-shims 0.3.0 [required by ptset]
- install sexplib0 v0.16.0 [required by base]
- install re 1.14.0 [required by ppx_expect]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ocaml-compiler-libs v0.12.4 [required by saltoIL]
- install menhirSdk 20230608 [required by js_of_ocaml-compiler]
- install menhirLib 20230608 [required by js_of_ocaml-compiler]
- install jane-street-headers v0.16.0 [required by time_now]
- install hashset 1.0.1 [required by salto-analyzer]
- install hashcons 1.4.0 [required by salto-analyzer]
- install gen 1.1 [required by sedlex]
- install dmap 0.5 [required by salto-analyzer]
- install csexp 1.5.2 [required by salto-analyzer]
- install cppo 1.8.0 [required by ppx_deriving]
- install uutf 1.0.4 [required by tyxml]
- install react 1.2.2 [required by js_of_ocaml-tyxml]
- install ptset 1.0.1 [required by salto-analyzer]
- install ptmap 2.0.5 [required by saltoIL]
- install ppxlib 0.35.0 [required by ppx_expect, ppx_deriving, ppx_import]
- install menhir 20230608 [required by js_of_ocaml-compiler]
- install dune-configurator 3.20.2 [required by base]
- install tyxml 4.6.0 [required by js_of_ocaml-tyxml]
- install reactiveData 0.3.1 [required by js_of_ocaml-tyxml]
- install sedlex 3.7 [required by js_of_ocaml-compiler]
- install ppx_import 1.12.0 [required by salto-analyzer]
- install ppx_deriving 6.0.3 [required by salto-analyzer]
- install base v0.16.4 [required by salto-analyzer]
- install js_of_ocaml-compiler 5.9.1 [required by js_of_ocaml]
- install stdio v0.16.0 [required by ppx_expect]
- install saltoIL 0.2.0 [required by salto-analyzer]
- install ppx_sexp_conv v0.16.0 [required by ppx_base]
- install ppx_here v0.16.0 [required by ppx_expect]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_base]
- install ppx_cold v0.16.0 [required by ppx_base]
- install js_of_ocaml 5.9.1 [required by salto-analyzer]
- install ppx_optcomp v0.16.0 [required by time_now]
- install ppx_hash v0.16.0 [required by ppx_base]
- install ppx_assert v0.16.0 [required by jst-config]
- install js_of_ocaml-ppx 5.9.1 [required by salto-analyzer]
- install ppx_base v0.16.0 [required by time_now]
- install jst-config v0.16.0 [required by time_now]
- install js_of_ocaml-tyxml 5.9.1 [required by salto-analyzer]
- install ezjs_ace 0.1.1 [required by salto-analyzer]
- install time_now v0.16.0 [required by ppx_inline_test]
- install ppx_inline_test v0.16.1 [required by ppx_expect]
- install sexp_decode 0.7 [required by ez_dune_describe]
- install ppx_expect v0.16.2 [required by salto-analyzer]
- install ez_dune_describe 0.1 [required by salto-analyzer]
- install salto-analyzer 0.2*
===== 61 to install =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[base.v0.16.4] found in cache
[cmdliner.2.0.0] found in cache
[cppo.1.8.0] found in cache
[csexp.1.5.2] found in cache
[dmap.0.5] found in cache
[dune.3.20.2] found in cache
[dune-configurator.3.20.2] found in cache
[ez_dune_describe.0.1] found in cache
[ezjs_ace.0.1.1] found in cache
[gen.1.1] found in cache
[hashcons.1.4.0] found in cache
[hashset.1.0.1] found in cache
[jane-street-headers.v0.16.0] found in cache
[js_of_ocaml.5.9.1] found in cache
[js_of_ocaml-compiler.5.9.1] found in cache
[js_of_ocaml-ppx.5.9.1] found in cache
[js_of_ocaml-tyxml.5.9.1] found in cache
[jst-config.v0.16.0] found in cache
[menhir.20230608] found in cache
[menhirLib.20230608] found in cache
[menhirSdk.20230608] found in cache
[ocaml-compiler-libs.v0.12.4] found in cache
[ocamlbuild.0.16.1] found in cache
[ocamlfind.1.9.8] found in cache
[ppx_assert.v0.16.0] found in cache
[ppx_base.v0.16.0] found in cache
[ppx_cold.v0.16.0] found in cache
[ppx_compare.v0.16.0] found in cache
[ppx_derivers.1.2.1] found in cache
[ppx_deriving.6.0.3] found in cache
[ppx_enumerate.v0.16.0] found in cache
[ppx_expect.v0.16.2] found in cache
[ppx_globalize.v0.16.0] found in cache
[ppx_hash.v0.16.0] found in cache
[ppx_here.v0.16.0] found in cache
[ppx_import.1.12.0] found in cache
[ppx_inline_test.v0.16.1] found in cache
[ppx_optcomp.v0.16.0] found in cache
[ppx_sexp_conv.v0.16.0] found in cache
[ppxlib.0.35.0] found in cache
[ptmap.2.0.5] found in cache
[ptset.1.0.1] found in cache
[re.1.14.0] found in cache
[react.1.2.2] found in cache
[reactiveData.0.3.1] found in cache
[salto-analyzer.0.2] downloaded from https://salto.gitlabpages.inria.fr/salto-analyzer/releases/salto-analyzer-0.2.tbz
[saltoIL.0.2.0] found in cache
[sedlex.3.7] found in cache
[sexp_decode.0.7] found in cache
[sexplib0.v0.16.0] found in cache
[stdio.v0.16.0] found in cache
[stdlib-shims.0.3.0] found in cache
[time_now.v0.16.0] found in cache
[topkg.1.1.1] found in cache
[tyxml.4.6.0] found in cache
[uutf.1.0.4] found in cache
[yojson.3.0.0] found in cache
[zarith.1.13] found in cache
[zarith_stubs_js.v0.16.1] found in cache
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed seq.base
-> installed conf-gmp.5
-> installed cmdliner.2.0.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.13
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed react.1.2.2
-> installed dune.3.20.2
-> installed jane-street-headers.v0.16.0
-> installed csexp.1.5.2
-> installed gen.1.1
-> installed hashcons.1.4.0
-> installed cppo.1.8.0
-> installed hashset.1.0.1
-> installed menhirLib.20230608
-> installed menhirSdk.20230608
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed reactiveData.0.3.1
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed zarith_stubs_js.v0.16.1
-> installed dmap.0.5
-> installed ptmap.2.0.5
-> installed ptset.1.0.1
-> installed dune-configurator.3.20.2
-> installed tyxml.4.6.0
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed menhir.20230608
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_import.1.12.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed sedlex.3.7
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed saltoIL.0.2.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed sexp_decode.0.7
-> installed js_of_ocaml-compiler.5.9.1
-> installed ppx_expect.v0.16.2
-> installed ez_dune_describe.0.1
-> installed js_of_ocaml.5.9.1
-> installed js_of_ocaml-ppx.5.9.1
-> installed ezjs_ace.0.1.1
-> installed js_of_ocaml-tyxml.5.9.1
-> installed salto-analyzer.0.2
Done.
# Run eval $(opam env) to update the current shell environment
2025-11-18 13:18.27 ---> saved as "2d09a5d78d63c1e34e7afa54f801f1f6840c8dc229938d1b82716f10250064d9"
/home/opam: (run (network host)
(shell "(opam depext --with-test salto-analyzer.0.2 && opam reinstall --with-test salto-analyzer.0.2) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] No solution for salto-analyzer.0.2: The actions to process have cyclic dependencies:
- install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install js_of_ocaml-compiler.5.9.1
- install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install js_of_ocaml.5.9.1
- install sedlex.3.7 -> install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install sedlex.3.7
- install sedlex.3.7 -> install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install ppx_assert.v0.16.0 -> install jst-config.v0.16.0 -> install time_now.v0.16.0 -> install ppx_inline_test.v0.16.1 -> install ppx_expect.v0.16.2 -> install sedlex.3.7
- install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install ppx_assert.v0.16.0 -> install jst-config.v0.16.0 -> install time_now.v0.16.0 -> install ppx_inline_test.v0.16.1 -> install ppx_expect.v0.16.2 -> install re.1.14.0
- install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install ppx_assert.v0.16.0 -> install jst-config.v0.16.0 -> install time_now.v0.16.0 -> install ppx_inline_test.v0.16.1 -> install ppx_expect.v0.16.2 -> install js_of_ocaml-compiler.5.9.1
- install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install ppx_assert.v0.16.0 -> install jst-config.v0.16.0 -> install time_now.v0.16.0 -> install ppx_inline_test.v0.16.1 -> install ppx_expect.v0.16.2 -> install js_of_ocaml.5.9.1
- install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install js_of_ocaml-compiler.5.9.1
- install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install js_of_ocaml.5.9.1
- install alcotest.1.9.1 -> install qcheck.0.27 -> install gen.1.1 -> install sedlex.3.7 -> install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install alcotest.1.9.1
Command failed: opam list --readonly --with-test --external '--resolve=salto-analyzer.0.2' --color=never returned 20
2025-11-18 13:18.32 ---> saved as "2d516565cd27f6dcdfba5ea64c11aca37b9aad6ecaf6cfa8e5e8b1f8f1eb23de"
/home/opam: (run (shell "opam depext --with-test salto-analyzer.0.2 && opam reinstall --with-test --verbose salto-analyzer.0.2;\
\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\" != 'salto-analyzer.0.2' && 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 salto-analyzer.0.2: The actions to process have cyclic dependencies:
- install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install js_of_ocaml-compiler.5.9.1
- install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install js_of_ocaml.5.9.1
- install sedlex.3.7 -> install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install sedlex.3.7
- install sedlex.3.7 -> install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install ppx_assert.v0.16.0 -> install jst-config.v0.16.0 -> install time_now.v0.16.0 -> install ppx_inline_test.v0.16.1 -> install ppx_expect.v0.16.2 -> install sedlex.3.7
- install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install ppx_assert.v0.16.0 -> install jst-config.v0.16.0 -> install time_now.v0.16.0 -> install ppx_inline_test.v0.16.1 -> install ppx_expect.v0.16.2 -> install re.1.14.0
- install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install ppx_assert.v0.16.0 -> install jst-config.v0.16.0 -> install time_now.v0.16.0 -> install ppx_inline_test.v0.16.1 -> install ppx_expect.v0.16.2 -> install js_of_ocaml-compiler.5.9.1
- install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install ppx_assert.v0.16.0 -> install jst-config.v0.16.0 -> install time_now.v0.16.0 -> install ppx_inline_test.v0.16.1 -> install ppx_expect.v0.16.2 -> install js_of_ocaml.5.9.1
- install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install js_of_ocaml-compiler.5.9.1
- install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install cinaps.v0.15.1 -> install ppxlib.0.35.0 -> install js_of_ocaml.5.9.1
- install alcotest.1.9.1 -> install qcheck.0.27 -> install gen.1.1 -> install sedlex.3.7 -> install js_of_ocaml-compiler.5.9.1 -> install js_of_ocaml.5.9.1 -> install re.1.14.0 -> install alcotest.1.9.1
Command failed: opam list --readonly --with-test --external '--resolve=salto-analyzer.0.2' --color=never returned 20
"/usr/bin/env" "bash" "-c" "opam depext --with-test salto-analyzer.0.2 && opam reinstall --with-test --verbose salto-analyzer.0.2;
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" != 'salto-analyzer.0.2' && 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-18 13:18.43: Job failed: Failed: Build failed
2025-11-18 13:18.43: Log analysis:
2025-11-18 13:18.43: >>>
[ERROR] No solution for salto-analyzer.0.2: The actions to process have cyclic dependencies:
(score = 20)
2025-11-18 13:18.43: >>>
[ERROR] No solution for salto-analyzer.0.2: The actions to process have cyclic dependencies:
(score = 20)
2025-11-18 13:18.43: No solution for salto-analyzer.0.2: The actions to process have cyclic dependencies: