Build:
- 0
2026-01-27 18:59.19: New job: test binsec_codex.1.0-rc4, using opam 2.0
from https://github.com/ocaml/opam-repository.git#refs/pull/29259/head (0878f1e4934ec6f044a2e66b56cfff2fb96f2871)
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/29259/head" && git reset --hard 0878f1e4
git fetch origin master
git merge --no-edit 88150787b3c9df767fd8dadf5d416641f8ee58f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
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 binsec_codex.1.0-rc4 1.0-rc4
RUN opam depext binsec_codex.1.0-rc4 && opam reinstall binsec_codex.1.0-rc4; \
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" != 'binsec_codex.1.0-rc4' && 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 binsec_codex.1.0-rc4 && opam reinstall --with-test binsec_codex.1.0-rc4) || true
RUN opam depext --with-test binsec_codex.1.0-rc4 && opam reinstall --with-test --verbose binsec_codex.1.0-rc4; \
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" != 'binsec_codex.1.0-rc4' && 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-27 18:59.19: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012-binsec_codex.1.0-rc4-0878f1e4934ec6f044a2e66b56cfff2fb96f2871"
2026-01-27 18:59.19: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012)
(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 binsec_codex.1.0-rc4 1.0-rc4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext binsec_codex.1.0-rc4 && opam reinstall binsec_codex.1.0-rc4;\
\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\" != 'binsec_codex.1.0-rc4' && 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 binsec_codex.1.0-rc4 && opam reinstall --with-test binsec_codex.1.0-rc4) || true"))
(run (shell "opam depext --with-test binsec_codex.1.0-rc4 && opam reinstall --with-test --verbose binsec_codex.1.0-rc4;\
\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\" != 'binsec_codex.1.0-rc4' && 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-27 18:59.19: Waiting for resource in pool OCluster
2026-01-27 19:12.51: Waiting for worker…
2026-01-27 19:17.22: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 88150787b3 Merge pull request #29287 from dinosaure/release-git-kv-v0.2.1
Updating 88150787b3..0878f1e493
Fast-forward
packages/binsec_codex/binsec_codex.1.0-rc4/opam | 54 ++++++++++++++
packages/codex/codex.1.0~rc4/opam | 91 +++++++++++++++++++++++
packages/frama_c_codex/frama_c_codex.1.0-rc4/opam | 55 ++++++++++++++
3 files changed, 200 insertions(+)
create mode 100644 packages/binsec_codex/binsec_codex.1.0-rc4/opam
create mode 100644 packages/codex/codex.1.0~rc4/opam
create mode 100644 packages/frama_c_codex/frama_c_codex.1.0-rc4/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012' locally
docker.io/ocaml/opam@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012: Pulling from ocaml/opam
32ef12fa09dd: Pulling fs layer
32ef12fa09dd: Waiting
32ef12fa09dd: Verifying Checksum
32ef12fa09dd: Download complete
32ef12fa09dd: Pull complete
Digest: sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
Status: Downloaded newer image for ocaml/opam@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
2026-01-27 19:39.42 ---> using "3fd264bad5105e854dbd96d70e0cfc1d39526afdd30eb5071f64946db0e5017f" 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"))
2026-01-27 19:39.42 ---> using "70c27e564b1e5cf568062c555c0e94b415117e42d56be11c6457e8193b45ceda" 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)
2026-01-27 19:39.42 ---> using "24904cbbbc7eacb8597a99b3e84ca485f6bf6d76dd5affbfdbfbbfce1dc0fcd6" 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
2026-01-27 19:39.42 ---> using "b15d1895a9104a51ec6eec2bb4395818aaa5cf715ab8f67b2b96a61df035cc40" 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-27 19:39.42 ---> using "8a9a330f504e43f89742bace8203b3fa61b4493c9cff8434f62f668a5e2e7afc" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-27 19:39.43 ---> using "44c79049e1523e9fc512bdabdc7a03bd941b656324f921c9332700dc5e7e8fa5" 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)
2026-01-27 19:39.43 ---> using "753b1872cf6e8aa1aaf86ceab918476564309c56329ec861757078ddeae34579" 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
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 [97.9 kB]
Fetched 189 kB in 0s (1920 kB/s)
Reading package lists...
# OS package update successful
2026-01-27 19:39.43 ---> using "ad67fb20260585fc7f33d0c0e7a1d8072f00379e52aa3e7164ac17f451075277" from cache
/home/opam: (run (shell "opam pin add -k version -yn binsec_codex.1.0-rc4 1.0-rc4"))
binsec_codex is now pinned to version 1.0-rc4
2026-01-27 19:39.43 ---> using "3eba3f1495fcad4671d956aca773d488c44d4e80d5452bf0c2197bb859ae4579" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext binsec_codex.1.0-rc4 && opam reinstall binsec_codex.1.0-rc4;\
\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\" != 'binsec_codex.1.0-rc4' && 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 ... 20623 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+deb13u1) ...
# OS packages installation successful
binsec_codex.1.0-rc4 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install dune 3.21.0 [required by binsec_codex]
- install conf-gmp 5 [required by zarith]
- install ocamlfind 1.9.8 [required by fmt, grain_dypgen, zarith, ppx_deriving]
- install ocamlbuild 0.16.1 [required by fmt]
- install cmdliner 2.1.0 [required by fmt]
- install conf-pkg-config 4 [required by zarith]
- install yojson 3.0.0 [required by js_of_ocaml-compiler]
- install stdlib-shims 0.3.0 [required by pacomb]
- install sexplib0 v0.16.0 [required by base]
- install qcheck-core 0.91 [required by codex]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install pp 2.0.0 [required by dune-private-libs]
- install patricia-tree 0.11.0 [required by codex]
- install ordering 3.20.2 [required by dyn, stdune]
- install ocamlgraph 2.2.0 [required by binsec_codex]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install menhirSdk 20230608 [required by menhir]
- install menhirLib 20230608 [required by menhir]
- install jane-street-headers v0.16.0 [required by time_now]
- install cudd 0.1.3 [required by codex]
- install csexp 1.5.2 [required by dune-private-libs]
- install cppo 1.8.0 [required by ppx_deriving]
- install camlp-streams 5.0.1 [required by codex]
- install bheap 2.0.0 [required by codex]
- install base64 3.5.2 [required by codex]
- install ISO8601 0.2.6 [required by toml]
- install grain_dypgen 0.2 [required by binsec]
- install topkg 1.1.1 [required by fmt]
- install gen 0.5 [required by sedlex]
- install zarith 1.14 [required by binsec_codex]
- install dyn 3.20.2 [required by dune-private-libs]
- install ppxlib 0.35.0 [required by codex]
- install menhir 20230608 [required by binsec]
- install dune-configurator 3.21.0 [required by base]
- install fmt 0.11.0 [required by codex]
- install stdune 3.20.2 [required by dune-private-libs]
- install sedlex 3.7 [required by js_of_ocaml-compiler]
- install ppx_deriving 6.0.3 [required by codex]
- install pacomb 1.3 [required by codex]
- install toml 7.1.0 [required by binsec]
- install base v0.16.4 [required by ppx_inline_test]
- install dune-private-libs 3.20.2 [required by dune-site]
- install js_of_ocaml-compiler 6.2.0 [required by js_of_ocaml, vdom]
- install stdio v0.16.0 [required by ppx_optcomp]
- install ppx_sexp_conv v0.16.0 [required by ppx_base]
- install ppx_here v0.16.0 [required by ppx_assert]
- 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 dune-site 3.20.2 [required by binsec]
- install ojs 1.1.5 [required by vdom]
- install js_of_ocaml 6.2.0 [required by codex]
- 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 binsec 0.10.1 [required by binsec_codex]
- install gen_js_api 1.1.5 [required by vdom]
- install js_of_ocaml-ppx 6.2.0 [required by codex]
- install ppx_base v0.16.0 [required by time_now]
- install jst-config v0.16.0 [required by time_now]
- install vdom 0.3 [required by codex]
- install time_now v0.16.0 [required by ppx_inline_test]
- install ppx_inline_test v0.16.1 [required by codex]
- install codex 1.0~rc4 [required by binsec_codex]
- install binsec_codex 1.0-rc4*
===== 66 to install =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[base.v0.16.4] found in cache
[base64.3.5.2] found in cache
[bheap.2.0.0] found in cache
[binsec.0.10.1] found in cache
[binsec_codex.1.0-rc4] found in cache
[camlp-streams.5.0.1] found in cache
[cmdliner.2.1.0] found in cache
[codex.1.0~rc4] found in cache
[cppo.1.8.0] found in cache
[csexp.1.5.2] found in cache
[cudd.0.1.3] found in cache
[dune.3.21.0] found in cache
[dune-configurator.3.21.0] found in cache
[dune-private-libs.3.20.2] found in cache
[dune-site.3.20.2] found in cache
[dyn.3.20.2] found in cache
[fmt.0.11.0] found in cache
[gen.0.5] found in cache
[gen_js_api.1.1.5] found in cache
[grain_dypgen.0.2] found in cache
[ISO8601.0.2.6] found in cache
[jane-street-headers.v0.16.0] found in cache
[js_of_ocaml.6.2.0] found in cache
[js_of_ocaml-compiler.6.2.0] found in cache
[js_of_ocaml-ppx.6.2.0] 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
[ocamlgraph.2.2.0] found in cache
[ojs.1.1.5] found in cache
[ordering.3.20.2] found in cache
[pacomb.1.3] found in cache
[patricia-tree.0.11.0] found in cache
[pp.2.0.0] 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_globalize.v0.16.0] found in cache
[ppx_hash.v0.16.0] found in cache
[ppx_here.v0.16.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
[qcheck-core.0.91] found in cache
[sedlex.3.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
[stdune.3.20.2] found in cache
[time_now.v0.16.0] found in cache
[toml.7.1.0] found in cache
[topkg.1.1.1] found in cache
[vdom.0.3] found in cache
[yojson.3.0.0] found in cache
[zarith.1.14] found in cache
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed grain_dypgen.0.2
-> installed topkg.1.1.1
-> installed gen.0.5
-> installed fmt.0.11.0
-> installed dune.3.21.0
-> installed base64.3.5.2
-> installed bheap.2.0.0
-> installed camlp-streams.5.0.1
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed ISO8601.0.2.6
-> installed jane-street-headers.v0.16.0
-> installed menhirLib.20230608
-> installed menhirSdk.20230608
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocamlgraph.2.2.0
-> installed patricia-tree.0.11.0
-> installed pp.2.0.0
-> installed ppx_derivers.1.2.1
-> installed qcheck-core.0.91
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed ordering.3.20.2
-> installed dune-configurator.3.21.0
-> installed dyn.3.20.2
-> installed stdune.3.20.2
-> installed menhir.20230608
-> installed base.v0.16.4
-> installed ppxlib.0.35.0
-> installed toml.7.1.0
-> installed stdio.v0.16.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed dune-private-libs.3.20.2
-> installed cudd.0.1.3
-> installed ppx_deriving.6.0.3
-> installed pacomb.1.3
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.7
-> installed ppx_hash.v0.16.0
-> installed dune-site.3.20.2
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed js_of_ocaml-compiler.6.2.0
-> installed ojs.1.1.5
-> installed binsec.0.10.1
-> installed gen_js_api.1.1.5
-> installed vdom.0.3
-> installed js_of_ocaml.6.2.0
-> installed js_of_ocaml-ppx.6.2.0
-> installed codex.1.0~rc4
-> installed binsec_codex.1.0-rc4
Done.
# Run eval $(opam env) to update the current shell environment
2026-01-27 19:40.54 ---> saved as "ea3d0a8eb8577b64793f6acb136503420f00b44ce53ce2f058893f77dca1a06e"
/home/opam: (run (network host)
(shell "(opam depext --with-test binsec_codex.1.0-rc4 && opam reinstall --with-test binsec_codex.1.0-rc4) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
[ERROR] No solution for binsec_codex.1.0-rc4: The following dependencies couldn't be met:
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> ppxlib (< 0.26.0 | >= 0.37) -> ocaml < 4.14
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> ppxlib (< 0.26.0 | >= 0.37) -> ocaml-migrate-parsetree < 2.0.0 -> ocaml < 4.13
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> ppxlib (< 0.26.0 | >= 0.37) -> sexplib0 < v0.15
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> ocaml-migrate-parsetree < 2.0.0 -> ocaml < 4.13
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> js_of_ocaml-compiler < 6.0 -> ocaml < 4.14
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_sexp_conv >= v0.16 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_sexp_conv >= v0.16 -> sexplib0 (>= v0.16 & < v0.17)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> sexplib0 < v0.15
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> ocaml-migrate-parsetree < 2.0.0 -> ocaml < 4.13
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> ocaml < 4.14
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> base < v0.16.0 -> ocaml < 4.14
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> base < v0.16.0 -> sexplib0 < v0.16
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> js_of_ocaml >= 6.0.0 -> js_of_ocaml-compiler >= 6.0.1 -> ppx_expect >= v0.16.1 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of js_of_ocaml satisfies the constraints
- No available version of js_of_ocaml-compiler satisfies the constraints
- No available version of ppxlib satisfies the constraints
- No available version of sexplib0 satisfies the constraints
- ppx_expect (>= v0.16.1 & < v0.17.0) is in conflict with js_of_ocaml-compiler < 5.8
Command failed: opam list --readonly --with-test --external '--resolve=binsec_codex.1.0-rc4' --color=never returned 20
2026-01-27 19:40.58 ---> saved as "e5d20e0792dbda7e2a7de1657ceee8c1c19019dadd82df1dd50cdf59c269933a"
/home/opam: (run (shell "opam depext --with-test binsec_codex.1.0-rc4 && opam reinstall --with-test --verbose binsec_codex.1.0-rc4;\
\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\" != 'binsec_codex.1.0-rc4' && 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 binsec_codex.1.0-rc4: The following dependencies couldn't be met:
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> ppxlib (< 0.26.0 | >= 0.37) -> ocaml < 4.14
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> ppxlib (< 0.26.0 | >= 0.37) -> ocaml-migrate-parsetree < 2.0.0 -> ocaml < 4.13
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> ppxlib (< 0.26.0 | >= 0.37) -> sexplib0 < v0.15
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> ocaml-migrate-parsetree < 2.0.0 -> ocaml < 4.13
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> vdom -> gen_js_api >= 1.0.7 -> js_of_ocaml-compiler < 6.0 -> ocaml < 4.14
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_sexp_conv >= v0.16 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_sexp_conv >= v0.16 -> sexplib0 (>= v0.16 & < v0.17)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> sexplib0 < v0.15
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> ocaml-migrate-parsetree < 2.0.0 -> ocaml < 4.13
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> ocaml < 4.14
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> base < v0.16.0 -> ocaml < 4.14
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ppx_globalize -> ppxlib < 0.36.0 -> base < v0.16.0 -> sexplib0 < v0.16
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> time_now >= v0.16 -> ppx_base >= v0.16 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> patricia-tree >= 0.11.0 -> ppx_inline_test >= v0.16.0 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
- binsec_codex -> codex -> js_of_ocaml >= 6.0.0 -> js_of_ocaml-compiler >= 6.0.1 -> ppx_expect >= v0.16.1 -> ocaml >= 5.1.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of js_of_ocaml satisfies the constraints
- No available version of js_of_ocaml-compiler satisfies the constraints
- No available version of ppxlib satisfies the constraints
- No available version of sexplib0 satisfies the constraints
- ppx_expect (>= v0.16.1 & < v0.17.0) is in conflict with js_of_ocaml-compiler < 5.8
Command failed: opam list --readonly --with-test --external '--resolve=binsec_codex.1.0-rc4' --color=never returned 20
"/usr/bin/env" "bash" "-c" "opam depext --with-test binsec_codex.1.0-rc4 && opam reinstall --with-test --verbose binsec_codex.1.0-rc4;
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" != 'binsec_codex.1.0-rc4' && 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
2026-01-27 19:41.06: Job failed: Failed: Build failed
2026-01-27 19:41.06: Log analysis:
2026-01-27 19:41.06: >>>
[ERROR] No solution for binsec_codex.1.0-rc4: The following dependencies couldn't be met:
(score = 100)
2026-01-27 19:41.06: >>>
[ERROR] No solution for binsec_codex.1.0-rc4: The following dependencies couldn't be met:
(score = 100)
2026-01-27 19:41.06: [SKIP] Package not available