(for PR #27266)
2025-01-21 08:33.55: New job: test letters.0.4.0, using opam dev from https://github.com/ocaml/opam-repository.git#refs/pull/27266/head (51289d1c645e1ffe335afa071d1a8034750111ca) on debian-12-ocaml-4.14-no-flat-float-array/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/27266/head" && git reset --hard 51289d1c git fetch origin master git merge --no-edit 83221ae442ef8ff98271794533f4b8a77428f593 cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-4.14-no-flat-float-array@sha256:1d00a86d2f617877f808e4b2685fba3e67c5d257bdd14e263e141ac4a559437b 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 letters.0.4.0 0.4.0 RUN opam reinstall letters.0.4.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" != 'letters.0.4.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 letters.0.4.0) || true RUN opam reinstall --with-test --verbose letters.0.4.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" != 'letters.0.4.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-01-21 08:33.55: Using cache hint "ocaml/opam:debian-12-ocaml-4.14-no-flat-float-array@sha256:1d00a86d2f617877f808e4b2685fba3e67c5d257bdd14e263e141ac4a559437b-letters.0.4.0-51289d1c645e1ffe335afa071d1a8034750111ca" 2025-01-21 08:33.55: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-4.14-no-flat-float-array@sha256:1d00a86d2f617877f808e4b2685fba3e67c5d257bdd14e263e141ac4a559437b) (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 letters.0.4.0 0.4.0")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall letters.0.4.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\" != 'letters.0.4.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 letters.0.4.0) || true")) (run (shell "opam reinstall --with-test --verbose letters.0.4.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\" != 'letters.0.4.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-01-21 08:33.55: Waiting for resource in pool OCluster 2025-01-21 08:33.55: Waiting for worker… 2025-01-21 08:33.56: Got resource from pool OCluster Building on x86-bm-c5.sw.ocaml.org All commits already cached Updating files: 53% (15377/28967) Updating files: 54% (15643/28967) Updating files: 55% (15932/28967) Updating files: 56% (16222/28967) Updating files: 57% (16512/28967) Updating files: 58% (16801/28967) Updating files: 59% (17091/28967) Updating files: 60% (17381/28967) Updating files: 61% (17670/28967) Updating files: 62% (17960/28967) Updating files: 63% (18250/28967) Updating files: 64% (18539/28967) Updating files: 65% (18829/28967) Updating files: 66% (19119/28967) Updating files: 67% (19408/28967) Updating files: 68% (19698/28967) Updating files: 69% (19988/28967) Updating files: 70% (20277/28967) Updating files: 71% (20567/28967) Updating files: 72% (20857/28967) Updating files: 73% (21146/28967) Updating files: 74% (21436/28967) Updating files: 75% (21726/28967) Updating files: 76% (22015/28967) Updating files: 77% (22305/28967) Updating files: 78% (22595/28967) Updating files: 79% (22884/28967) Updating files: 80% (23174/28967) Updating files: 81% (23464/28967) Updating files: 82% (23753/28967) Updating files: 83% (24043/28967) Updating files: 84% (24333/28967) Updating files: 85% (24622/28967) Updating files: 86% (24912/28967) Updating files: 87% (25202/28967) Updating files: 88% (25491/28967) Updating files: 89% (25781/28967) Updating files: 90% (26071/28967) Updating files: 91% (26360/28967) Updating files: 92% (26650/28967) Updating files: 93% (26940/28967) Updating files: 94% (27229/28967) Updating files: 95% (27519/28967) Updating files: 96% (27809/28967) Updating files: 97% (28098/28967) Updating files: 98% (28388/28967) Updating files: 99% (28678/28967) Updating files: 100% (28967/28967) Updating files: 100% (28967/28967), done. HEAD is now at 83221ae442 Merge pull request #27227 from kit-ty-kate/ocaml-5.4.0-avoid-version Merge made by the 'ort' strategy. packages/letters/letters.0.4.0/opam | 54 +++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 packages/letters/letters.0.4.0/opam (from ocaml/opam:debian-12-ocaml-4.14-no-flat-float-array@sha256:1d00a86d2f617877f808e4b2685fba3e67c5d257bdd14e263e141ac4a559437b) 2025-01-21 08:35.47 ---> saved as "889a1462208c2a52acbbddc72b100861ebe11b7ff5720eb904940b58f1e95a7e" /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam")) 2025-01-21 08:35.47 ---> saved as "2c781e07af5dd05d6dd5a9254e7fa9ab35bd5c5de6e8f201e2d52f1f525b16bd" /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 [NOTE] The 'jobs' option was reset, its value was 39 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using: opam option jobs=39 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from file:///home/opam/opam-repository 2025-01-21 08:36.54 ---> saved as "2400c63a872c6d325120ac6b304eb40dc3eb2016da59b8dcb5e24dd103c45d70" /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 (26290a42e5a3dd44c3e2f8f743e6b8c391bdc206) # 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 31 # repositories 1 (local) # pinned 1 (version) # current-switch 4.14 # invariant ["ocaml-options-only-no-flat-float-array"] # compiler-packages ocaml-option-no-flat-float-array.1, ocaml-options-only-no-flat-float-array.1, ocaml-variants.4.14.2+options # 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+options+no-flat-float-array 2025-01-21 08:36.57 ---> saved as "7945a0cc195a479db04d0a46050241a8d0f99049459ffcf79efd5636a19ca94a" /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-01-21 08:37.10 ---> saved as "c2b089c0f64975f0087291e099ac45d5dd202ebd080e85130bd7284cc7296b21" /home/opam: (copy (src .) (dst opam-repository/)) 2025-01-21 08:37.27 ---> saved as "2086be09df7458085699a789ccd4d8ac821b8cb185f82fc244d41f3d22e46067" /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-01-21 08:38.16 ---> saved as "305bbc1f33d14b37a19156a59c82f7ea95dc2bec6e9f529cf8d1b48acbaf8c1d" /home/opam: (run (network host) (shell "opam update --depexts || true")) + /usr/bin/sudo "apt-get" "update" - Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] - 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 bookworm/main amd64 Packages [8792 kB] - Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [15.1 kB] - Get:6 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2025-01-14-2009.05-F-2025-01-14-2009.05.pdiff [5693 B] - Get:6 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2025-01-14-2009.05-F-2025-01-14-2009.05.pdiff [5693 B] - Get:7 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [241 kB] - Fetched 9309 kB in 1s (6543 kB/s) - Reading package lists... - 2025-01-21 08:38.18 ---> saved as "3f480edb695f6866ce31ea1e2a3d21bf7338afac49fcfcf576c7d1affae6c616" /home/opam: (run (shell "opam pin add -k version -yn letters.0.4.0 0.4.0")) letters is now pinned to version 0.4.0 2025-01-21 08:38.19 ---> saved as "6acef9091e6f4c988e117900fa2a77b9095bff0a4b48a77ba6425cf80f943ddc" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall letters.0.4.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\" != 'letters.0.4.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) letters.0.4.0 is not installed. Install it? [Y/n] y The following actions will be performed: === install 67 packages - install angstrom 0.16.1 [required by colombe, mrmime] - install asn1-combinators 0.3.2 [required by x509] - install astring 0.8.5 [required by bos] - install base-bytes base [required by ocplib-endian] - install base64 3.5.1 [required by mrmime, sendmail] - install bigarray-overlap 0.2.1 [required by mrmime] - install bigstringaf 0.10.0 [required by mrmime, sendmail] - install bos 0.2.1 [required by ca-certs] - install ca-certs 1.0.0 [required by letters] - install cmdliner 1.3.0 [required by tls-lwt] - install coin 0.1.4 [required by rosetta] - install colombe 0.11.0 [required by letters] - install conf-gmp 4 [required by conf-gmp-powm-sec, zarith] - install conf-gmp-powm-sec 3 [required by mirage-crypto-pk] - install conf-pkg-config 4 [required by bigarray-overlap] - install containers 3.15 [required by letters] - install cppo 1.8.0 [required by lwt] - install csexp 1.5.2 [required by dune-configurator] - install cstruct 6.2.0 [required by sendmail] - install digestif 1.2.0 [required by ca-certs] - install domain-name 0.4.0 [required by x509, tls] - install dune 3.17.1 [required by letters] - install dune-configurator 3.17.1 [required by containers] - install duration 0.2.1 [required by mirage-crypto-rng-lwt] - install either 1.0.0 [required by containers] - install emile 1.1 [required by colombe, mrmime] - install eqaf 0.10 [required by digestif, mirage-crypto] - install fmt 0.9.0 [required by letters] - install fpath 0.7.3 [required by letters] - install gmap 0.3.0 [required by x509] - install hxd 0.3.3 [required by sendmail] - install ipaddr 5.6.0 [required by colombe, mrmime] - install kdf 1.0.0 [required by x509, tls] - install ke 0.6 [required by mrmime, sendmail] - install letters 0.4.0 (pinned) - install logs 0.7.0 [required by ca-certs, sendmail] - install lwt 5.9.0 [required by letters] - install macaddr 5.6.0 [required by ipaddr] - install mirage-crypto 1.1.0 [required by ca-certs] - install mirage-crypto-ec 1.1.0 [required by x509, tls] - install mirage-crypto-pk 1.1.0 [required by x509, tls] - install mirage-crypto-rng 1.1.0 [required by tls, x509, mirage-crypto-rng-lwt] - install mirage-crypto-rng-lwt 1.1.0 [required by tls-lwt] - install mrmime 0.6.1 [required by letters] - install mtime 2.1.0 [required by mirage-crypto-rng-lwt] - install ocaml-syntax-shims 1.0.0 [required by colombe] - install ocamlbuild 0.15.0 [required by bos, ptime] - install ocamlfind 1.9.6 [required by bos, ptime] - install ocplib-endian 1.2 [required by lwt] - install ohex 0.2.0 [required by ca-certs] - install pecu 0.7 [required by mrmime] - install prettym 0.0.3 [required by mrmime] - install ptime 1.2.0 [required by letters] - install re 1.12.0 [required by coin, uuuu] - install rosetta 0.3.0 [required by mrmime] - install rresult 0.7.0 [required by sendmail] - install sendmail 0.11.0 [required by letters] - install seq base [required by re] - install tls 1.0.4 [required by letters] - install tls-lwt 1.0.4 [required by letters] - install topkg 1.0.7 [required by bos, ptime] - install unstrctrd 0.4 [required by mrmime] - install uutf 1.0.3 [required by mrmime] - install uuuu 0.3.0 [required by rosetta] - install x509 1.0.5 [required by letters] - install yuscii 0.3.0 [required by rosetta] - install zarith 1.14 [required by mirage-crypto-pk] The following system packages will first need to be installed: libgmp-dev 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" "libgmp-dev" "pkg-config" - debconf: delaying package configuration, since apt-utils is not installed - 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 ... 18745 files and directories currently installed.) - Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libgmp-dev:amd64. - Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libpkgconf3:amd64. - Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ... - Unpacking libpkgconf3:amd64 (1.8.1-1) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ... - Unpacking pkgconf-bin (1.8.1-1) ... - Selecting previously unselected package pkgconf:amd64. - Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ... - Unpacking pkgconf:amd64 (1.8.1-1) ... - Selecting previously unselected package pkg-config:amd64. - Preparing to unpack .../5-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 libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up pkgconf-bin (1.8.1-1) ... - Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-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 asn1-combinators.0.3.2 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved base64.3.5.1 (cached) -> retrieved bigarray-overlap.0.2.1 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved ca-certs.1.0.0 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved coin.0.1.4 (cached) -> retrieved colombe.0.11.0, sendmail.0.11.0 (cached) -> retrieved conf-gmp.4 (cached) -> retrieved conf-gmp-powm-sec.3 (cached) -> installed conf-pkg-config.4 -> installed conf-gmp.4 -> retrieved containers.3.15 (cached) -> installed conf-gmp-powm-sec.3 -> retrieved cppo.1.8.0 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved cstruct.6.2.0 (cached) -> retrieved digestif.1.2.0 (cached) -> retrieved domain-name.0.4.0 (cached) -> retrieved dune.3.17.1, dune-configurator.3.17.1 (cached) -> retrieved duration.0.2.1 (cached) -> retrieved either.1.0.0 (cached) -> retrieved emile.1.1 (cached) -> retrieved eqaf.0.10 (cached) -> retrieved fmt.0.9.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved gmap.0.3.0 (cached) -> retrieved hxd.0.3.3 (cached) -> retrieved ipaddr.5.6.0, macaddr.5.6.0 (cached) -> installed cmdliner.1.3.0 -> retrieved kdf.1.0.0 (cached) -> retrieved ke.0.6 (cached) -> retrieved letters.0.4.0 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved lwt.5.9.0 (cached) -> retrieved mirage-crypto.1.1.0, mirage-crypto-ec.1.1.0, mirage-crypto-pk.1.1.0, mirage-crypto-rng.1.1.0, mirage-crypto-rng-lwt.1.1.0 (cached) -> retrieved mrmime.0.6.1 (cached) -> retrieved mtime.2.1.0 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocamlbuild.0.15.0 (cached) -> retrieved ocamlfind.1.9.6 (cached) -> retrieved ocplib-endian.1.2 (cached) -> retrieved ohex.0.2.0 (cached) -> retrieved pecu.0.7 (cached) -> retrieved prettym.0.0.3 (cached) -> retrieved ptime.1.2.0 (cached) -> retrieved re.1.12.0 (cached) -> retrieved rosetta.0.3.0 (cached) -> retrieved rresult.0.7.0 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved tls.1.0.4, tls-lwt.1.0.4 (cached) -> retrieved topkg.1.0.7 (cached) -> retrieved unstrctrd.0.4 (cached) -> retrieved uutf.1.0.3 (cached) -> retrieved uuuu.0.3.0 (cached) -> retrieved x509.1.0.5 (cached) -> retrieved yuscii.0.3.0 (cached) -> retrieved zarith.1.14 (cached) -> installed ocamlfind.1.9.6 -> installed base-bytes.base -> installed ocamlbuild.0.15.0 -> installed zarith.1.14 -> installed topkg.1.0.7 -> installed rresult.0.7.0 -> installed mtime.2.1.0 -> installed uutf.1.0.3 -> installed fmt.0.9.0 -> installed ptime.1.2.0 -> installed astring.0.8.5 -> installed fpath.0.7.3 -> installed dune.3.17.1 -> installed csexp.1.5.2 -> installed asn1-combinators.0.3.2 -> installed base64.3.5.1 -> installed bigarray-overlap.0.2.1 -> installed cppo.1.8.0 -> installed cstruct.6.2.0 -> installed domain-name.0.4.0 -> installed duration.0.2.1 -> installed either.1.0.0 -> installed eqaf.0.10 -> installed gmap.0.3.0 -> installed ke.0.6 -> installed macaddr.5.6.0 -> installed ocaml-syntax-shims.1.0.0 -> installed ohex.0.2.0 -> installed pecu.0.7 -> installed re.1.12.0 -> installed yuscii.0.3.0 -> installed ocplib-endian.1.2 -> installed ipaddr.5.6.0 -> installed coin.0.1.4 -> installed uuuu.0.3.0 -> installed digestif.1.2.0 -> installed rosetta.0.3.0 -> installed dune-configurator.3.17.1 -> installed bigstringaf.0.10.0 -> installed angstrom.0.16.1 -> installed prettym.0.0.3 -> installed unstrctrd.0.4 -> installed emile.1.1 -> installed colombe.0.11.0 -> installed containers.3.15 -> installed mirage-crypto.1.1.0 -> installed mrmime.0.6.1 -> installed kdf.1.0.0 -> installed lwt.5.9.0 -> installed hxd.0.3.3 -> installed logs.0.7.0 -> installed mirage-crypto-rng.1.1.0 -> installed mirage-crypto-rng-lwt.1.1.0 -> installed mirage-crypto-pk.1.1.0 -> installed bos.0.2.1 -> installed mirage-crypto-ec.1.1.0 -> installed x509.1.0.5 -> installed ca-certs.1.0.0 -> installed tls.1.0.4 -> installed tls-lwt.1.0.4 -> installed sendmail.0.11.0 -> installed letters.0.4.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-01-21 08:39.40 ---> saved as "877b18b6a0e1de60377155e4d660d1f159ef0b8fe8b548cf1da46265525c5ace" /home/opam: (run (network host) (shell "(opam reinstall --with-test letters.0.4.0) || true")) The following actions will be performed: === recompile 1 package - recompile letters 0.4.0 (pinned) === install 4 packages - install alcotest 1.8.0 [required by letters] - install alcotest-lwt 1.8.0 [required by letters] - install stdlib-shims 0.3.0 [required by alcotest] - install yojson 2.2.2 [required by letters] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved alcotest.1.8.0, alcotest-lwt.1.8.0 (https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz) -> retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz) -> installed stdlib-shims.0.3.0 -> retrieved yojson.2.2.2 (https://github.com/ocaml-community/yojson/releases/download/2.2.2/yojson-2.2.2.tbz) -> installed alcotest.1.8.0 -> installed alcotest-lwt.1.8.0 -> removed letters.0.4.0 -> installed yojson.2.2.2 -> installed letters.0.4.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-01-21 08:39.52 ---> saved as "dc4dd7604a6dc769c511f1602b78a6288dde414876a25d052becf809b67e9388" /home/opam: (run (shell "opam reinstall --with-test --verbose letters.0.4.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\" != 'letters.0.4.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 letters 0.4.0 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 2/4: [letters: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "letters" "-j" "31" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/letters.0.4.0) - (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.letters.objs/byte -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/colombe -I /home/opam/.opam/4.14/lib/colombe/emile -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/emile -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/mrmime -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sendmail -I /home/opam/.opam/4.14/lib/sendmail/starttls -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls-lwt -I /home/opam/.opam/4.14/lib/x509 -intf-suffix .ml -no-alias-deps -open Letters__ -o lib/.letters.objs/byte/letters__Sendmail_handler.cmo -c -impl lib/sendmail_handler.ml) - File "lib/sendmail_handler.ml", line 44, characters 7-21: - 44 | ?authentication - ^^^^^^^^^^^^^^ - Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased. - File "lib/sendmail_handler.ml", line 42, characters 7-11: - 42 | ?port - ^^^^ - Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased. - File "lib/sendmail_handler.ml", line 102, characters 33-47: - 102 | let run ~hostname ?port ~domain ?authentication ~tls_authenticator ~from ~recipients ~mail - ^^^^^^^^^^^^^^ - Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased. - File "lib/sendmail_handler.ml", line 102, characters 19-23: - 102 | let run ~hostname ?port ~domain ?authentication ~tls_authenticator ~from ~recipients ~mail - ^^^^ - Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased. - (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/.letters.objs/byte -I lib/.letters.objs/native -I /home/opam/.opam/4.14/lib/ca-certs -I /home/opam/.opam/4.14/lib/colombe -I /home/opam/.opam/4.14/lib/colombe/emile -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/emile -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/mrmime -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sendmail -I /home/opam/.opam/4.14/lib/sendmail/starttls -I /home/opam/.opam/4.14/lib/tls -I /home/opam/.opam/4.14/lib/tls-lwt -I /home/opam/.opam/4.14/lib/x509 -intf-suffix .ml -no-alias-deps -open Letters__ -o lib/.letters.objs/native/letters__Sendmail_handler.cmx -c -impl lib/sendmail_handler.ml) - File "lib/sendmail_handler.ml", line 44, characters 7-21: - 44 | ?authentication - ^^^^^^^^^^^^^^ - Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased. - File "lib/sendmail_handler.ml", line 42, characters 7-11: - 42 | ?port - ^^^^ - Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased. - File "lib/sendmail_handler.ml", line 102, characters 33-47: - 102 | let run ~hostname ?port ~domain ?authentication ~tls_authenticator ~from ~recipients ~mail - ^^^^^^^^^^^^^^ - Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased. - File "lib/sendmail_handler.ml", line 102, characters 19-23: - 102 | let run ~hostname ?port ~domain ?authentication ~tls_authenticator ~from ~recipients ~mail - ^^^^ - Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased. - (cd _build/default/test && ./test.exe) - Testing `model'. - This run has ID `NCGI2F7R'. - - [OK] config 0 create config. - - Full test results in `~/.opam/4.14/.opam-switch/build/letters.0.4.0/_build/default/test/_build/_tests/model'. - Test Successful in 0.000s. 1 test run. -> compiled letters.0.4.0 -> removed letters.0.4.0 -> installed letters.0.4.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-01-21 08:40.00 ---> saved as "c987e955379bb56b9ea0cc1b5e78b3921cfca60e03208a4fefda8998576a9fa4" Job succeeded 2025-01-21 08:40.06: Job succeeded