- github
- ocaml
- opam-repository
- 4bb6e5
- compilers,5.3,alcotest.1.9.0,revdeps,mrmime.0.7.0
(not at the head of any monitored branch or PR)
2025-03-13 09:23.56: New job: test mrmime.0.7.0 with alcotest.1.9.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/27617/head (4bb6e5fd95bc05a3bab58b600d1ff773fc909158)
on debian-12-ocaml-5.3/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/27617/head" && git reset --hard 4bb6e5fd
git fetch origin master
git merge --no-edit 5ab9f3c9e8c50d4858e5b871d7544019a20f89e2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:bc8aaa1230ecb57c5762546b9227e538394dff3b0a270fc783baf8bc6bd0bf51
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 alcotest.1.9.0 1.9.0
RUN opam reinstall alcotest.1.9.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 "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'alcotest.1.9.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall mrmime.0.7.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 "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'mrmime.0.7.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 mrmime.0.7.0) || true
RUN opam reinstall --with-test --verbose mrmime.0.7.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 "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'mrmime.0.7.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 .
2025-03-13 09:23.56: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:bc8aaa1230ecb57c5762546b9227e538394dff3b0a270fc783baf8bc6bd0bf51-alcotest.1.9.0-mrmime.0.7.0-4bb6e5fd95bc05a3bab58b600d1ff773fc909158"
2025-03-13 09:23.56: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:bc8aaa1230ecb57c5762546b9227e538394dff3b0a270fc783baf8bc6bd0bf51)
(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 alcotest.1.9.0 1.9.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall alcotest.1.9.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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alcotest.1.9.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mrmime.0.7.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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mrmime.0.7.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 mrmime.0.7.0) || true"))
(run (shell "opam reinstall --with-test --verbose mrmime.0.7.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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mrmime.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-03-13 09:23.56: Waiting for resource in pool OCluster
2025-03-13 09:29.40: Waiting for worker…
2025-03-13 09:31.13: Got resource from pool OCluster
Building on x86-bm-c3.sw.ocaml.org
All commits already cached
Updating files: 76% (17342/22646)
Updating files: 77% (17438/22646)
Updating files: 78% (17664/22646)
Updating files: 79% (17891/22646)
Updating files: 80% (18117/22646)
Updating files: 81% (18344/22646)
Updating files: 82% (18570/22646)
Updating files: 83% (18797/22646)
Updating files: 84% (19023/22646)
Updating files: 85% (19250/22646)
Updating files: 86% (19476/22646)
Updating files: 87% (19703/22646)
Updating files: 88% (19929/22646)
Updating files: 89% (20155/22646)
Updating files: 90% (20382/22646)
Updating files: 91% (20608/22646)
Updating files: 92% (20835/22646)
Updating files: 93% (21061/22646)
Updating files: 94% (21288/22646)
Updating files: 95% (21514/22646)
Updating files: 96% (21741/22646)
Updating files: 97% (21967/22646)
Updating files: 98% (22194/22646)
Updating files: 99% (22420/22646)
Updating files: 100% (22646/22646)
Updating files: 100% (22646/22646), done.
HEAD is now at 5ab9f3c9e8 Merge pull request #27610 from Alasdair/release-sail-0.19
Updating 5ab9f3c9e8..4bb6e5fd95
Fast-forward
packages/alcotest-async/alcotest-async.1.9.0/opam | 49 ++++++++++++++++++
packages/alcotest-js/alcotest-js.1.9.0/opam | 45 ++++++++++++++++
packages/alcotest-lwt/alcotest-lwt.1.9.0/opam | 45 ++++++++++++++++
.../alcotest-mirage/alcotest-mirage.1.9.0/opam | 47 +++++++++++++++++
packages/alcotest/alcotest.1.9.0/opam | 60 ++++++++++++++++++++++
5 files changed, 246 insertions(+)
create mode 100644 packages/alcotest-async/alcotest-async.1.9.0/opam
create mode 100644 packages/alcotest-js/alcotest-js.1.9.0/opam
create mode 100644 packages/alcotest-lwt/alcotest-lwt.1.9.0/opam
create mode 100644 packages/alcotest-mirage/alcotest-mirage.1.9.0/opam
create mode 100644 packages/alcotest/alcotest.1.9.0/opam
(from ocaml/opam:debian-12-ocaml-5.3@sha256:bc8aaa1230ecb57c5762546b9227e538394dff3b0a270fc783baf8bc6bd0bf51)
2025-03-13 09:31.16 ---> using "4c4507dc2c915bc2fe880d11485a066845ce2ccaf87ae0c7a8ec26d34c0670c5" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-03-13 09:31.16 ---> using "11972756cf9ede867166143b7e97b17a1fb4d417a47b1adfe1270d36c2e26f06" 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 development 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-13 09:31.16 ---> using "30845452a2bb36dba3586d7bc2112b45a1a759d4af7884a3aa4736882ec26754" 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.4.0~alpha1~dev (f1cf50f2711981a605f81a80c68b73774d5841ff)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 39
# repositories 1 (local), 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.3
# invariant ["ocaml-base-compiler" {>= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-03-13 09:31.16 ---> using "7aec1e3237de1c6bc404367ebab8641d313ce833c6d550baa1fdeee08b26bdf7" 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-03-13 09:31.16 ---> using "f96eee81ea8beeb7f042672d6df140cca5af3ad31b667e55f10140e020499c77" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-03-13 09:31.17 ---> using "34f5886409997a706dcb8d7ef17dd61d942bd0409ec967643dbbc7aff4c41081" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-13 09:31.17 ---> using "0876a627f5312778ae7e349eb946fb891a199c4d7826d405e370b9c0ec0ad043" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [246 kB]
- Fetched 349 kB in 0s (1258 kB/s)
- Reading package lists...
-
2025-03-13 09:31.17 ---> using "1a2ed50ace5d5db70d7dce08741eb2365d45375196ccff8c8d839424ff1a735c" from cache
/home/opam: (run (shell "opam pin add -k version -yn alcotest.1.9.0 1.9.0"))
alcotest is now pinned to version 1.9.0
2025-03-13 09:31.17 ---> using "86e918aa4576e2c11fefe200a4679b2488084e84c345f4625342ec9eb5da8668" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall alcotest.1.9.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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alcotest.1.9.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
alcotest.1.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 13 packages
- install alcotest 1.9.0 (pinned)
- install astring 0.8.5 [required by alcotest]
- install cmdliner 1.3.0 [required by alcotest]
- install dune 3.17.2 [required by alcotest]
- install fmt 0.10.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install re 1.12.0 [required by alcotest]
- install seq base [required by re]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.0.8 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved dune.3.17.2 (cached)
-> retrieved fmt.0.10.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved re.1.12.0 (cached)
-> retrieved seq.base (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.0.8 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed cmdliner.1.3.0
-> installed seq.base
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.8
-> installed uutf.1.0.4
-> installed fmt.0.10.0
-> installed astring.0.8.5
-> installed dune.3.17.2
-> installed stdlib-shims.0.3.0
-> installed re.1.12.0
-> installed ocaml-syntax-shims.1.0.0
-> installed alcotest.1.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 09:31.17 ---> using "39e4e94d87d21e2119af601b7664cbd2a4cad01ad37474f6f695479bb29edf1c" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mrmime.0.7.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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mrmime.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mrmime.0.7.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 21 packages
- install angstrom 0.16.1 [required by mrmime]
- install base64 3.5.1 [required by mrmime]
- install bigarray-overlap 0.2.1 [required by mrmime]
- install bigstringaf 0.10.0 [required by mrmime]
- install coin 0.1.4 [required by rosetta]
- install conf-pkg-config 4 [required by bigarray-overlap]
- install csexp 1.5.2 [required by dune-configurator]
- install domain-name 0.4.1 [required by ipaddr]
- install dune-configurator 3.17.2 [required by bigstringaf]
- install emile 1.1 [required by mrmime]
- install ipaddr 5.6.0 [required by mrmime]
- install ke 0.6 [required by mrmime]
- install macaddr 5.6.0 [required by ipaddr]
- install mrmime 0.7.0
- install pecu 0.7 [required by mrmime]
- install prettym 0.0.3 [required by mrmime]
- install ptime 1.2.0 [required by mrmime]
- install rosetta 0.3.0 [required by mrmime]
- install unstrctrd 0.4 [required by mrmime]
- install uuuu 0.3.0 [required by rosetta]
- install yuscii 0.3.0 [required by rosetta]
The following system packages will first need to be installed:
pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3: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 ... 18776 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u9) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved base64.3.5.1 (cached)
-> retrieved bigarray-overlap.0.2.1 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved coin.0.1.4 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved domain-name.0.4.1 (cached)
-> installed conf-pkg-config.4
-> installed csexp.1.5.2
-> installed domain-name.0.4.1
-> installed bigarray-overlap.0.2.1
-> installed base64.3.5.1
-> installed coin.0.1.4
-> retrieved dune-configurator.3.17.2 (cached)
-> retrieved emile.1.1 (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached)
-> retrieved ke.0.6 (cached)
-> retrieved mrmime.0.7.0 (cached)
-> retrieved pecu.0.7 (cached)
-> retrieved prettym.0.0.3 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved rosetta.0.3.0 (cached)
-> retrieved unstrctrd.0.4 (cached)
-> retrieved uuuu.0.3.0 (cached)
-> retrieved yuscii.0.3.0 (cached)
-> installed macaddr.5.6.0
-> installed yuscii.0.3.0
-> installed pecu.0.7
-> installed ke.0.6
-> installed uuuu.0.3.0
-> installed ipaddr.5.6.0
-> installed rosetta.0.3.0
-> installed dune-configurator.3.17.2
-> installed ptime.1.2.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed prettym.0.0.3
-> installed unstrctrd.0.4
-> installed emile.1.1
-> installed mrmime.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 09:31.37 ---> saved as "fc8503423bd218d60f4cf4a9945d8f71e9a84086188a19c84d3279f0997c882a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test mrmime.0.7.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile mrmime 0.7.0
=== install 15 packages
- install afl-persistent 1.4 [required by mrmime]
- install base-bytes base [required by ocplib-endian]
- install cppo 1.8.0 [required by ocplib-endian, lwt]
- install crowbar 0.2.1 [required by mrmime]
- install digestif 1.2.0 [required by mirage-crypto-rng]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.10 [required by digestif, mirage-crypto]
- install fpath 0.7.3 [required by mrmime]
- install hxd 0.3.3 [required by mrmime]
- install jsonm 1.0.2 [required by mrmime]
- install logs 0.7.0 [required by mrmime]
- install lwt 5.9.0 [required by mrmime]
- install mirage-crypto 2.0.0 [required by mirage-crypto-rng]
- install mirage-crypto-rng 2.0.0 [required by mrmime]
- install ocplib-endian 1.2 [required by mrmime]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.4 (https://github.com/stedolan/ocaml-afl-persistent/archive/refs/tags/v1.4.tar.gz)
-> installed base-bytes.base
-> retrieved cppo.1.8.0 (https://github.com/ocaml-community/cppo/archive/v1.8.0.tar.gz)
-> installed afl-persistent.1.4
-> retrieved crowbar.0.2.1 (https://github.com/stedolan/crowbar/archive/v0.2.1.tar.gz)
-> installed cppo.1.8.0
-> retrieved digestif.1.2.0 (https://github.com/mirage/digestif/releases/download/v1.2.0/digestif-1.2.0.tbz)
-> retrieved duration.0.2.1 (https://github.com/hannesm/duration/releases/download/v0.2.1/duration-0.2.1.tbz)
-> installed duration.0.2.1
-> retrieved eqaf.0.10 (https://github.com/mirage/eqaf/releases/download/v0.10/eqaf-0.10.tbz)
-> retrieved fpath.0.7.3 (https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz)
-> installed eqaf.0.10
-> retrieved hxd.0.3.3 (https://github.com/dinosaure/hxd/releases/download/v0.3.3/hxd-0.3.3.tbz)
-> retrieved jsonm.1.0.2 (https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz)
-> retrieved logs.0.7.0 (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> installed fpath.0.7.3
-> retrieved lwt.5.9.0 (https://github.com/ocsigen/lwt/archive/refs/tags/5.9.0.tar.gz)
-> installed digestif.1.2.0
-> installed jsonm.1.0.2
-> retrieved mirage-crypto.2.0.0, mirage-crypto-rng.2.0.0 (https://github.com/mirage/mirage-crypto/releases/download/v2.0.0/mirage-crypto-2.0.0.tbz)
-> retrieved mrmime.0.7.0 (https://github.com/mirage/mrmime/releases/download/v0.7.0/mrmime-0.7.0.tbz)
-> removed mrmime.0.7.0
-> retrieved ocplib-endian.1.2 (https://github.com/OCamlPro/ocplib-endian/archive/refs/tags/1.2.tar.gz)
-> installed ocplib-endian.1.2
-> installed crowbar.0.2.1
-> installed mirage-crypto.2.0.0
-> installed lwt.5.9.0
-> installed hxd.0.3.3
-> installed logs.0.7.0
-> installed mirage-crypto-rng.2.0.0
-> installed mrmime.0.7.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.3.0+afl ocaml-variants.5.3.0+options ocaml-option-afl
# To update the current shell environment, run: eval $(opam env)
2025-03-13 09:32.07 ---> saved as "bf10adcfb7e1ee358e6ae2adf490862a49a94d5f91e15645734e215ccc690e7b"
/home/opam: (run (shell "opam reinstall --with-test --verbose mrmime.0.7.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 \"\\\"debian-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mrmime.0.7.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 mrmime 0.7.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [mrmime.0.7.0: extract]
-> retrieved mrmime.0.7.0 (cached)
Processing 2/4: [mrmime: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mrmime" "-j" "39" (CWD=/home/opam/.opam/5.3/.opam-switch/build/mrmime.0.7.0)
Processing 2/4: [mrmime: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mrmime" "-j" "39" (CWD=/home/opam/.opam/5.3/.opam-switch/build/mrmime.0.7.0)
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I corpus/.generate.eobjs/byte -I /home/opam/.opam/5.3/lib/afl-persistent -I /home/opam/.opam/5.3/lib/angstrom -I /home/opam/.opam/5.3/lib/astring -I /home/opam/.opam/5.3/lib/base64 -I /home/opam/.opam/5.3/lib/base64/rfc2045 -I /home/opam/.opam/5.3/lib/bigarray-overlap -I /home/opam/.opam/5.3/lib/bigstringaf -I /home/opam/.opam/5.3/lib/bytes -I /home/opam/.opam/5.3/lib/cmdliner -I /home/opam/.opam/5.3/lib/coin -I /home/opam/.opam/5.3/lib/digestif/c -I /home/opam/.opam/5.3/lib/domain-name -I /home/opam/.opam/5.3/lib/emile -I /home/opam/.opam/5.3/lib/eqaf -I /home/opam/.opam/5.3/lib/fmt -I /home/opam/.opam/5.3/lib/fmt/cli -I /home/opam/.opam/5.3/lib/fmt/tty -I /home/opam/.opam/5.3/lib/fpath -I /home/opam/.opam/5.3/lib/hxd/core -I /home/opam/.opam/5.3/lib/hxd/string -I /home/opam/.opam/5.3/lib/ipaddr -I /home/opam/.opam/5.3/lib/ke -I /home/opam/.opam/5.3/lib/logs -I /home/opam/.opam/5.3/lib/macaddr -I /home/opam/.opam/5.3/lib/mirage-crypto -I /home/opam/.opam/5.3/lib/mirage-crypto-rng -I /home/opam/.opam/5.3/lib/ocaml/str -I /home/opam/.opam/5.3/lib/ocaml/unix -I /home/opam/.opam/5.3/lib/ocplib-endian -I /home/opam/.opam/5.3/lib/pecu -I /home/opam/.opam/5.3/lib/prettym -I /home/opam/.opam/5.3/lib/ptime -I /home/opam/.opam/5.3/lib/rosetta -I /home/opam/.opam/5.3/lib/unstrctrd -I /home/opam/.opam/5.3/lib/unstrctrd/parser -I /home/opam/.opam/5.3/lib/uutf -I /home/opam/.opam/5.3/lib/uuuu -I /home/opam/.opam/5.3/lib/yuscii -I lib/.mrmime.objs/byte -no-alias-deps -open Dune__exe -o corpus/.generate.eobjs/byte/dune__exe__Fortuna.cmo -c -impl corpus/fortuna.ml)
- File "corpus/fortuna.ml", line 33, characters 2-41:
- 33 | Mirage_crypto_rng.Fortuna.generate_into ~g res ~off:0 len;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert unsafe: Mirage_crypto_rng.Fortuna.generate_into
- Does not do bounds checks. Use Mirage_crypto_rng.generate_into instead.
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlopt.opt -w -40 -g -I corpus/.generate.eobjs/byte -I corpus/.generate.eobjs/native -I /home/opam/.opam/5.3/lib/afl-persistent -I /home/opam/.opam/5.3/lib/angstrom -I /home/opam/.opam/5.3/lib/astring -I /home/opam/.opam/5.3/lib/base64 -I /home/opam/.opam/5.3/lib/base64/rfc2045 -I /home/opam/.opam/5.3/lib/bigarray-overlap -I /home/opam/.opam/5.3/lib/bigstringaf -I /home/opam/.opam/5.3/lib/bytes -I /home/opam/.opam/5.3/lib/cmdliner -I /home/opam/.opam/5.3/lib/coin -I /home/opam/.opam/5.3/lib/digestif/c -I /home/opam/.opam/5.3/lib/domain-name -I /home/opam/.opam/5.3/lib/emile -I /home/opam/.opam/5.3/lib/eqaf -I /home/opam/.opam/5.3/lib/fmt -I /home/opam/.opam/5.3/lib/fmt/cli -I /home/opam/.opam/5.3/lib/fmt/tty -I /home/opam/.opam/5.3/lib/fpath -I /home/opam/.opam/5.3/lib/hxd/core -I /home/opam/.opam/5.3/lib/hxd/string -I /home/opam/.opam/5.3/lib/ipaddr -I /home/opam/.opam/5.3/lib/ke -I /home/opam/.opam/5.3/lib/logs -I /home/opam/.opam/5.3/lib/macaddr -I /home/opam/.opam/5.3/lib/mirage-crypto -I /home/opam/.opam/5.3/lib/mirage-crypto-rng -I /home/opam/.opam/5.3/lib/ocaml/str -I /home/opam/.opam/5.3/lib/ocaml/unix -I /home/opam/.opam/5.3/lib/ocplib-endian -I /home/opam/.opam/5.3/lib/pecu -I /home/opam/.opam/5.3/lib/prettym -I /home/opam/.opam/5.3/lib/ptime -I /home/opam/.opam/5.3/lib/rosetta -I /home/opam/.opam/5.3/lib/unstrctrd -I /home/opam/.opam/5.3/lib/unstrctrd/parser -I /home/opam/.opam/5.3/lib/uutf -I /home/opam/.opam/5.3/lib/uuuu -I /home/opam/.opam/5.3/lib/yuscii -I lib/.mrmime.objs/byte -I lib/.mrmime.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o corpus/.generate.eobjs/native/dune__exe__Fortuna.cmx -c -impl corpus/fortuna.ml)
- File "corpus/fortuna.ml", line 33, characters 2-41:
- 33 | Mirage_crypto_rng.Fortuna.generate_into ~g res ~off:0 len;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert unsafe: Mirage_crypto_rng.Fortuna.generate_into
- Does not do bounds checks. Use Mirage_crypto_rng.generate_into instead.
- (cd _build/default/test && ./rfc2047.exe --color=always)
- Testing `rfc2047'.
- This run has ID `B711VE6W'.
-
- [OK] encoded-word 0 =?US-ASCII?Q?Keith_Moore?=.
- [OK] encoded-word 1 =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?=.
- [OK] encoded-word 2 =?ISO-8859-1?Q?Andr=E9_?=.
- [OK] encoded-word 3 =?ISO-8859-1?B?SWYgeW91IGNhbiByZWFk...
- [OK] encoded-word 4 =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRo...
- [OK] encoded-word 5 =?ISO-8859-1?Q?Olle_J=E4rnefors?=.
- [OK] encoded-word 6 =?ISO-8859-1?Q?Patrik_F=E4ltstr=F6m?=.
- [OK] encoded-word 7 =?iso-8859-8?b?7eXs+SDv4SDp7Oj08A==?=.
-
- Full test results in `~/.opam/5.3/.opam-switch/build/mrmime.0.7.0/_build/default/test/_build/_tests/rfc2047'.
- Test Successful in 0.002s. 8 tests run.
- (cd _build/default/test && ./test_date.exe --color=always)
- Testing `date'.
- This run has ID `M0WVS9UC'.
-
- [OK] valid date 0 "Fri, 21 Nov 1997 09:55:06 -0600".
- [OK] valid date 1 "Tue, 1 Jul 2003 10:52:37 +0200".
- [OK] valid date 2 "Thu, 13 Feb 1969 23:32:54 -0330".
- [OK] valid date 3 "Mon, 24 Nov 1997 14:22:01 -0800".
- [OK] valid date 4 "Thu,\r\n 13\r\n Feb\r\n 1969\r...
- [OK] valid date 5 "21 Nov 97 09:55:06 GMT".
- [OK] valid date 6 "Fri, 21 Nov 1997 09(comment): 55 ...
- [OK] valid date 7 "Fri, 21 Nov 1990 00:00:00.1234 -0000".
-
- Full test results in `~/.opam/5.3/.opam-switch/build/mrmime.0.7.0/_build/default/test/_build/_tests/date'.
- Test Successful in 0.001s. 8 tests run.
- (cd _build/default/test && ./test_message_id.exe --color=always)
- Testing `msg-id'.
- This run has ID `6SW1GHAI'.
-
- [OK] valid msg-id 0 <1234@local.machine.example>.
- [OK] valid msg-id 1 <5678.21-Nov-1997@example.com>.
- [OK] valid msg-id 2 <testabcd.1234@silly.example>.
- [OK] valid msg-id 3 <3456@example.net>.
- [OK] valid msg-id 4 <abcd.1234@local.machine.tld>.
- [OK] valid msg-id 5 <78910@example.net>.
- [OK] valid msg-id 6 <testabcd.1234@silly.t...
- [OK] valid msg-id 7 <1234 @ local(blah) .machine ....
- [OK] valid msg-id 8 <089e01493ca6f216ca04fafe7e67@googl...
- [OK] valid msg-id 9 <CAL4csrQ8JPJ+7MMrzn6wOTC8rPxOTdLoU...
- [OK] valid msg-id 10 <mirage/irmin/pull/378/c259513470@g...
- [OK] output 0 <FE47A9B@gmail.com>.
-
- Full test results in `~/.opam/5.3/.opam-switch/build/mrmime.0.7.0/_build/default/test/_build/_tests/msg-id'.
- Test Successful in 0.001s. 12 tests run.
- (cd _build/default/test && ./test_header.exe --color=always)
- Testing `header'.
- This run has ID `6WS9NXCL'.
-
- [OK] simple 0 valued header.
- [OK] simple 1 replace if exists.
- [OK] simple 2 replace if absent.
- [OK] content-type 0 default content type.
-
- Full test results in `~/.opam/5.3/.opam-switch/build/mrmime.0.7.0/_build/default/test/_build/_tests/header'.
- Test Successful in 0.000s. 4 tests run.
- (cd _build/default/test && ./test_hd.exe --color=always)
- Testing `hd'.
- This run has ID `2SMNZVES'.
-
- [OK] header 0 header-000.
- [OK] header 1 header-000.
-
- Full test results in `~/.opam/5.3/.opam-switch/build/mrmime.0.7.0/_build/default/test/_build/_tests/hd'.
- Test Successful in 0.001s. 2 tests run.
- (cd _build/default/test && ./rfc2045.exe --color=always)
- Testing `rfc2045'.
- This run has ID `GG30P98N'.
-
- [OK] content-type 0 text/plain; charset=us-ascii (Plain...
- [OK] content-type 1 text/plain; charset="us-ascii".
- [OK] content-type 2 text/plain; charset=ISO-8859-1.
-
- Full test results in `~/.opam/5.3/.opam-switch/build/mrmime.0.7.0/_build/default/test/_build/_tests/rfc2045'.
- Test Successful in 0.000s. 3 tests run.
- (cd _build/default/test && ./rfc5322.exe --color=always)
- Testing `rfc5322'.
- This run has ID `YSJ8KMAL'.
-
- [OK] header 0 header 0.
- [OK] header 1 header 1.
- [OK] header 2 header 2.
- [OK] header 3 header 3.
- [OK] header 4 header 4.
- [OK] header 5 header 5.
- [OK] header 6 header 6.
- [OK] header 7 header 7.
- [OK] header 8 header 8.
- [OK] header 9 header 9.
- [OK] header 10 header 10.
- [OK] header 11 header 11.
- [OK] header 12 header 12.
- [OK] header 13 header 13.
- [OK] header 14 header 14.
- [OK] header 15 header 15.
- [OK] header 16 header 16.
- [OK] header 17 header - content-type.
-
- Full test results in `~/.opam/5.3/.opam-switch/build/mrmime.0.7.0/_build/default/test/_build/_tests/rfc5322'.
- Test Successful in 0.005s. 18 tests run.
- (cd _build/default/test && ./test_mail.exe --color=always)
- Testing `mail'.
- This run has ID `PEUYKG15'.
-
- [OK] example 0 example 0.
- [OK] example 1 example 1.
- [OK] example 2 large subject.
- [OK] example 3 quoted-printable contents.
- [OK] example 4 7-bit contents.
-
- Full test results in `~/.opam/5.3/.opam-switch/build/mrmime.0.7.0/_build/default/test/_build/_tests/mail'.
- Test Successful in 0.007s. 5 tests run.
-> compiled mrmime.0.7.0
-> removed mrmime.0.7.0
-> installed mrmime.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 09:32.21 ---> saved as "c9dfea644771722645d7a2451696d358959842e0aa3e7916695225afdb498c35"
Job succeeded
2025-03-13 09:32.29: Job succeeded