(not at the head of any monitored branch or PR)
2026-03-19 09:47.34: New job: test uspf.0.1.0 with ppxlib.0.38.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29563/head (387e2f5b0d8ca5a51f4ba81536f829fd909dafd1)
                              on debian-13-ocaml-4.14/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/29563/head" && git reset --hard 387e2f5b
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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 ppxlib.0.38.0 0.38.0
RUN opam reinstall ppxlib.0.38.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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppxlib.0.38.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall uspf.0.1.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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'uspf.0.1.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 uspf.0.1.0) || true
RUN opam reinstall --with-test --verbose uspf.0.1.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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'uspf.0.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-19 09:47.34: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-ppxlib.0.38.0-uspf.0.1.0-387e2f5b0d8ca5a51f4ba81536f829fd909dafd1"
2026-03-19 09:47.34: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (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 ppxlib.0.38.0 0.38.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppxlib.0.38.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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ppxlib.0.38.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 uspf.0.1.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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'uspf.0.1.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 uspf.0.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose uspf.0.1.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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'uspf.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-19 09:47.34: Waiting for resource in pool OCluster
2026-03-19 10:32.58: Waiting for worker…
2026-03-19 10:37.18: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  75% (13884/18507)
Updating files:  76% (14066/18507)
Updating files:  77% (14251/18507)
Updating files:  78% (14436/18507)
Updating files:  79% (14621/18507)
Updating files:  80% (14806/18507)
Updating files:  81% (14991/18507)
Updating files:  82% (15176/18507)
Updating files:  83% (15361/18507)
Updating files:  84% (15546/18507)
Updating files:  85% (15731/18507)
Updating files:  86% (15917/18507)
Updating files:  87% (16102/18507)
Updating files:  88% (16287/18507)
Updating files:  89% (16472/18507)
Updating files:  90% (16657/18507)
Updating files:  91% (16842/18507)
Updating files:  92% (17027/18507)
Updating files:  93% (17212/18507)
Updating files:  94% (17397/18507)
Updating files:  95% (17582/18507)
Updating files:  96% (17767/18507)
Updating files:  97% (17952/18507)
Updating files:  98% (18137/18507)
Updating files:  99% (18322/18507)
Updating files: 100% (18507/18507)
Updating files: 100% (18507/18507), done.
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..387e2f5b0d
Fast-forward
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.

warning: There are too many unreachable loose objects; run 'git prune' to remove them.

 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 46 +++++++++++++++++++
 packages/ppxlib/ppxlib.0.38.0/opam             | 63 ++++++++++++++++++++++++++
 2 files changed, 109 insertions(+)
 create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam
 create mode 100644 packages/ppxlib/ppxlib.0.38.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-19 10:37.24 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-19 10:37.24 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-19 10:37.29 ---> saved as "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350"

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-19 10:37.30 ---> saved as "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-19 10:37.41 ---> saved as "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-19 10:37.54 ---> saved as "fefa9924e0604c66f1b63db7279b36eedced1f983ba1c47733fb7cfa56139b72"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-19 10:38.15 ---> saved as "53e26a609c7de6302da009a0d221ee07df3c5dfa4227388d9c79a2518a55dcb0"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [115 kB]
- Fetched 10.0 MB in 2s (5606 kB/s)
- Reading package lists...
- 
2026-03-19 10:38.19 ---> saved as "fdd8d751fb4b54449ac34bbfb1b82b1fc796cdd8e1f6b3aa49ab7fbeb661a77c"

/home/opam: (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
ppxlib is now pinned to version 0.38.0
2026-03-19 10:38.20 ---> saved as "14ae3bf112473780bb63ba3353907a440e666f94e2c715c888c53852d2f55d09"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppxlib.0.38.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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ppxlib.0.38.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install dune                3.22.0          [required by ppxlib]
  - install ocaml-compiler-libs v0.12.4         [required by ppxlib]
  - install ppx_derivers        1.2.1           [required by ppxlib]
  - install ppxlib              0.38.0 (pinned)
  - install sexplib0            v0.17.0         [required by ppxlib]
  - install stdlib-shims        0.3.0           [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:39.14 ---> saved as "2a66371f05f597ba1fbaf6b705b1d6e7d3ee38447debc1bedb841c891c9b57b4"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall uspf.0.1.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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'uspf.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
uspf.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 49 packages
  - install angstrom           0.16.1 [required by uspf]
  - install base-bytes         base   [required by ocplib-endian]
  - install base64             3.5.2  [required by dns, mrmime]
  - install bigstringaf        0.10.0 [required by angstrom]
  - install bstr               0.0.4  [required by mrmime]
  - install coin               0.1.5  [required by rosetta]
  - install colombe            0.12.1 [required by uspf]
  - install cppo               1.8.0  [required by lwt]
  - install csexp              1.5.2  [required by dune-configurator]
  - install digestif           1.3.0  [required by mirage-crypto-rng]
  - install dns                10.2.4 [required by uspf]
  - install dns-client         10.2.4 [required by uspf]
  - install domain-name        0.5.0  [required by uspf]
  - install dune-configurator  3.22.0 [required by bigstringaf, mirage-crypto-rng]
  - install duration           0.2.1  [required by dns]
  - install emile              1.1    [required by colombe, mrmime]
  - install eqaf               0.10   [required by digestif, mirage-crypto]
  - install fmt                0.11.0 [required by uspf]
  - install gmap               0.3.0  [required by dns]
  - install hmap               0.8.1  [required by uspf]
  - install ipaddr             5.6.2  [required by uspf]
  - install ke                 0.6    [required by mrmime]
  - install logs               0.10.0 [required by uspf]
  - install lru                0.3.1  [required by dns]
  - install lwt                6.1.1  [required by uspf]
  - install macaddr            5.6.2  [required by ipaddr]
  - install metrics            0.5.0  [required by dns]
  - install mirage-crypto      2.1.0  [required by mirage-crypto-rng]
  - install mirage-crypto-rng  2.1.0  [required by dns-client]
  - install mrmime             0.7.1  [required by uspf]
  - install mtime              2.1.0  [required by dns-client]
  - install ocaml-syntax-shims 1.0.0  [required by angstrom, colombe]
  - install ocamlbuild         0.16.1 [required by hmap]
  - install ocamlfind          1.9.8  [required by hmap]
  - install ocplib-endian      1.2    [required by lwt]
  - install ohex               0.2.0  [required by dns]
  - install pecu               0.7    [required by mrmime]
  - install prettym            0.0.4  [required by mrmime]
  - install psq                0.2.1  [required by lru]
  - install ptime              1.2.0  [required by dns, mrmime]
  - install randomconv         0.2.0  [required by dns-client]
  - install rosetta            0.4.0  [required by mrmime]
  - install seq                base   [required by psq]
  - install topkg              1.1.1  [required by hmap]
  - install unstrctrd          0.4    [required by mrmime]
  - install uspf               0.1.0
  - install uutf               1.0.4  [required by mrmime]
  - install uuuu               0.4.0  [required by rosetta]
  - install yuscii             0.3.0  [required by rosetta]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bstr.0.0.4  (cached)
-> retrieved coin.0.1.5  (cached)
-> retrieved colombe.0.12.1  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed base64.3.5.2
-> installed bstr.0.0.4
-> installed csexp.1.5.2
-> installed coin.0.1.5
-> retrieved digestif.1.3.0  (cached)
-> retrieved dns.10.2.4, dns-client.10.2.4  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> installed cppo.1.8.0
-> installed domain-name.0.5.0
-> retrieved dune-configurator.3.22.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved emile.1.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved ipaddr.5.6.2, macaddr.5.6.2  (cached)
-> retrieved ke.0.6  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt.6.1.1  (cached)
-> installed duration.0.2.1
-> retrieved metrics.0.5.0  (cached)
-> installed gmap.0.3.0
-> installed macaddr.5.6.2
-> installed eqaf.0.10
-> installed ipaddr.5.6.2
-> retrieved mirage-crypto.2.1.0, mirage-crypto-rng.2.1.0  (cached)
-> retrieved mrmime.0.7.1  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved pecu.0.7  (cached)
-> retrieved prettym.0.0.4  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved randomconv.0.2.0  (cached)
-> retrieved rosetta.0.4.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved topkg.1.1.1  (cached)
-> retrieved unstrctrd.0.4  (cached)
-> retrieved uspf.0.1.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed dune-configurator.3.22.0
-> installed ohex.0.2.0
-> retrieved uuuu.0.4.0  (cached)
-> retrieved yuscii.0.3.0  (cached)
-> installed pecu.0.7
-> installed randomconv.0.2.0
-> installed digestif.1.3.0
-> installed psq.0.2.1
-> installed yuscii.0.3.0
-> installed lru.0.3.1
-> installed bigstringaf.0.10.0
-> installed uuuu.0.4.0
-> installed ocaml-syntax-shims.1.0.0
-> installed rosetta.0.4.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.1.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed lwt.6.1.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed uutf.1.0.4
-> installed unstrctrd.0.4
-> installed fmt.0.11.0
-> installed mtime.2.1.0
-> installed emile.1.1
-> installed ptime.1.2.0
-> installed metrics.0.5.0
-> installed ke.0.6
-> installed colombe.0.12.1
-> installed prettym.0.0.4
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.1.0
-> installed mrmime.0.7.1
-> installed dns.10.2.4
-> installed dns-client.10.2.4
-> installed uspf.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:40.06 ---> saved as "e5eea3cbbc79938bd7c8f13dbca243949ff5f21f0ca1dbbbf3891146eb9a2fbc"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test uspf.0.1.0) || true"))
The following actions will be performed:
=== recompile 14 packages
  - recompile colombe           0.12.1 [uses emile, fmt]
  - recompile dns               10.2.4 [uses fmt]
  - recompile dns-client        10.2.4 [uses fmt]
  - recompile emile             1.1    [uses cmdliner]
  - recompile fmt               0.11.0 [uses cmdliner]
  - recompile ke                0.6    [uses fmt]
  - recompile logs              0.10.0 [uses cmdliner]
  - recompile metrics           0.5.0  [uses fmt]
  - recompile mirage-crypto-rng 2.1.0  [uses logs]
  - recompile mrmime            0.7.1  [uses emile, uutf]
  - recompile prettym           0.0.4  [uses ke]
  - recompile unstrctrd         0.4    [uses uutf]
  - recompile uspf              0.1.0
  - recompile uutf              1.0.4  [uses cmdliner]
=== install 5 packages
  - install   alcotest          1.9.1  [required by uspf]
  - install   astring           0.8.5  [required by alcotest]
  - install   cmdliner          2.1.0  [required by alcotest]
  - install   re                1.14.0 [required by alcotest]
  - install   rresult           0.7.0  [required by uspf]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved colombe.0.12.1  (https://opam.ocaml.org/cache)
-> retrieved dns.10.2.4, dns-client.10.2.4  (https://opam.ocaml.org/cache)
-> retrieved emile.1.1  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ke.0.6  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved metrics.0.5.0  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved mirage-crypto-rng.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved mrmime.0.7.1  (https://opam.ocaml.org/cache)
-> retrieved prettym.0.0.4  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0  (https://opam.ocaml.org/cache)
-> retrieved unstrctrd.0.4  (https://opam.ocaml.org/cache)
-> retrieved uspf.0.1.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed rresult.0.7.0
-> installed re.1.14.0
-> removed   uspf.0.1.0
-> removed   colombe.0.12.1
-> removed   dns-client.10.2.4
-> removed   dns.10.2.4
-> removed   metrics.0.5.0
-> removed   mirage-crypto-rng.2.1.0
-> removed   logs.0.10.0
-> removed   mrmime.0.7.1
-> removed   emile.1.1
-> removed   prettym.0.0.4
-> removed   ke.0.6
-> removed   fmt.0.11.0
-> removed   unstrctrd.0.4
-> removed   uutf.1.0.4
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ke.0.6
-> installed metrics.0.5.0
-> installed unstrctrd.0.4
-> installed emile.1.1
-> installed prettym.0.0.4
-> installed alcotest.1.9.1
-> installed colombe.0.12.1
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.1.0
-> installed mrmime.0.7.1
-> installed dns.10.2.4
-> installed dns-client.10.2.4
-> installed uspf.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:40.31 ---> saved as "c43964032bc80350d475a0fcc17fa19b7d2a6cd5fb6425c33400b1d123a83eda"

/home/opam: (run (shell  "opam reinstall --with-test --verbose uspf.0.1.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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'uspf.0.1.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 uspf 0.1.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [uspf.0.1.0: extract]
-> retrieved uspf.0.1.0  (cached)
Processing  2/4: [uspf: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "uspf" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/uspf.0.1.0)
Processing  2/4: [uspf: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "uspf" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/uspf.0.1.0)
- (cd _build/default/test && ./test_macro.exe --color=always)
- Testing `decoding'.
- This run has ID `LQPBENRG'.
- 
-   [OK]          macro           0   rfc7208.
-   [OK]          macro           1   rfc7208.
-   [OK]          record          0   record.
-   [OK]          record          1   record.
-   [OK]          spf             0   mx optional domain name.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/uspf.0.1.0/_build/default/test/_build/_tests/decoding'.
- Test Successful in 0.001s. 5 tests run.
-> compiled  uspf.0.1.0
-> removed   uspf.0.1.0
-> installed uspf.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:40.42 ---> saved as "670d399715713154c840398aeda423926d13317a98bd014bacad8e27b2427985"
Job succeeded
2026-03-19 10:41.11: Job succeeded