2024-02-11 20:23.54: New job: test sihl-email.0.1.8 with conf-pkg-config.1.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/25235/head (8c7391d6ec81e93f24de221eb32a886b72d1ede6)
                              on debian-12-ocaml-5.1/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/25235/head" && git reset --hard 8c7391d6
git fetch origin master
git merge --no-edit 8477e9a74beb40d85534ab7653b65d45607a147f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="500"
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
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam pin add -k version -yn conf-pkg-config.1.1 1.1
RUN opam reinstall conf-pkg-config.1.1; \
    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" != 'conf-pkg-config.1.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam reinstall sihl-email.0.1.8; \
    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" != 'sihl-email.0.1.8' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN (opam reinstall --with-test sihl-email.0.1.8) || true
RUN opam reinstall --with-test --verbose sihl-email.0.1.8; \
    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" != 'sihl-email.0.1.8' && 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 .

2024-02-11 20:23.54: Using cache hint "ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930-conf-pkg-config.1.1-sihl-email.0.1.8-8c7391d6ec81e93f24de221eb32a886b72d1ede6"
2024-02-11 20:23.54: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930)
 (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"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 500)
 (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"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (shell "opam pin add -k version -yn conf-pkg-config.1.1 1.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-pkg-config.1.1;\
             \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\" != 'conf-pkg-config.1.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall sihl-email.0.1.8;\
             \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\" != 'sihl-email.0.1.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (network host)
      (shell "(opam reinstall --with-test sihl-email.0.1.8) || true"))
 (run (shell  "opam reinstall --with-test --verbose sihl-email.0.1.8;\
             \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\" != 'sihl-email.0.1.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-02-11 20:23.54: Waiting for resource in pool OCluster
2024-02-12 20:06.56: Waiting for worker…
2024-02-12 20:08.08: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
Updating files:  87% (28657/32918)
Updating files:  88% (28968/32918)
Updating files:  89% (29298/32918)
Updating files:  90% (29627/32918)
Updating files:  91% (29956/32918)
Updating files:  92% (30285/32918)
Updating files:  93% (30614/32918)
Updating files:  94% (30943/32918)
Updating files:  95% (31273/32918)
Updating files:  96% (31602/32918)
Updating files:  97% (31931/32918)
Updating files:  98% (32260/32918)
Updating files:  99% (32589/32918)
Updating files: 100% (32918/32918)
Updating files: 100% (32918/32918), done.
HEAD is now at 8477e9a74b Merge pull request #25221 from nberth/mlgmpidl-1.3.0
Updating 8477e9a74b..8c7391d6ec
Fast-forward
 packages/conf-pkg-config/conf-pkg-config.1.0/opam | 2 +-
 packages/conf-pkg-config/conf-pkg-config.1.1/opam | 1 +
 packages/conf-pkg-config/conf-pkg-config.1.2/opam | 1 +
 packages/conf-pkg-config/conf-pkg-config.1.3/opam | 1 +
 packages/conf-pkg-config/conf-pkg-config.2/opam   | 1 +
 packages/conf-pkg-config/conf-pkg-config.3/opam   | 4 +++-
 6 files changed, 8 insertions(+), 2 deletions(-)

(from ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930)
2024-02-12 20:08.47 ---> using "4df7ce52b8e0afe130cbfff7d9b001e43cae58bd8e8710cd073ce7c11b1c6ac8" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-02-12 20:08.47 ---> using "2ee14a5dbb7aa54ab1dfa5adba4422c5a5483941525d4174e8eeed0c4c5e97aa" 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~alpha, 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 71 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=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-02-12 20:08.47 ---> using "d58131e4d084860f74dbebecfc9a35ebb7fbb42cf58093b5ac6cf0adf11ed898" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 500)

/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/"))
2024-02-12 20:08.47 ---> using "e76676ee91f5598b65d18de047738848e5af056a75e3436903dc82ff5702c5a6" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-02-12 20:08.48 ---> using "00dcf922e87fec2f8ccdd0b44355d41faed143c596db4bfe8812d0e9c5f33f02" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-02-12 20:08.48 ---> using "d6c8604b98b9d01914259989eafdfad7780b6c9f761a469dfe3162a56ba73510" from cache

/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 [52.1 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 [8786 kB]
- Get:5 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [137 kB]
- Fetched 9175 kB in 1s (6257 kB/s)
- Reading package lists...
- 
2024-02-12 20:08.48 ---> using "6245d7929b862e6b37f451133c05d21883283d0248743f67197f2e424fe52d69" from cache

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (shell "opam pin add -k version -yn conf-pkg-config.1.1 1.1"))
conf-pkg-config is now pinned to version 1.1
2024-02-12 20:08.48 ---> using "efd69474de39398f08b803f28b1c0635d272139b0c33f4b0a322013c52989663" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conf-pkg-config.1.1;\
                        \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\" != 'conf-pkg-config.1.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
conf-pkg-config.1.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install conf-pkg-config 1.1 (pinned)

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 ... 18774 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+deb12u4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.1.1
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-12 20:08.48 ---> using "0686843ae3c31f38ac5563a3bcd57d9eed648c8dbf66daffdc86057dfb09ccb3" from cache

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall sihl-email.0.1.8;\
                        \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\" != 'sihl-email.0.1.8' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
sihl-email.0.1.8 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 119 packages
  - install alcotest            1.7.0   [required by sihl]
  - install angstrom            0.16.0  [required by mrmime, colombe, caqti]
  - install asn1-combinators    0.2.6   [required by x509]
  - install astring             0.8.5   [required by ca-certs, alcotest]
  - install base                v0.15.1 [required by fieldslib, ppx_fields_conv]
  - install base-bytes          base    [required by ocplib-endian]
  - install base64              3.5.1   [required by sendmail, mrmime, jwto]
  - install bigarray-overlap    0.2.1   [required by mrmime]
  - install bigstringaf         0.9.1   [required by sendmail, mrmime, caqti]
  - install biniou              1.2.2   [required by yojson]
  - install bos                 0.2.1   [required by ca-certs]
  - install ca-certs            0.2.3   [required by letters]
  - install camlp-streams       5.0.1   [required by biniou]
  - install caqti               1.9.0   [required by sihl]
  - install caqti-lwt           1.9.0   [required by sihl]
  - install cmdliner            1.2.0   [required by opium, alcotest, uuidm]
  - install cohttp              5.3.1   [required by opium_kernel]
  - install cohttp-lwt          5.3.0   [required by cohttp-lwt-unix, opium_kernel]
  - install cohttp-lwt-unix     5.3.0   [required by opium]
  - install coin                0.1.4   [required by rosetta]
  - install colombe             0.8.0   [required by letters]
  - install conduit             6.1.0   [required by conduit-lwt]
  - install conduit-lwt         6.1.0   [required by cohttp-lwt-unix]
  - install conduit-lwt-unix    6.1.0   [required by cohttp-lwt-unix]
  - install conf-gmp            4       [required by zarith, conf-gmp-powm-sec]
  - install conf-gmp-powm-sec   3       [required by mirage-crypto-pk]
  - install conf-libssl         4       [required by ssl]
  - install conformist          0.2.1   [required by sihl]
  - install containers          3.13.1  [required by sihl]
  - install cppo                1.6.9   [required by caqti]
  - install csexp               1.5.2   [required by dune-configurator]
  - install cstruct             6.2.0   [required by sendmail]
  - install cstruct-sexp        6.2.0   [required by tls]
  - install digestif            1.1.4   [required by jwto]
  - install domain-name         0.4.0   [required by x509, tls]
  - install dune                3.13.1  [required by sihl-email]
  - install dune-configurator   3.13.1  [required by containers]
  - install duration            0.2.1   [required by mirage-crypto-rng]
  - install easy-format         1.3.4   [required by yojson]
  - install either              1.0.0   [required by containers]
  - install emile               1.1     [required by colombe, mrmime]
  - install eqaf                0.9     [required by mirage-crypto, digestif]
  - install ezjsonm             1.3.0   [required by opium]
  - install fieldslib           v0.15.0 [required by opium_kernel]
  - install fmt                 0.9.0   [required by letters, sihl]
  - install fpath               0.7.3   [required by letters]
  - install gmap                0.3.0   [required by x509]
  - install hex                 1.5.0   [required by ezjsonm]
  - install hkdf                1.0.4   [required by tls]
  - install hmap                0.8.1   [required by opium_kernel]
  - install ipaddr              5.5.0   [required by colombe, mrmime]
  - install ipaddr-sexp         5.5.0   [required by tls]
  - install jsonm               1.0.2   [required by ezjsonm]
  - install jwto                0.4.0   [required by sihl]
  - install ke                  0.6     [required by mrmime, sendmail]
  - install letters             0.3.2   [required by sihl-email]
  - install logs                0.7.0   [required by sihl]
  - install lwt                 5.7.0   [required by letters, sihl]
  - install lwt_ppx             2.1.0   [required by multipart-form-data]
  - install lwt_ssl             1.2.0   [required by sihl]
  - install macaddr             5.5.0   [required by ipaddr]
  - install magic-mime          1.3.1   [required by opium]
  - install mirage-crypto       0.10.7  [required by ca-certs]
  - install mirage-crypto-ec    0.10.7  [required by x509, tls]
  - install mirage-crypto-pk    0.10.7  [required by x509, tls]
  - install mirage-crypto-rng   0.10.7  [required by x509, tls]
  - install mirage-no-solo5     1       [required by mirage-crypto-pk]
  - install mirage-no-xen       1       [required by mirage-crypto-pk]
  - install mrmime              0.6.0   [required by letters]
  - install mtime               2.0.0   [required by mirage-crypto-rng]
  - install multipart-form-data 0.3.0   [required by sihl]
  - install num                 1.5     [required by sexplib]
  - install ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0   [required by colombe, alcotest]
  - install ocamlbuild          0.14.3  [required by uuidm]
  - install ocamlfind           1.9.6   [required by uuidm]
  - install ocplib-endian       1.2     [required by lwt]
  - install opium               0.18.0  [required by sihl]
  - install opium_kernel        0.18.0  [required by opium]
  - install parsexp             v0.15.0 [required by sexplib]
  - install pbkdf               1.2.0   [required by x509]
  - install pecu                0.6     [required by mrmime]
  - install ppx_cstruct         6.2.0   [required by tls]
  - install ppx_derivers        1.2.1   [required by ppx_deriving]
  - install ppx_deriving        5.2.1   [required by jwto, ppx_deriving_yojson]
  - install ppx_deriving_yojson 3.7.0   [required by sihl]
  - install ppx_fields_conv     v0.15.0 [required by sihl]
  - install ppx_sexp_conv       v0.15.1 [required by sihl]
  - install ppxlib              0.32.0  [required by ppx_deriving_yojson]
  - install prettym             0.0.3   [required by mrmime]
  - install ptime               1.1.0   [required by letters]
  - install re                  1.11.0  [required by opium, alcotest, jwto, tyxml]
  - install result              1.5     [required by ppx_deriving_yojson]
  - install rosetta             0.3.0   [required by mrmime]
  - install rresult             0.7.0   [required by sendmail]
  - install safepass            3.1     [required by sihl]
  - install sendmail            0.8.0   [required by letters]
  - install seq                 base    [required by tyxml]
  - install sexplib             v0.15.1 [required by sihl]
  - install sexplib0            v0.15.1 [required by ezjsonm]
  - install sihl                0.1.8   [required by sihl-email]
  - install sihl-email          0.1.8
  - install ssl                 0.7.0   [required by sihl]
  - install stdlib-shims        0.3.0   [required by alcotest]
  - install stringext           1.6.0   [required by multipart-form-data]
  - install tls                 0.15.4  [required by letters, sihl]
  - install topkg               1.0.7   [required by uuidm]
  - install tsort               2.0.0   [required by sihl]
  - install tyxml               4.6.0   [required by sihl]
  - install unstrctrd           0.3     [required by mrmime]
  - install uri                 4.4.0   [required by caqti]
  - install uri-sexp            4.4.0   [required by cohttp]
  - install uuidm               0.9.8   [required by sihl]
  - install uutf                1.0.3   [required by alcotest, mrmime, tyxml]
  - install uuuu                0.3.0   [required by rosetta]
  - install x509                0.16.5  [required by letters]
  - install yojson              1.7.0   [required by sihl]
  - install yuscii              0.3.0   [required by rosetta]
  - install zarith              1.13    [required by asn1-combinators, mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-dev libssl-dev

<><> 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" "libssl-dev"
- 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 ... 18810 files and directories currently installed.)
- Preparing to unpack .../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 .../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 libssl-dev:amd64.
- Preparing to unpack .../libssl-dev_3.0.11-1~deb12u2_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.0.11-1~deb12u2) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libssl-dev:amd64 (3.0.11-1~deb12u2) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Processing triggers for libc-bin (2.36-9+deb12u4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.7.0  (cached)
-> retrieved angstrom.0.16.0  (cached)
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.15.1  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved bigarray-overlap.0.2.1  (cached)
-> retrieved bigstringaf.0.9.1  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.0.2.3  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved caqti.1.9.0, caqti-lwt.1.9.0  (cached)
-> retrieved cmdliner.1.2.0  (cached)
-> retrieved cohttp.5.3.1  (cached)
-> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0  (cached)
-> retrieved coin.0.1.4  (cached)
-> retrieved colombe.0.8.0, sendmail.0.8.0  (cached)
-> retrieved conduit.6.1.0, conduit-lwt.6.1.0, conduit-lwt-unix.6.1.0  (cached)
-> retrieved conformist.0.2.1  (cached)
-> retrieved containers.3.13.1  (cached)
-> installed conf-libssl.4
-> retrieved cppo.1.6.9  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp.4
-> retrieved cstruct.6.2.0, cstruct-sexp.6.2.0, ppx_cstruct.6.2.0  (cached)
-> installed conf-gmp-powm-sec.3
-> retrieved digestif.1.1.4  (cached)
-> retrieved domain-name.0.4.0  (cached)
-> retrieved dune.3.13.1, dune-configurator.3.13.1  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved emile.1.1  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fieldslib.v0.15.0  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved hkdf.1.0.4  (cached)
-> installed cmdliner.1.2.0
-> retrieved hmap.0.8.1  (cached)
-> retrieved ipaddr.5.5.0, ipaddr-sexp.5.5.0, macaddr.5.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved jwto.0.4.0  (cached)
-> retrieved ke.0.6  (cached)
-> retrieved letters.0.3.2  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lwt.5.7.0  (cached)
-> retrieved lwt_ppx.2.1.0  (cached)
-> retrieved lwt_ssl.1.2.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved mirage-crypto.0.10.7, mirage-crypto-ec.0.10.7, mirage-crypto-pk.0.10.7, mirage-crypto-rng.0.10.7  (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved mrmime.0.6.0  (cached)
-> retrieved mtime.2.0.0  (cached)
-> retrieved multipart-form-data.0.3.0  (cached)
-> retrieved num.1.5  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.14.3  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved opium.0.18.0, opium_kernel.0.18.0  (cached)
-> retrieved parsexp.v0.15.0  (cached)
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved pecu.0.6  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.5.2.1  (cached)
-> retrieved ppx_deriving_yojson.3.7.0  (cached)
-> retrieved ppx_fields_conv.v0.15.0  (cached)
-> retrieved ppx_sexp_conv.v0.15.1  (cached)
-> retrieved ppxlib.0.32.0  (cached)
-> retrieved prettym.0.0.3  (cached)
-> retrieved ptime.1.1.0  (cached)
-> retrieved re.1.11.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rosetta.0.3.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved safepass.3.1  (cached)
-> installed seq.base
-> retrieved sexplib.v0.15.1  (cached)
-> retrieved sexplib0.v0.15.1  (cached)
-> retrieved sihl.0.1.8, sihl-email.0.1.8  (cached)
-> retrieved ssl.0.7.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved tls.0.15.4  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved tsort.2.0.0  (cached)
-> retrieved tyxml.4.6.0  (cached)
-> retrieved unstrctrd.0.3  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uuidm.0.9.8  (cached)
-> retrieved uutf.1.0.3  (cached)
-> retrieved uuuu.0.3.0  (cached)
-> retrieved x509.0.16.5  (cached)
-> retrieved yojson.1.7.0  (cached)
-> retrieved yuscii.0.3.0  (cached)
-> retrieved zarith.1.13  (cached)
-> installed num.1.5
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocamlbuild.0.14.3
-> installed zarith.1.13
-> installed topkg.1.0.7
-> installed hmap.0.8.1
-> installed rresult.0.7.0
-> installed uuidm.0.9.8
-> installed uutf.1.0.3
-> installed mtime.2.0.0
-> installed fmt.0.9.0
-> installed ptime.1.1.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed dune.3.13.1
-> installed bigarray-overlap.0.2.1
-> installed conformist.0.2.1
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed csexp.1.5.2
-> installed base64.3.5.1
-> installed camlp-streams.5.0.1
-> installed cppo.1.6.9
-> installed cstruct.6.2.0
-> installed domain-name.0.4.0
-> installed easy-format.1.3.4
-> installed either.1.0.0
-> installed ke.0.6
-> installed macaddr.5.5.0
-> installed magic-mime.1.3.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed pecu.0.6
-> installed ppx_derivers.1.2.1
-> installed re.1.11.0
-> installed result.1.5
-> installed safepass.3.1
-> installed sexplib0.v0.15.1
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yuscii.0.3.0
-> installed hex.1.5.0
-> installed ocplib-endian.1.2
-> installed eqaf.0.9
-> installed ipaddr.5.5.0
-> installed asn1-combinators.0.2.6
-> installed ezjsonm.1.3.0
-> installed biniou.1.2.2
-> installed coin.0.1.4
-> installed uuuu.0.3.0
-> installed rosetta.0.3.0
-> installed alcotest.1.7.0
-> installed digestif.1.1.4
-> installed dune-configurator.3.13.1
-> installed yojson.1.7.0
-> installed bigstringaf.0.9.1
-> installed angstrom.0.16.0
-> installed prettym.0.0.3
-> installed tyxml.4.6.0
-> installed ssl.0.7.0
-> installed mirage-crypto.0.10.7
-> installed unstrctrd.0.3
-> installed containers.3.13.1
-> installed emile.1.1
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed tsort.2.0.0
-> installed colombe.0.8.0
-> installed uri.4.4.0
-> installed mrmime.0.6.0
-> installed lwt.5.7.0
-> installed lwt_ssl.1.2.0
-> installed logs.0.7.0
-> installed base.v0.15.1
-> installed mirage-crypto-rng.0.10.7
-> installed caqti.1.9.0
-> installed fieldslib.v0.15.0
-> installed mirage-crypto-pk.0.10.7
-> installed caqti-lwt.1.9.0
-> installed parsexp.v0.15.0
-> installed bos.0.2.1
-> installed sexplib.v0.15.1
-> installed cstruct-sexp.6.2.0
-> installed mirage-crypto-ec.0.10.7
-> installed ppxlib.0.32.0
-> installed x509.0.16.5
-> installed ca-certs.0.2.3
-> installed ppx_fields_conv.v0.15.0
-> installed ppx_cstruct.6.2.0
-> installed lwt_ppx.2.1.0
-> installed ppx_sexp_conv.v0.15.1
-> installed ppx_deriving.5.2.1
-> installed multipart-form-data.0.3.0
-> installed ipaddr-sexp.5.5.0
-> installed uri-sexp.4.4.0
-> installed jwto.0.4.0
-> installed ppx_deriving_yojson.3.7.0
-> installed conduit.6.1.0
-> installed cohttp.5.3.1
-> installed conduit-lwt.6.1.0
-> installed tls.0.15.4
-> installed sendmail.0.8.0
-> installed cohttp-lwt.5.3.0
-> installed letters.0.3.2
-> installed conduit-lwt-unix.6.1.0
-> installed opium_kernel.0.18.0
-> installed cohttp-lwt-unix.5.3.0
-> installed opium.0.18.0
-> installed sihl.0.1.8
-> installed sihl-email.0.1.8
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-12 20:10.08 ---> saved as "c422e530f22307dbc4bdc409dbfb741812052925300b03741d93cd71f946df4e"

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test sihl-email.0.1.8) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile sihl-email 0.1.8

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved sihl-email.0.1.8  (https://github.com/oxidizing/sihl/releases/download/0.1.8/sihl-queue-0.1.8.tbz)
-> removed   sihl-email.0.1.8
-> installed sihl-email.0.1.8
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-12 20:10.24 ---> saved as "43da0362e03d7a8e56ed79b4e390d7380af26df953b5cfa249b0f83ef164396c"

/home/opam: (run (shell  "opam reinstall --with-test --verbose sihl-email.0.1.8;\
                        \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\" != 'sihl-email.0.1.8' && 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 sihl-email 0.1.8

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4:
-> retrieved sihl-email.0.1.8  (cached)
Processing  2/4: [sihl-email: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sihl-email" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.1/.opam-switch/build/sihl-email.0.1.8)
- (cd _build/default && /home/opam/.opam/5.1/bin/ocamlc.opt -w -40 -g -bin-annot -I sihl-email/.sihl_email.objs/byte -I /home/opam/.opam/5.1/lib/alcotest -I /home/opam/.opam/5.1/lib/alcotest/engine -I /home/opam/.opam/5.1/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.1/lib/angstrom -I /home/opam/.opam/5.1/lib/asn1-combinators -I /home/opam/.opam/5.1/lib/astring -I /home/opam/.opam/5.1/lib/base -I /home/opam/.opam/5.1/lib/base/base_internalhash_types -I /home/opam/.opam/5.1/lib/base/caml -I /home/opam/.opam/5.1/lib/base/shadow_stdlib -I /home/opam/.opam/5.1/lib/base64 -I /home/opam/.opam/5.1/lib/base64/rfc2045 -I /home/opam/.opam/5.1/lib/bigarray-overlap -I /home/opam/.opam/5.1/lib/bigstringaf -I /home/opam/.opam/5.1/lib/biniou -I /home/opam/.opam/5.1/lib/bos -I /home/opam/.opam/5.1/lib/bytes -I /home/opam/.opam/5.1/lib/ca-certs -I /home/opam/.opam/5.1/lib/camlp-streams -I /home/opam/.opam/5.1/lib/caqti -I /home/opam/.opam/5.1/lib/caqti-lwt -I /home/opam/.opam/5.1/lib/cmdliner -I /home/opam/.opam/5.1/lib/cohttp -I /home/opam/.opam/5.1/lib/cohttp-lwt -I /home/opam/.opam/5.1/lib/cohttp-lwt-unix -I /home/opam/.opam/5.1/lib/coin -I /home/opam/.opam/5.1/lib/colombe -I /home/opam/.opam/5.1/lib/colombe/emile -I /home/opam/.opam/5.1/lib/conduit -I /home/opam/.opam/5.1/lib/conduit-lwt -I /home/opam/.opam/5.1/lib/conduit-lwt-unix -I /home/opam/.opam/5.1/lib/conformist -I /home/opam/.opam/5.1/lib/containers -I /home/opam/.opam/5.1/lib/containers/monomorphic -I /home/opam/.opam/5.1/lib/cstruct -I /home/opam/.opam/5.1/lib/cstruct-sexp -I /home/opam/.opam/5.1/lib/digestif -I /home/opam/.opam/5.1/lib/domain-name -I /home/opam/.opam/5.1/lib/duration -I /home/opam/.opam/5.1/lib/easy-format -I /home/opam/.opam/5.1/lib/either -I /home/opam/.opam/5.1/lib/emile -I /home/opam/.opam/5.1/lib/eqaf -I /home/opam/.opam/5.1/lib/eqaf/bigstring -I /home/opam/.opam/5.1/lib/eqaf/cstruct -I /home/opam/.opam/5.1/lib/ezjsonm -I /home/opam/.opam/5.1/lib/fieldslib -I /home/opam/.opam/5.1/lib/fmt -I /home/opam/.opam/5.1/lib/fpath -I /home/opam/.opam/5.1/lib/gmap -I /home/opam/.opam/5.1/lib/hex -I /home/opam/.opam/5.1/lib/hkdf -I /home/opam/.opam/5.1/lib/hmap -I /home/opam/.opam/5.1/lib/ipaddr -I /home/opam/.opam/5.1/lib/ipaddr-sexp -I /home/opam/.opam/5.1/lib/ipaddr/unix -I /home/opam/.opam/5.1/lib/jsonm -I /home/opam/.opam/5.1/lib/jwto -I /home/opam/.opam/5.1/lib/ke -I /home/opam/.opam/5.1/lib/letters -I /home/opam/.opam/5.1/lib/logs -I /home/opam/.opam/5.1/lib/lwt -I /home/opam/.opam/5.1/lib/lwt/unix -I /home/opam/.opam/5.1/lib/lwt_ssl -I /home/opam/.opam/5.1/lib/macaddr -I /home/opam/.opam/5.1/lib/magic-mime -I /home/opam/.opam/5.1/lib/mirage-crypto -I /home/opam/.opam/5.1/lib/mirage-crypto-ec -I /home/opam/.opam/5.1/lib/mirage-crypto-pk -I /home/opam/.opam/5.1/lib/mirage-crypto-rng -I /home/opam/.opam/5.1/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/5.1/lib/mirage-crypto-rng/unix -I /home/opam/.opam/5.1/lib/mrmime -I /home/opam/.opam/5.1/lib/mtime -I /home/opam/.opam/5.1/lib/mtime/clock/os -I /home/opam/.opam/5.1/lib/multipart-form-data -I /home/opam/.opam/5.1/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.1/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.1/lib/ocaml/compiler-libs -I /home/opam/.opam/5.1/lib/ocaml/str -I /home/opam/.opam/5.1/lib/ocaml/threads -I /home/opam/.opam/5.1/lib/ocaml/unix -I /home/opam/.opam/5.1/lib/ocplib-endian -I /home/opam/.opam/5.1/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.1/lib/opium -I /home/opam/.opam/5.1/lib/opium_kernel -I /home/opam/.opam/5.1/lib/parsexp -I /home/opam/.opam/5.1/lib/pbkdf -I /home/opam/.opam/5.1/lib/pecu -I /home/opam/.opam/5.1/lib/ppx_derivers -I /home/opam/.opam/5.1/lib/ppx_deriving/api -I /home/opam/.opam/5.1/lib/ppx_deriving/create -I /home/opam/.opam/5.1/lib/ppx_deriving/enum -I /home/opam/.opam/5.1/lib/ppx_deriving/eq -I /home/opam/.opam/5.1/lib/ppx_deriving/fold -I /home/opam/.opam/5.1/lib/ppx_deriving/iter -I /home/opam/.opam/5.1/lib/ppx_deriving/make -I /home/opam/.opam/5.1/lib/ppx_deriving/map -I /home/opam/.opam/5.1/lib/ppx_deriving/ord -I /home/opam/.opam/5.1/lib/ppx_deriving/runtime -I /home/opam/.opam/5.1/lib/ppx_deriving/show -I /home/opam/.opam/5.1/lib/ppx_deriving/std -I /home/opam/.opam/5.1/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/5.1/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.1/lib/ppxlib -I /home/opam/.opam/5.1/lib/ppxlib/ast -I /home/opam/.opam/5.1/lib/ppxlib/astlib -I /home/opam/.opam/5.1/lib/ppxlib/print_diff -I /home/opam/.opam/5.1/lib/ppxlib/stdppx -I /home/opam/.opam/5.1/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.1/lib/prettym -I /home/opam/.opam/5.1/lib/ptime -I /home/opam/.opam/5.1/lib/ptime/clock/os -I /home/opam/.opam/5.1/lib/re -I /home/opam/.opam/5.1/lib/re/str -I /home/opam/.opam/5.1/lib/result -I /home/opam/.opam/5.1/lib/rosetta -I /home/opam/.opam/5.1/lib/rresult -I /home/opam/.opam/5.1/lib/safepass -I /home/opam/.opam/5.1/lib/sendmail -I /home/opam/.opam/5.1/lib/sendmail/starttls -I /home/opam/.opam/5.1/lib/seq -I /home/opam/.opam/5.1/lib/sexplib -I /home/opam/.opam/5.1/lib/sexplib0 -I /home/opam/.opam/5.1/lib/sihl -I /home/opam/.opam/5.1/lib/sihl/authn -I /home/opam/.opam/5.1/lib/sihl/authz -I /home/opam/.opam/5.1/lib/sihl/core -I /home/opam/.opam/5.1/lib/sihl/database -I /home/opam/.opam/5.1/lib/sihl/email -I /home/opam/.opam/5.1/lib/sihl/http -I /home/opam/.opam/5.1/lib/sihl/message -I /home/opam/.opam/5.1/lib/sihl/middleware -I /home/opam/.opam/5.1/lib/sihl/migration -I /home/opam/.opam/5.1/lib/sihl/password-reset -I /home/opam/.opam/5.1/lib/sihl/queue -I /home/opam/.opam/5.1/lib/sihl/repository -I /home/opam/.opam/5.1/lib/sihl/schedule -I /home/opam/.opam/5.1/lib/sihl/session -I /home/opam/.opam/5.1/lib/sihl/storage -I /home/opam/.opam/5.1/lib/sihl/token -I /home/opam/.opam/5.1/lib/sihl/user -I /home/opam/.opam/5.1/lib/sihl/utils -I /home/opam/.opam/5.1/lib/ssl -I /home/opam/.opam/5.1/lib/stdlib-shims -I /home/opam/.opam/5.1/lib/stringext -I /home/opam/.opam/5.1/lib/tls -I /home/opam/.opam/5.1/lib/tls/lwt -I /home/opam/.opam/5.1/lib/tsort -I /home/opam/.opam/5.1/lib/tyxml -I /home/opam/.opam/5.1/lib/tyxml/functor -I /home/opam/.opam/5.1/lib/unstrctrd -I /home/opam/.opam/5.1/lib/unstrctrd/parser -I /home/opam/.opam/5.1/lib/uri -I /home/opam/.opam/5.1/lib/uri-sexp -I /home/opam/.opam/5.1/lib/uri/services -I /home/opam/.opam/5.1/lib/uuidm -I /home/opam/.opam/5.1/lib/uutf -I /home/opam/.opam/5.1/lib/uuuu -I /home/opam/.opam/5.1/lib/x509 -I /home/opam/.opam/5.1/lib/yojson -I /home/opam/.opam/5.1/lib/yuscii -I /home/opam/.opam/5.1/lib/zarith -no-alias-deps -open Sihl_email__ -o sihl-email/.sihl_email.objs/byte/sihl_email__Sihl_email_template.cmo -c -impl sihl-email/sihl_email_template.ml)
- File "sihl-email/sihl_email_template.ml", line 77, characters 8-30:
- 77 |         Caqti_request.find_opt
-              ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.find_opt
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 104, characters 8-30:
- 104 |         Caqti_request.find_opt
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.find_opt
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 131, characters 8-26:
- 131 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 156, characters 8-26:
- 156 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 175, characters 8-26:
- 175 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 236, characters 8-30:
- 236 |         Caqti_request.find_opt
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.find_opt
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 257, characters 8-30:
- 257 |         Caqti_request.find_opt
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.find_opt
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 278, characters 8-26:
- 278 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 303, characters 8-26:
- 303 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 322, characters 8-26:
- 322 |         Caqti_request.exec Caqti_type.unit "TRUNCATE TABLE email_templates CASCADE;"
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- (cd _build/default && /home/opam/.opam/5.1/bin/ocamlopt.opt -w -40 -g -I sihl-email/.sihl_email.objs/byte -I sihl-email/.sihl_email.objs/native -I /home/opam/.opam/5.1/lib/alcotest -I /home/opam/.opam/5.1/lib/alcotest/engine -I /home/opam/.opam/5.1/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.1/lib/angstrom -I /home/opam/.opam/5.1/lib/asn1-combinators -I /home/opam/.opam/5.1/lib/astring -I /home/opam/.opam/5.1/lib/base -I /home/opam/.opam/5.1/lib/base/base_internalhash_types -I /home/opam/.opam/5.1/lib/base/caml -I /home/opam/.opam/5.1/lib/base/shadow_stdlib -I /home/opam/.opam/5.1/lib/base64 -I /home/opam/.opam/5.1/lib/base64/rfc2045 -I /home/opam/.opam/5.1/lib/bigarray-overlap -I /home/opam/.opam/5.1/lib/bigstringaf -I /home/opam/.opam/5.1/lib/biniou -I /home/opam/.opam/5.1/lib/bos -I /home/opam/.opam/5.1/lib/bytes -I /home/opam/.opam/5.1/lib/ca-certs -I /home/opam/.opam/5.1/lib/camlp-streams -I /home/opam/.opam/5.1/lib/caqti -I /home/opam/.opam/5.1/lib/caqti-lwt -I /home/opam/.opam/5.1/lib/cmdliner -I /home/opam/.opam/5.1/lib/cohttp -I /home/opam/.opam/5.1/lib/cohttp-lwt -I /home/opam/.opam/5.1/lib/cohttp-lwt-unix -I /home/opam/.opam/5.1/lib/coin -I /home/opam/.opam/5.1/lib/colombe -I /home/opam/.opam/5.1/lib/colombe/emile -I /home/opam/.opam/5.1/lib/conduit -I /home/opam/.opam/5.1/lib/conduit-lwt -I /home/opam/.opam/5.1/lib/conduit-lwt-unix -I /home/opam/.opam/5.1/lib/conformist -I /home/opam/.opam/5.1/lib/containers -I /home/opam/.opam/5.1/lib/containers/monomorphic -I /home/opam/.opam/5.1/lib/cstruct -I /home/opam/.opam/5.1/lib/cstruct-sexp -I /home/opam/.opam/5.1/lib/digestif -I /home/opam/.opam/5.1/lib/domain-name -I /home/opam/.opam/5.1/lib/duration -I /home/opam/.opam/5.1/lib/easy-format -I /home/opam/.opam/5.1/lib/either -I /home/opam/.opam/5.1/lib/emile -I /home/opam/.opam/5.1/lib/eqaf -I /home/opam/.opam/5.1/lib/eqaf/bigstring -I /home/opam/.opam/5.1/lib/eqaf/cstruct -I /home/opam/.opam/5.1/lib/ezjsonm -I /home/opam/.opam/5.1/lib/fieldslib -I /home/opam/.opam/5.1/lib/fmt -I /home/opam/.opam/5.1/lib/fpath -I /home/opam/.opam/5.1/lib/gmap -I /home/opam/.opam/5.1/lib/hex -I /home/opam/.opam/5.1/lib/hkdf -I /home/opam/.opam/5.1/lib/hmap -I /home/opam/.opam/5.1/lib/ipaddr -I /home/opam/.opam/5.1/lib/ipaddr-sexp -I /home/opam/.opam/5.1/lib/ipaddr/unix -I /home/opam/.opam/5.1/lib/jsonm -I /home/opam/.opam/5.1/lib/jwto -I /home/opam/.opam/5.1/lib/ke -I /home/opam/.opam/5.1/lib/letters -I /home/opam/.opam/5.1/lib/logs -I /home/opam/.opam/5.1/lib/lwt -I /home/opam/.opam/5.1/lib/lwt/unix -I /home/opam/.opam/5.1/lib/lwt_ssl -I /home/opam/.opam/5.1/lib/macaddr -I /home/opam/.opam/5.1/lib/magic-mime -I /home/opam/.opam/5.1/lib/mirage-crypto -I /home/opam/.opam/5.1/lib/mirage-crypto-ec -I /home/opam/.opam/5.1/lib/mirage-crypto-pk -I /home/opam/.opam/5.1/lib/mirage-crypto-rng -I /home/opam/.opam/5.1/lib/mirage-crypto-rng/lwt -I /home/opam/.opam/5.1/lib/mirage-crypto-rng/unix -I /home/opam/.opam/5.1/lib/mrmime -I /home/opam/.opam/5.1/lib/mtime -I /home/opam/.opam/5.1/lib/mtime/clock/os -I /home/opam/.opam/5.1/lib/multipart-form-data -I /home/opam/.opam/5.1/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.1/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.1/lib/ocaml/compiler-libs -I /home/opam/.opam/5.1/lib/ocaml/str -I /home/opam/.opam/5.1/lib/ocaml/threads -I /home/opam/.opam/5.1/lib/ocaml/unix -I /home/opam/.opam/5.1/lib/ocplib-endian -I /home/opam/.opam/5.1/lib/ocplib-endian/bigstring -I /home/opam/.opam/5.1/lib/opium -I /home/opam/.opam/5.1/lib/opium_kernel -I /home/opam/.opam/5.1/lib/parsexp -I /home/opam/.opam/5.1/lib/pbkdf -I /home/opam/.opam/5.1/lib/pecu -I /home/opam/.opam/5.1/lib/ppx_derivers -I /home/opam/.opam/5.1/lib/ppx_deriving/api -I /home/opam/.opam/5.1/lib/ppx_deriving/create -I /home/opam/.opam/5.1/lib/ppx_deriving/enum -I /home/opam/.opam/5.1/lib/ppx_deriving/eq -I /home/opam/.opam/5.1/lib/ppx_deriving/fold -I /home/opam/.opam/5.1/lib/ppx_deriving/iter -I /home/opam/.opam/5.1/lib/ppx_deriving/make -I /home/opam/.opam/5.1/lib/ppx_deriving/map -I /home/opam/.opam/5.1/lib/ppx_deriving/ord -I /home/opam/.opam/5.1/lib/ppx_deriving/runtime -I /home/opam/.opam/5.1/lib/ppx_deriving/show -I /home/opam/.opam/5.1/lib/ppx_deriving/std -I /home/opam/.opam/5.1/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/5.1/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.1/lib/ppxlib -I /home/opam/.opam/5.1/lib/ppxlib/ast -I /home/opam/.opam/5.1/lib/ppxlib/astlib -I /home/opam/.opam/5.1/lib/ppxlib/print_diff -I /home/opam/.opam/5.1/lib/ppxlib/stdppx -I /home/opam/.opam/5.1/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.1/lib/prettym -I /home/opam/.opam/5.1/lib/ptime -I /home/opam/.opam/5.1/lib/ptime/clock/os -I /home/opam/.opam/5.1/lib/re -I /home/opam/.opam/5.1/lib/re/str -I /home/opam/.opam/5.1/lib/result -I /home/opam/.opam/5.1/lib/rosetta -I /home/opam/.opam/5.1/lib/rresult -I /home/opam/.opam/5.1/lib/safepass -I /home/opam/.opam/5.1/lib/sendmail -I /home/opam/.opam/5.1/lib/sendmail/starttls -I /home/opam/.opam/5.1/lib/seq -I /home/opam/.opam/5.1/lib/sexplib -I /home/opam/.opam/5.1/lib/sexplib0 -I /home/opam/.opam/5.1/lib/sihl -I /home/opam/.opam/5.1/lib/sihl/authn -I /home/opam/.opam/5.1/lib/sihl/authz -I /home/opam/.opam/5.1/lib/sihl/core -I /home/opam/.opam/5.1/lib/sihl/database -I /home/opam/.opam/5.1/lib/sihl/email -I /home/opam/.opam/5.1/lib/sihl/http -I /home/opam/.opam/5.1/lib/sihl/message -I /home/opam/.opam/5.1/lib/sihl/middleware -I /home/opam/.opam/5.1/lib/sihl/migration -I /home/opam/.opam/5.1/lib/sihl/password-reset -I /home/opam/.opam/5.1/lib/sihl/queue -I /home/opam/.opam/5.1/lib/sihl/repository -I /home/opam/.opam/5.1/lib/sihl/schedule -I /home/opam/.opam/5.1/lib/sihl/session -I /home/opam/.opam/5.1/lib/sihl/storage -I /home/opam/.opam/5.1/lib/sihl/token -I /home/opam/.opam/5.1/lib/sihl/user -I /home/opam/.opam/5.1/lib/sihl/utils -I /home/opam/.opam/5.1/lib/ssl -I /home/opam/.opam/5.1/lib/stdlib-shims -I /home/opam/.opam/5.1/lib/stringext -I /home/opam/.opam/5.1/lib/tls -I /home/opam/.opam/5.1/lib/tls/lwt -I /home/opam/.opam/5.1/lib/tsort -I /home/opam/.opam/5.1/lib/tyxml -I /home/opam/.opam/5.1/lib/tyxml/functor -I /home/opam/.opam/5.1/lib/unstrctrd -I /home/opam/.opam/5.1/lib/unstrctrd/parser -I /home/opam/.opam/5.1/lib/uri -I /home/opam/.opam/5.1/lib/uri-sexp -I /home/opam/.opam/5.1/lib/uri/services -I /home/opam/.opam/5.1/lib/uuidm -I /home/opam/.opam/5.1/lib/uutf -I /home/opam/.opam/5.1/lib/uuuu -I /home/opam/.opam/5.1/lib/x509 -I /home/opam/.opam/5.1/lib/yojson -I /home/opam/.opam/5.1/lib/yuscii -I /home/opam/.opam/5.1/lib/zarith -intf-suffix .ml -no-alias-deps -open Sihl_email__ -o sihl-email/.sihl_email.objs/native/sihl_email__Sihl_email_template.cmx -c -impl sihl-email/sihl_email_template.ml)
- File "sihl-email/sihl_email_template.ml", line 77, characters 8-30:
- 77 |         Caqti_request.find_opt
-              ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.find_opt
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 104, characters 8-30:
- 104 |         Caqti_request.find_opt
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.find_opt
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 131, characters 8-26:
- 131 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 156, characters 8-26:
- 156 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 175, characters 8-26:
- 175 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 236, characters 8-30:
- 236 |         Caqti_request.find_opt
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.find_opt
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 257, characters 8-30:
- 257 |         Caqti_request.find_opt
-               ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.find_opt
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 278, characters 8-26:
- 278 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 303, characters 8-26:
- 303 |         Caqti_request.exec
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
- 
- File "sihl-email/sihl_email_template.ml", line 322, characters 8-26:
- 322 |         Caqti_request.exec Caqti_type.unit "TRUNCATE TABLE email_templates CASCADE;"
-               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Caqti_request.exec
- Replaced by the Infix module.
-> compiled  sihl-email.0.1.8
-> removed   sihl-email.0.1.8
-> installed sihl-email.0.1.8
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-12 20:10.38 ---> saved as "8aed7e88878e7bbec6271c8194d0bda545a8b591b7ebfe9a6dc84ee2f7b57c23"
Job succeeded
2024-02-12 20:10.55: Job succeeded