Build:
- 1
- 0
2026-04-21 13:04.14: New job: test colombe.0.13.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29766/head (3fb0fc7d2af365507d0f2a2d8f40940c65f4c4dc)
on ubuntu-24.04-ocaml-5.4/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/29766/head" && git reset --hard 3fb0fc7d
git fetch origin master
git merge --no-edit bcc5474b8e250f0ad1509312774b97007a6448f5
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:decaec29a4cd049083a7ddb392ab182116707e4bcc4b17470f70542991f2248b
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 colombe.0.13.0 0.13.0
RUN opam reinstall colombe.0.13.0; \
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" != 'colombe.0.13.0' && 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 colombe.0.13.0) || true
RUN opam reinstall --with-test --verbose colombe.0.13.0; \
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" != 'colombe.0.13.0' && 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-04-21 13:04.14: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:decaec29a4cd049083a7ddb392ab182116707e4bcc4b17470f70542991f2248b-colombe.0.13.0-3fb0fc7d2af365507d0f2a2d8f40940c65f4c4dc"
2026-04-21 13:04.14: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:decaec29a4cd049083a7ddb392ab182116707e4bcc4b17470f70542991f2248b)
(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 colombe.0.13.0 0.13.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colombe.0.13.0;\
\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\" != 'colombe.0.13.0' && 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 colombe.0.13.0) || true"))
(run (shell "opam reinstall --with-test --verbose colombe.0.13.0;\
\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\" != 'colombe.0.13.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-21 13:04.14: Waiting for resource in pool OCluster
2026-04-21 13:04.14: Waiting for worker…
2026-04-21 14:19.25: Got resource from pool OCluster
Building on riscv-bm-01.sw.ci.dev
All commits already cached
Updating files: 14% (2695/18781)
Updating files: 15% (2818/18781)
Updating files: 16% (3005/18781)
Updating files: 17% (3193/18781)
Updating files: 18% (3381/18781)
Updating files: 19% (3569/18781)
Updating files: 20% (3757/18781)
Updating files: 21% (3945/18781)
Updating files: 22% (4132/18781)
Updating files: 23% (4320/18781)
Updating files: 24% (4508/18781)
Updating files: 25% (4696/18781)
Updating files: 26% (4884/18781)
Updating files: 27% (5071/18781)
Updating files: 27% (5248/18781)
Updating files: 28% (5259/18781)
Updating files: 29% (5447/18781)
Updating files: 30% (5635/18781)
Updating files: 31% (5823/18781)
Updating files: 32% (6010/18781)
Updating files: 33% (6198/18781)
Updating files: 34% (6386/18781)
Updating files: 35% (6574/18781)
Updating files: 36% (6762/18781)
Updating files: 37% (6949/18781)
Updating files: 38% (7137/18781)
Updating files: 39% (7325/18781)
Updating files: 40% (7513/18781)
Updating files: 41% (7701/18781)
Updating files: 41% (7787/18781)
Updating files: 42% (7889/18781)
Updating files: 43% (8076/18781)
Updating files: 44% (8264/18781)
Updating files: 45% (8452/18781)
Updating files: 46% (8640/18781)
Updating files: 47% (8828/18781)
Updating files: 48% (9015/18781)
Updating files: 49% (9203/18781)
Updating files: 50% (9391/18781)
Updating files: 51% (9579/18781)
Updating files: 52% (9767/18781)
Updating files: 53% (9954/18781)
Updating files: 53% (10109/18781)
Updating files: 54% (10142/18781)
Updating files: 55% (10330/18781)
Updating files: 56% (10518/18781)
Updating files: 57% (10706/18781)
Updating files: 58% (10893/18781)
Updating files: 59% (11081/18781)
Updating files: 60% (11269/18781)
Updating files: 61% (11457/18781)
Updating files: 62% (11645/18781)
Updating files: 63% (11833/18781)
Updating files: 64% (12020/18781)
Updating files: 65% (12208/18781)
Updating files: 66% (12396/18781)
Updating files: 66% (12448/18781)
Updating files: 67% (12584/18781)
Updating files: 68% (12772/18781)
Updating files: 69% (12959/18781)
Updating files: 70% (13147/18781)
Updating files: 71% (13335/18781)
Updating files: 72% (13523/18781)
Updating files: 73% (13711/18781)
Updating files: 74% (13898/18781)
Updating files: 75% (14086/18781)
Updating files: 76% (14274/18781)
Updating files: 77% (14462/18781)
Updating files: 78% (14650/18781)
Updating files: 78% (14793/18781)
Updating files: 79% (14837/18781)
Updating files: 80% (15025/18781)
Updating files: 81% (15213/18781)
Updating files: 82% (15401/18781)
Updating files: 83% (15589/18781)
Updating files: 84% (15777/18781)
Updating files: 85% (15964/18781)
Updating files: 86% (16152/18781)
Updating files: 87% (16340/18781)
Updating files: 88% (16528/18781)
Updating files: 89% (16716/18781)
Updating files: 90% (16903/18781)
Updating files: 91% (17091/18781)
Updating files: 91% (17177/18781)
Updating files: 92% (17279/18781)
Updating files: 93% (17467/18781)
Updating files: 94% (17655/18781)
Updating files: 95% (17842/18781)
Updating files: 96% (18030/18781)
Updating files: 97% (18218/18781)
Updating files: 98% (18406/18781)
Updating files: 99% (18594/18781)
Updating files: 100% (18781/18781)
Updating files: 100% (18781/18781), done.
HEAD is now at bcc5474b8e Merge pull request #29769 from kit-ty-kate/camldiets-ocaml-5.5
Merge made by the 'ort' strategy.
packages/colombe/colombe.0.13.0/opam | 39 ++++++++++++++++++++
packages/msendmail/msendmail.0.13.0/opam | 37 +++++++++++++++++++
packages/sendmail-lwt/sendmail-lwt.0.13.0/opam | 39 ++++++++++++++++++++
.../sendmail-miou-unix.0.13.0/opam | 37 +++++++++++++++++++
.../sendmail-mirage/sendmail-mirage.0.13.0/opam | 40 +++++++++++++++++++++
packages/sendmail/sendmail.0.13.0/opam | 42 ++++++++++++++++++++++
6 files changed, 234 insertions(+)
create mode 100644 packages/colombe/colombe.0.13.0/opam
create mode 100644 packages/msendmail/msendmail.0.13.0/opam
create mode 100644 packages/sendmail-lwt/sendmail-lwt.0.13.0/opam
create mode 100644 packages/sendmail-miou-unix/sendmail-miou-unix.0.13.0/opam
create mode 100644 packages/sendmail-mirage/sendmail-mirage.0.13.0/opam
create mode 100644 packages/sendmail/sendmail.0.13.0/opam
(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:decaec29a4cd049083a7ddb392ab182116707e4bcc4b17470f70542991f2248b)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:decaec29a4cd049083a7ddb392ab182116707e4bcc4b17470f70542991f2248b' locally
docker.io/ocaml/opam@sha256:decaec29a4cd049083a7ddb392ab182116707e4bcc4b17470f70542991f2248b: Pulling from ocaml/opam
a7f0c7437445: Pulling fs layer
b95ff8c2c232: Pulling fs layer
0dd328c56979: Pulling fs layer
99ba642e9955: Pulling fs layer
35e00406250f: Pulling fs layer
bbd161632c8a: Pulling fs layer
35c76de94675: Pulling fs layer
284f652640f7: Pulling fs layer
13326dce54d9: Pulling fs layer
0659d9752885: Pulling fs layer
b1bab86f13e4: Pulling fs layer
d4fe32301903: Pulling fs layer
1db91f94c1ed: Pulling fs layer
d93414d3c5ed: Pulling fs layer
6ec94b618e81: Pulling fs layer
434d78d447a1: Pulling fs layer
d0660b68b734: Pulling fs layer
5a84282772df: Pulling fs layer
f46a113fe03c: Pulling fs layer
5be0969dffa2: Pulling fs layer
97277e4b1414: Pulling fs layer
4f4fb700ef54: Pulling fs layer
6465acf3305d: Pulling fs layer
bc01b654e43c: Pulling fs layer
0c8af54b9a3d: Pulling fs layer
c25c59dc6096: Pulling fs layer
b876948298fc: Pulling fs layer
bb66042bfc04: Pulling fs layer
40b553d28ee4: Pulling fs layer
de0587e4d11b: Pulling fs layer
55cf0023cd90: Pulling fs layer
340ac274248c: Pulling fs layer
4e2d137afa62: Pulling fs layer
f54581570561: Pulling fs layer
76f30deeddbf: Pulling fs layer
17b1245ed169: Pulling fs layer
51dc9035c07e: Pulling fs layer
65a59322c41c: Pulling fs layer
f489a234bde9: Pulling fs layer
104b1fec8388: Pulling fs layer
2e9282637d53: Pulling fs layer
36e830c6ae14: Pulling fs layer
5c3ae8136812: Pulling fs layer
a7c2dba290f1: Pulling fs layer
632d540b7d35: Pulling fs layer
2a6af4a57983: Pulling fs layer
02c100e0c201: Pulling fs layer
97277e4b1414: Waiting
4f4fb700ef54: Waiting
6465acf3305d: Waiting
bc01b654e43c: Waiting
0c8af54b9a3d: Waiting
c25c59dc6096: Waiting
b876948298fc: Waiting
bb66042bfc04: Waiting
40b553d28ee4: Waiting
de0587e4d11b: Waiting
55cf0023cd90: Waiting
340ac274248c: Waiting
4e2d137afa62: Waiting
f54581570561: Waiting
76f30deeddbf: Waiting
17b1245ed169: Waiting
51dc9035c07e: Waiting
65a59322c41c: Waiting
f489a234bde9: Waiting
104b1fec8388: Waiting
2e9282637d53: Waiting
36e830c6ae14: Waiting
5c3ae8136812: Waiting
a7c2dba290f1: Waiting
632d540b7d35: Waiting
2a6af4a57983: Waiting
02c100e0c201: Waiting
99ba642e9955: Waiting
35e00406250f: Waiting
bbd161632c8a: Waiting
35c76de94675: Waiting
284f652640f7: Waiting
13326dce54d9: Waiting
0659d9752885: Waiting
b1bab86f13e4: Waiting
d4fe32301903: Waiting
1db91f94c1ed: Waiting
d93414d3c5ed: Waiting
6ec94b618e81: Waiting
434d78d447a1: Waiting
d0660b68b734: Waiting
5a84282772df: Waiting
f46a113fe03c: Waiting
5be0969dffa2: Waiting
0dd328c56979: Verifying Checksum
0dd328c56979: Download complete
b95ff8c2c232: Download complete
99ba642e9955: Verifying Checksum
99ba642e9955: Download complete
a7f0c7437445: Verifying Checksum
a7f0c7437445: Download complete
35e00406250f: Verifying Checksum
35e00406250f: Download complete
284f652640f7: Verifying Checksum
284f652640f7: Download complete
35c76de94675: Verifying Checksum
35c76de94675: Download complete
13326dce54d9: Verifying Checksum
13326dce54d9: Download complete
0659d9752885: Download complete
d4fe32301903: Verifying Checksum
d4fe32301903: Download complete
a7f0c7437445: Pull complete
b95ff8c2c232: Pull complete
0dd328c56979: Pull complete
b1bab86f13e4: Verifying Checksum
b1bab86f13e4: Download complete
1db91f94c1ed: Download complete
6ec94b618e81: Verifying Checksum
6ec94b618e81: Download complete
434d78d447a1: Verifying Checksum
434d78d447a1: Download complete
d93414d3c5ed: Verifying Checksum
d93414d3c5ed: Download complete
99ba642e9955: Pull complete
35e00406250f: Pull complete
bbd161632c8a: Verifying Checksum
bbd161632c8a: Download complete
f46a113fe03c: Download complete
d0660b68b734: Verifying Checksum
d0660b68b734: Download complete
5a84282772df: Download complete
5be0969dffa2: Verifying Checksum
5be0969dffa2: Download complete
97277e4b1414: Verifying Checksum
97277e4b1414: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
6465acf3305d: Verifying Checksum
6465acf3305d: Download complete
bc01b654e43c: Verifying Checksum
0c8af54b9a3d: Verifying Checksum
0c8af54b9a3d: Download complete
bb66042bfc04: Verifying Checksum
c25c59dc6096: Download complete
b876948298fc: Download complete
40b553d28ee4: Verifying Checksum
40b553d28ee4: Download complete
de0587e4d11b: Verifying Checksum
de0587e4d11b: Download complete
55cf0023cd90: Verifying Checksum
55cf0023cd90: Download complete
4e2d137afa62: Verifying Checksum
4e2d137afa62: Download complete
340ac274248c: Verifying Checksum
340ac274248c: Download complete
f54581570561: Verifying Checksum
f54581570561: Download complete
17b1245ed169: Verifying Checksum
17b1245ed169: Download complete
65a59322c41c: Verifying Checksum
65a59322c41c: Download complete
f489a234bde9: Verifying Checksum
f489a234bde9: Download complete
104b1fec8388: Verifying Checksum
104b1fec8388: Download complete
2e9282637d53: Verifying Checksum
2e9282637d53: Download complete
36e830c6ae14: Verifying Checksum
36e830c6ae14: Download complete
5c3ae8136812: Verifying Checksum
5c3ae8136812: Download complete
51dc9035c07e: Verifying Checksum
51dc9035c07e: Download complete
632d540b7d35: Verifying Checksum
632d540b7d35: Download complete
2a6af4a57983: Verifying Checksum
2a6af4a57983: Download complete
02c100e0c201: Verifying Checksum
02c100e0c201: Download complete
bbd161632c8a: Pull complete
35c76de94675: Pull complete
284f652640f7: Pull complete
a7c2dba290f1: Verifying Checksum
a7c2dba290f1: Download complete
13326dce54d9: Pull complete
0659d9752885: Pull complete
76f30deeddbf: Verifying Checksum
76f30deeddbf: Download complete
b1bab86f13e4: Pull complete
d4fe32301903: Pull complete
1db91f94c1ed: Pull complete
d93414d3c5ed: Pull complete
6ec94b618e81: Pull complete
434d78d447a1: Pull complete
d0660b68b734: Pull complete
5a84282772df: Pull complete
f46a113fe03c: Pull complete
5be0969dffa2: Pull complete
97277e4b1414: Pull complete
4f4fb700ef54: Pull complete
6465acf3305d: Pull complete
bc01b654e43c: Pull complete
0c8af54b9a3d: Pull complete
c25c59dc6096: Pull complete
b876948298fc: Pull complete
bb66042bfc04: Pull complete
40b553d28ee4: Pull complete
de0587e4d11b: Pull complete
55cf0023cd90: Pull complete
340ac274248c: Pull complete
4e2d137afa62: Pull complete
f54581570561: Pull complete
76f30deeddbf: Pull complete
17b1245ed169: Pull complete
51dc9035c07e: Pull complete
65a59322c41c: Pull complete
f489a234bde9: Pull complete
104b1fec8388: Pull complete
2e9282637d53: Pull complete
36e830c6ae14: Pull complete
5c3ae8136812: Pull complete
a7c2dba290f1: Pull complete
632d540b7d35: Pull complete
2a6af4a57983: Pull complete
02c100e0c201: Pull complete
Digest: sha256:decaec29a4cd049083a7ddb392ab182116707e4bcc4b17470f70542991f2248b
Status: Downloaded newer image for ocaml/opam@sha256:decaec29a4cd049083a7ddb392ab182116707e4bcc4b17470f70542991f2248b
2026-04-21 14:19.37 ---> using "e0c1b647577e1fc204c678cf5d63cb0afd90eccb9c1888f75cd723b90ce2ca1e" 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-04-21 14:19.37 ---> using "674b8ea42f40d5ea3c7e5926b358810e8e66c303fdc615d3be28a6499e445987" 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-04-21 14:19.37 ---> using "d5a9555314d030ca07cf72fcb3040f91e05b1196222eb7fc2e2e6f65b14cdf56" 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.1
# 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 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-21 14:19.37 ---> using "0b4c62e905ad02c58c8af3aba15b44a0a57e9dd2b016df695e0ba3fe0ade4c66" 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-04-21 14:19.37 ---> using "e6fb835bfe3ef42a617348e5afc8fe92fed31767c22f739483c2b52064c8b168" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-21 14:19.42 ---> using "74389b5bb80024ab2f1ac4f869cbd07a102bf747e3d4a449b2fec3fd8116aee0" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-21 14:19.42 ---> using "7b207972b01661d26962b06c04bb61030f6443c52f2d9f6bd678214ed76a8e69" 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/main riscv64 Packages [962 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1607 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [640 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [1125 kB]
- Fetched 4713 kB in 2s (2177 kB/s)
- Reading package lists...
-
2026-04-21 14:19.42 ---> using "5ef68102e1d92a383a681b15cade8d66d409a0c56cb36339f69e906acb184c14" from cache
/home/opam: (run (shell "opam pin add -k version -yn colombe.0.13.0 0.13.0"))
colombe is now pinned to version 0.13.0
2026-04-21 14:19.42 ---> using "8cd5918da7070124e883c0a5c5ff94ff7fe3bf1afdba9b89b7b3527720e547bf" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall colombe.0.13.0;\
\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\" != 'colombe.0.13.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
colombe.0.13.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
- install angstrom 0.16.1 [required by colombe]
- install bigstringaf 0.10.0 [required by angstrom]
- install colombe 0.13.0 (pinned)
- install csexp 1.5.2 [required by dune-configurator]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.22.2 [required by colombe]
- install dune-configurator 3.22.2 [required by bigstringaf]
- install fmt 0.11.0 [required by colombe]
- install ipaddr 5.6.2 [required by colombe]
- install macaddr 5.6.2 [required by ipaddr]
- install ocaml-syntax-shims 1.0.0 [required by colombe]
- install ocamlbuild 0.16.1 [required by fmt]
- install ocamlfind 1.9.8 [required by fmt]
- install topkg 1.1.1 [required by fmt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved colombe.0.13.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.22.2, dune-configurator.3.22.2 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed macaddr.5.6.2
-> installed ipaddr.5.6.2
-> installed ocaml-syntax-shims.1.0.0
-> installed dune-configurator.3.22.2
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed colombe.0.13.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-21 14:19.42 ---> using "f81cd18e3cab27c35cc028182b01d016ba525f96e5df3a6eed2e802fa8bcc8f0" from cache
/home/opam: (run (network host)
(shell "(opam reinstall --with-test colombe.0.13.0) || true"))
The following actions will be performed:
=== recompile 2 packages
- recompile colombe 0.13.0 (pinned)
- recompile fmt 0.11.0 [uses cmdliner]
=== install 11 packages
- install afl-persistent 1.4 [required by crowbar]
- install alcotest 1.9.1 [required by colombe]
- install astring 0.8.5 [required by alcotest]
- install base64 3.5.2 [required by emile]
- install cmdliner 2.1.0 [required by crowbar, alcotest, emile]
- install crowbar 0.2.2 [required by colombe]
- install emile 1.1 [required by colombe]
- install pecu 0.7 [required by emile]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest, emile]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.4 (https://opam.ocaml.org/cache)
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> installed afl-persistent.1.4
-> retrieved base64.3.5.2 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved crowbar.0.2.2 (https://opam.ocaml.org/cache)
-> retrieved emile.1.1 (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved pecu.0.7 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed pecu.0.7
-> installed astring.0.8.5
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> removed colombe.0.13.0
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed crowbar.0.2.2
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed emile.1.1
-> installed alcotest.1.9.1
-> installed colombe.0.13.0
Done.
<><> afl-persistent.1.4 installed successfully ><><><><><><><><><><><><><><><><>
=> afl-persistent is installed, but since the current OCaml compiler does
not enable AFL instrumentation by default, most packages will not be
instrumented and fuzzing with afl-fuzz may not be effective.
To globally enable AFL instrumentation, create an OCaml switch like:
opam switch create 5.4.1+afl ocaml-variants.5.4.1+options ocaml-option-afl
# To update the current shell environment, run: eval $(opam env)
2026-04-21 14:21.08 ---> saved as "2ecf4f975aa32fcee494587d608aacdbca797ccd600650554b3d4df479d2af66"
/home/opam: (run (shell "opam reinstall --with-test --verbose colombe.0.13.0;\
\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\" != 'colombe.0.13.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile colombe 0.13.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [colombe: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "colombe" "-j" "3" (CWD=/home/opam/.opam/5.4/.opam-switch/build/colombe.0.13.0)
Processing 2/4: [colombe: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "colombe" "-j" "3" (CWD=/home/opam/.opam/5.4/.opam-switch/build/colombe.0.13.0)
- (cd _build/default/test && ./test.exe --color=always)
- Testing `colombe'.
- This run has ID `G2Q527YZ'.
-
- [OK] requests 0 0 EHLO bar.com.
- [OK] requests 0 1 MAIL FROM:<Smith@bar.com>.
- [OK] requests 0 2 RCPT TO:<Jones@foo.com>.
- [OK] requests 0 3 RCPT TO:<Green@foo.com>.
- [OK] requests 0 4 RCPT TO:<Brown@foo.com>.
- [OK] requests 0 5 DATA.
- [OK] requests 0 6 QUIT.
- [OK] requests 0 7 EHLO bar.com.
- [OK] requests 0 8 MAIL FROM:<Smith@bar.com>.
- [OK] requests 0 9 RCPT TO:<Jones@foo.com>.
- [OK] requests 0 10 RCPT TO:<Green@foo.com>.
- [OK] requests 0 11 RSET.
- [OK] requests 0 12 QUIT.
- [OK] requests 0 13 EHLO bar.com.
- [OK] requests 0 14 MAIL FROM:<JQP@bar.com>.
- [OK] requests 0 15 RCPT TO:<Jones@XYZ.COM>.
- [OK] requests 0 16 DATA.
- [OK] requests 0 17 QUIT.
- [OK] requests 0 18 EHLO foo.com.
- [OK] requests 0 19 MAIL FROM:<JQP@bar.com>.
- [OK] requests 0 20 RCPT TO:<Jones@XYZ.COM>.
- [OK] requests 0 21 DATA.
- [OK] requests 0 22 QUIT.
- [OK] requests 0 23 EHLO bar.com.
- [OK] requests 0 24 VRFY Crispin.
- [OK] requests 0 25 MAIL FROM:<EAK@bar.com>.
- [OK] requests 0 26 RCPT TO:<Admin.MRC@foo.com>.
- [OK] requests 0 27 DATA.
- [OK] requests 0 28 QUIT.
- [OK] requests 0 29 NOOP.
- [OK] requests 1 0 (Hello bar.com).
- [OK] requests 1 1 (Mail { path= <"Smith"@bar.com>; p...
- [OK] requests 1 2 (Recipient { path= forward-path:<"...
- [OK] requests 1 3 (Recipient { path= forward-path:<"...
- [OK] requests 1 4 (Recipient { path= forward-path:<"...
- [OK] requests 1 5 Data.
- [OK] requests 1 6 Quit.
- [OK] requests 1 7 (Hello bar.com).
- [OK] requests 1 8 (Mail { path= <"Smith"@bar.com>; p...
- [OK] requests 1 9 (Recipient { path= forward-path:<"...
- [OK] requests 1 10 (Recipient { path= forward-path:<"...
- [OK] requests 1 11 Reset.
- [OK] requests 1 12 Quit.
- [OK] requests 1 13 (Hello bar.com).
- [OK] requests 1 14 (Mail { path= <"JQP"@bar.com>; par...
- [OK] requests 1 15 (Recipient { path= forward-path:<"...
- [OK] requests 1 16 Data.
- [OK] requests 1 17 Quit.
- [OK] requests 1 18 (Hello foo.com).
- [OK] requests 1 19 (Mail { path= <"JQP"@bar.com>; par...
- [OK] requests 1 20 (Recipient { path= forward-path:<"...
- [OK] requests 1 21 Data.
- [OK] requests 1 22 Quit.
- [OK] requests 1 23 (Hello bar.com).
- [OK] requests 1 24 (Verify Crispin).
- [OK] requests 1 25 (Mail { path= <"EAK"@bar.com>; par...
- [OK] requests 1 26 (Recipient { path= forward-path:<A...
- [OK] requests 1 27 Data.
- [OK] requests 1 28 Quit.
- [OK] requests 1 29 (Noop ).
- [OK] replies 0 0 220 foo.com Simple Mail Transfer S...
- [OK] replies 0 1 250-foo.com greets bar.com...
- [OK] replies 0 2 250 Mark Crispin <Admin.MRC@foo.com>.
- [OK] replies 0 3 250 OK.
- [OK] replies 0 4 250 OK.
- [OK] replies 0 5 354 Start mail input; end with <CR...
- [OK] replies 0 6 250 OK.
- [OK] replies 0 7 221 foo.com Service closing transm...
- [OK] replies 0 8 220 xyz.com Simple Mail Transfer S...
- [OK] replies 0 9 250 xyz.com is on the air.
- [OK] replies 0 10 250 OK.
- [OK] replies 0 11 250 OK.
- [OK] replies 0 12 354 Start mail input; end with <CR...
- [OK] replies 0 13 250 OK.
- [OK] replies 0 14 221 foo.com Service closing transm...
- [OK] replies 0 15 220 foo.com Simple Mail Transfer S...
- [OK] replies 0 16 250-foo.com greets bar.com...
- [OK] replies 0 17 250 OK.
- [OK] replies 0 18 250 OK.
- [OK] replies 0 19 354 Start mail input; end with <CR...
- [OK] replies 0 20 250 OK.
- [OK] replies 0 21 221 foo.com Service closing transm...
- [OK] replies 0 22 220 foo.com Simple Mail Transfer S...
- [OK] replies 0 23 250-foo.com greets bar.com...
- [OK] replies 0 24 250 OK.
- [OK] replies 0 25 250 OK.
- [OK] replies 0 26 550 No such user here.
- [OK] replies 0 27 250 OK.
- [OK] replies 0 28 221 foo.com Service closing transm...
- [OK] replies 0 29 220 foo.com Simple Mail Transfer S...
- [OK] replies 0 30 250-foo.com greets bar.com...
- [OK] replies 0 31 250 OK.
- [OK] replies 0 32 250 OK.
- [OK] replies 0 33 550 No such user here.
- [OK] replies 0 34 250 OK.
- [OK] replies 0 35 354 Start mail input; end with <CR...
- [OK] replies 0 36 250 OK.
- [OK] replies 0 37 221 foo.com Service closing transm...
- [OK] replies 0 38 666 Going to Hell!.
- [OK] replies 1 0 (220 [foo.com Simple Mail Transfer...
- [OK] replies 1 1 (250 [foo.com greets bar.com; 8BIT...
- [OK] replies 1 2 (250 [Mark Crispin <Admin.MRC@foo....
- [OK] replies 1 3 (250 [OK]).
- [OK] replies 1 4 (250 [OK]).
- [OK] replies 1 5 (354 [Start mail input; end with <...
- [OK] replies 1 6 (250 [OK]).
- [OK] replies 1 7 (221 [foo.com Service closing tran...
- [OK] replies 1 8 (220 [xyz.com Simple Mail Transfer...
- [OK] replies 1 9 (250 [xyz.com is on the air]).
- [OK] replies 1 10 (250 [OK]).
- [OK] replies 1 11 (250 [OK]).
- [OK] replies 1 12 (354 [Start mail input; end with <...
- [OK] replies 1 13 (250 [OK]).
- [OK] replies 1 14 (221 [foo.com Service closing tran...
- [OK] replies 1 15 (220 [foo.com Simple Mail Transfer...
- [OK] replies 1 16 (250 [foo.com greets bar.com; 8BIT...
- [OK] replies 1 17 (250 [OK]).
- [OK] replies 1 18 (250 [OK]).
- [OK] replies 1 19 (354 [Start mail input; end with <...
- [OK] replies 1 20 (250 [OK]).
- [OK] replies 1 21 (221 [foo.com Service closing tran...
- [OK] replies 1 22 (220 [foo.com Simple Mail Transfer...
- [OK] replies 1 23 (250 [foo.com greets bar.com; 8BIT...
- [OK] replies 1 24 (250 [OK]).
- [OK] replies 1 25 (250 [OK]).
- [OK] replies 1 26 (550 [No such user here]).
- [OK] replies 1 27 (250 [OK]).
- [OK] replies 1 28 (221 [foo.com Service closing tran...
- [OK] replies 1 29 (220 [foo.com Simple Mail Transfer...
- [OK] replies 1 30 (250 [foo.com greets bar.com; 8BIT...
- [OK] replies 1 31 (250 [OK]).
- [OK] replies 1 32 (250 [OK]).
- [OK] replies 1 33 (550 [No such user here]).
- [OK] replies 1 34 (250 [OK]).
- [OK] replies 1 35 (354 [Start mail input; end with <...
- [OK] replies 1 36 (250 [OK]).
- [OK] replies 1 37 (221 [foo.com Service closing tran...
- [OK] replies 1 38 (666 [Going to Hell!]).
- [OK] malformed 354 0 malformed 354.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/colombe.0.13.0/_build/default/test/_build/_tests/colombe'.
- Test Successful in 0.094s. 139 tests run.
- (cd _build/default/test && ./test_emile.exe --color=always)
- Testing `colombe_emile'.
- This run has ID `39E9LM1U'.
-
- [OK] local 0 dot_str...
- [OK] local 1 string.
- [OK] local 2 single ...
- [OK] local edge cases 0 mixed a...
- [OK] local edge cases 1 multipl...
- [OK] local edge cases 2 many dots.
- [OK] local edge cases 3 string ...
- [OK] local edge cases 4 string ...
- [OK] domain 0 hostname.
- [OK] domain 1 ipv4.
- [OK] domain 2 ipv6.
- [OK] domain 3 extension.
- [OK] domain 4 literal...
- [OK] domain edge cases 0 ipv6 ma...
- [OK] domain edge cases 1 single ...
- [OK] domain edge cases 2 many la...
- [OK] path 0 simple.
- [OK] path 1 dot local.
- [OK] path 2 ipv4 do...
- [OK] path 3 name di...
- [OK] route 0 colombe...
- [OK] route 1 emile d...
- [OK] route 2 explici...
- [OK] reverse_path 0 some.
- [OK] reverse_path 1 none.
- [OK] forward_path 0 regular.
- [OK] forward_path 1 postmas...
- [OK] forward_path 2 postmas...
- [OK] forward_path 3 postmas...
- [OK] forward_path 4 postmas...
- [OK] isomorphism: Colombe -> Emile -> Colombe 0 path.
- [OK] isomorphism: Colombe -> Emile -> Colombe 1 dotted ...
- [OK] isomorphism: Colombe -> Emile -> Colombe 2 forward...
- [OK] isomorphism: Colombe -> Emile -> Colombe 3 forward...
- [OK] isomorphism: Colombe -> Emile -> Colombe 4 reverse...
- [OK] isomorphism: Colombe -> Emile -> Colombe 5 reverse...
- [OK] isomorphism: Colombe -> Emile -> Colombe 6 route r...
- [OK] isomorphism: Emile -> Colombe -> Emile 0 various...
- [OK] isomorphism: Emile -> Colombe -> Emile 1 emile d...
-
- Full test results in `~/.opam/5.4/.opam-switch/build/colombe.0.13.0/_build/default/test/_build/_tests/colombe_emile'.
- Test Successful in 0.026s. 39 tests run.
- (cd _build/default/fuzz && ./fuzz.exe)
- never raise (request): PASS
-
- never raise (reply): PASS
-
- x = encoder(decoder(x)) (request): PASS
-
- x = decoder(encoder(x)) (request): PASS
-
- x = encoder(decoder(x)) (reply): PASS
-
- x = decoder(encoder(x)) (reply): PASS
-
-> compiled colombe.0.13.0
-> removed colombe.0.13.0
-> installed colombe.0.13.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-21 14:21.40 ---> saved as "a7fa3bf0a7d1eae17d6b59ef961043c9ac66960b073e6892cb055e6961f1e3a7"
Job succeeded
2026-04-21 14:22.14: Job succeeded