Build:
- 0
2026-01-27 18:59.19: New job: test codex.1.0~rc4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29259/head (0878f1e4934ec6f044a2e66b56cfff2fb96f2871)
on ubuntu-24.04-ocaml-4.14/riscv64
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:ubuntu-24.04-ocaml-4.14@sha256:f9fec8059f3b510b703a628032af0efc3934a77f7db71032798c756fa5a7da0d
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 codex.1.0~rc4 1.0~rc4
RUN opam reinstall 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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != '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 reinstall --with-test codex.1.0~rc4) || true
RUN opam reinstall --with-test --verbose 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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != '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:ubuntu-24.04-ocaml-4.14@sha256:f9fec8059f3b510b703a628032af0efc3934a77f7db71032798c756fa5a7da0d-codex.1.0~rc4-0878f1e4934ec6f044a2e66b56cfff2fb96f2871"
2026-01-27 18:59.19: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:f9fec8059f3b510b703a628032af0efc3934a77f7db71032798c756fa5a7da0d)
(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 codex.1.0~rc4 1.0~rc4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall 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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != '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 reinstall --with-test codex.1.0~rc4) || true"))
(run (shell "opam reinstall --with-test --verbose 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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != '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 18:59.20: Waiting for worker…
2026-01-27 19:52.18: Got resource from pool OCluster
Building on riscv-bm-04.sw.ci.dev
All commits already cached
Updating files: 14% (2707/19288)
Updating files: 15% (2894/19288)
Updating files: 16% (3087/19288)
Updating files: 17% (3279/19288)
Updating files: 18% (3472/19288)
Updating files: 19% (3665/19288)
Updating files: 20% (3858/19288)
Updating files: 21% (4051/19288)
Updating files: 22% (4244/19288)
Updating files: 23% (4437/19288)
Updating files: 24% (4630/19288)
Updating files: 25% (4822/19288)
Updating files: 26% (5015/19288)
Updating files: 27% (5208/19288)
Updating files: 27% (5236/19288)
Updating files: 28% (5401/19288)
Updating files: 29% (5594/19288)
Updating files: 30% (5787/19288)
Updating files: 31% (5980/19288)
Updating files: 32% (6173/19288)
Updating files: 33% (6366/19288)
Updating files: 34% (6558/19288)
Updating files: 35% (6751/19288)
Updating files: 36% (6944/19288)
Updating files: 37% (7137/19288)
Updating files: 38% (7330/19288)
Updating files: 39% (7523/19288)
Updating files: 39% (7668/19288)
Updating files: 40% (7716/19288)
Updating files: 41% (7909/19288)
Updating files: 42% (8101/19288)
Updating files: 43% (8294/19288)
Updating files: 44% (8487/19288)
Updating files: 45% (8680/19288)
Updating files: 46% (8873/19288)
Updating files: 47% (9066/19288)
Updating files: 48% (9259/19288)
Updating files: 49% (9452/19288)
Updating files: 50% (9644/19288)
Updating files: 51% (9837/19288)
Updating files: 51% (10015/19288)
Updating files: 52% (10030/19288)
Updating files: 53% (10223/19288)
Updating files: 54% (10416/19288)
Updating files: 55% (10609/19288)
Updating files: 56% (10802/19288)
Updating files: 57% (10995/19288)
Updating files: 58% (11188/19288)
Updating files: 59% (11380/19288)
Updating files: 60% (11573/19288)
Updating files: 61% (11766/19288)
Updating files: 62% (11959/19288)
Updating files: 63% (12152/19288)
Updating files: 63% (12284/19288)
Updating files: 64% (12345/19288)
Updating files: 65% (12538/19288)
Updating files: 66% (12731/19288)
Updating files: 67% (12923/19288)
Updating files: 68% (13116/19288)
Updating files: 69% (13309/19288)
Updating files: 70% (13502/19288)
Updating files: 71% (13695/19288)
Updating files: 72% (13888/19288)
Updating files: 73% (14081/19288)
Updating files: 74% (14274/19288)
Updating files: 74% (14348/19288)
Updating files: 75% (14466/19288)
Updating files: 76% (14659/19288)
Updating files: 77% (14852/19288)
Updating files: 78% (15045/19288)
Updating files: 79% (15238/19288)
Updating files: 80% (15431/19288)
Updating files: 81% (15624/19288)
Updating files: 82% (15817/19288)
Updating files: 83% (16010/19288)
Updating files: 84% (16202/19288)
Updating files: 85% (16395/19288)
Updating files: 85% (16569/19288)
Updating files: 86% (16588/19288)
Updating files: 87% (16781/19288)
Updating files: 88% (16974/19288)
Updating files: 89% (17167/19288)
Updating files: 90% (17360/19288)
Updating files: 91% (17553/19288)
Updating files: 92% (17745/19288)
Updating files: 93% (17938/19288)
Updating files: 94% (18131/19288)
Updating files: 95% (18324/19288)
Updating files: 96% (18517/19288)
Updating files: 97% (18710/19288)
Updating files: 97% (18822/19288)
Updating files: 98% (18903/19288)
Updating files: 99% (19096/19288)
Updating files: 100% (19288/19288)
Updating files: 100% (19288/19288), done.
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:ubuntu-24.04-ocaml-4.14@sha256:f9fec8059f3b510b703a628032af0efc3934a77f7db71032798c756fa5a7da0d)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-4.14@sha256:f9fec8059f3b510b703a628032af0efc3934a77f7db71032798c756fa5a7da0d' locally
docker.io/ocaml/opam@sha256:f9fec8059f3b510b703a628032af0efc3934a77f7db71032798c756fa5a7da0d: Pulling from ocaml/opam
f15139285886: Already exists
e26e66956cae: Already exists
4f306c750b46: Already exists
64a5fffbf9a8: Already exists
a9eebe3bfaa5: Already exists
cd6d6efc698e: Already exists
1c52eabf99a5: Already exists
6dba008e5679: Already exists
545d0085ef13: Already exists
99d323f6bd84: Already exists
97c031156f7c: Already exists
7b892960bda0: Already exists
abd2a9ec6058: Already exists
f196396876f0: Already exists
856e08924826: Already exists
8720d3a4cc0f: Already exists
8940fadae2ce: Already exists
8940fadae2ce: Already exists
4dc679ba40df: Already exists
3fd598e72267: Already exists
7ecaacef770a: Already exists
47b714601c25: Already exists
4f4fb700ef54: Already exists
455dd0e0479e: Already exists
a764d6948501: Already exists
493fe9266dda: Already exists
70955fafa2f5: Already exists
1e16acd42720: Already exists
4e3b6938a987: Already exists
1616bc88dc28: Already exists
401d508e1750: Already exists
c1b51755e60f: Already exists
747d1610b3fa: Already exists
e3e5146135cb: Already exists
47ab3074de7b: Already exists
c46cf4c06617: Already exists
8bab6f036e35: Already exists
475cee104833: Already exists
7c66ac26df77: Already exists
9e8824b5cb32: Already exists
cdc5f47365b3: Already exists
67cf3700cbab: Pulling fs layer
ccdb93eea9da: Pulling fs layer
9f28126347a0: Pulling fs layer
e4e7014d64dd: Pulling fs layer
e4e7014d64dd: Waiting
ccdb93eea9da: Verifying Checksum
ccdb93eea9da: Download complete
9f28126347a0: Verifying Checksum
9f28126347a0: Download complete
e4e7014d64dd: Verifying Checksum
e4e7014d64dd: Download complete
67cf3700cbab: Verifying Checksum
67cf3700cbab: Download complete
67cf3700cbab: Pull complete
ccdb93eea9da: Pull complete
9f28126347a0: Pull complete
e4e7014d64dd: Pull complete
Digest: sha256:f9fec8059f3b510b703a628032af0efc3934a77f7db71032798c756fa5a7da0d
Status: Downloaded newer image for ocaml/opam@sha256:f9fec8059f3b510b703a628032af0efc3934a77f7db71032798c756fa5a7da0d
2026-01-27 19:52.30 ---> using "472f2e20ca0970cbed312fcf3b341807bd41802bb4d2018af197f5f3deb36252" 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-27 19:52.30 ---> using "97a6e6ab2055dd5ceb4690e4667bc32fa028e417f6705131a862657a58102e09" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-27 19:52.30 ---> using "63a2ce97837a7a84551b4d687239275d0971c4207c5e59be43f791c5cf591e76" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-01-27 19:52.30 ---> using "c4bd4ca18e8051b72a3cdedbb1e0c50870c3223048ef7816f0cba0b8072fa22f" 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:52.30 ---> using "af52915c2c5c72ad4230c0294a44fcdf38496eec7bd80473c44f70112d341a49" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-27 19:52.36 ---> using "8d3ee3fdc27593c1be492780db42b434d0bb6e19a592c725dddc7f83cf0998f9" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-27 19:52.36 ---> using "a6d4380a349c8d3e65c2c32444aca0dc0ab6bb91825eef744bd9e5f6a6521ac8" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1480 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [911 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [932 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [588 kB]
- Fetched 4289 kB in 3s (1629 kB/s)
- Reading package lists...
-
2026-01-27 19:52.36 ---> using "51bf742a4bcbd01f7301540fa2891cd5b8de37118ade9708b1b4b0550f087fc3" from cache
/home/opam: (run (shell "opam pin add -k version -yn codex.1.0~rc4 1.0~rc4"))
codex is now pinned to version 1.0~rc4
2026-01-27 19:52.36 ---> using "c4a2deac644b25731b9bf189cb457a8d1a78e13e14e4064d2fb7298bed562597" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall 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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != '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"))
codex.1.0~rc4 is not installed. Install it? [Y/n] y
* Missing dependency:
- codex -> cudd
unmet availability conditions, e.g. 'os-family != "windows" & arch != "riscv64"'
No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall 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 "\"ubuntu-24.04\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != '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:53.46: Job failed: Failed: Build failed
2026-01-27 19:53.46: Log analysis:
2026-01-27 19:53.46: >>>
No solution found, exiting
(score = 100)
2026-01-27 19:53.46: [SKIP] Package not available