(not at the head of any monitored branch or PR)
2026-03-21 20:12.21: New job: test wcwidth.1.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29580/head (12d2331fdee26d7e84a131bb5cc836ef7cad7595)
                              on debian-13-ocaml-4.14-nnpchecker/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/29580/head" && git reset --hard 12d2331f
git fetch origin master
git merge --no-edit 76bf2ed9443fdee37e6f046c6295d358be3f8598
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:4fa6539d7babf8637c12ce8b555fc585b2edd150ea87a16148b48f8aaffd00e9
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 wcwidth.1.1.0 1.1.0
RUN opam reinstall wcwidth.1.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" != 'wcwidth.1.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 wcwidth.1.1.0) || true
RUN opam reinstall --with-test --verbose wcwidth.1.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" != 'wcwidth.1.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-21 20:12.21: Using cache hint "ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:4fa6539d7babf8637c12ce8b555fc585b2edd150ea87a16148b48f8aaffd00e9-wcwidth.1.1.0-12d2331fdee26d7e84a131bb5cc836ef7cad7595"
2026-03-21 20:12.21: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:4fa6539d7babf8637c12ce8b555fc585b2edd150ea87a16148b48f8aaffd00e9)
 (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 wcwidth.1.1.0 1.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall wcwidth.1.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\" != 'wcwidth.1.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 wcwidth.1.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose wcwidth.1.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\" != 'wcwidth.1.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-21 20:12.21: Waiting for resource in pool OCluster
2026-03-21 20:12.22: Waiting for worker…
2026-03-21 20:14.13: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files:  89% (16490/18510)
Updating files:  90% (16659/18510)
Updating files:  91% (16845/18510)
Updating files:  92% (17030/18510)
Updating files:  93% (17215/18510)
Updating files:  94% (17400/18510)
Updating files:  95% (17585/18510)
Updating files:  96% (17770/18510)
Updating files:  97% (17955/18510)
Updating files:  98% (18140/18510)
Updating files:  99% (18325/18510)
Updating files: 100% (18510/18510)
Updating files: 100% (18510/18510), done.
HEAD is now at 76bf2ed944 Merge pull request #29572 from hannesm/release-letsencrypt-v2.0.0
Updating 76bf2ed944..12d2331fde
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/wcwidth/wcwidth.1.1.0/opam | 38 +++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)
 create mode 100644 packages/wcwidth/wcwidth.1.1.0/opam

(from ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:4fa6539d7babf8637c12ce8b555fc585b2edd150ea87a16148b48f8aaffd00e9)
2026-03-21 20:14.27 ---> saved as "fe1a12c31c3c1eb332e19d90554025bdbe264fe7e0670b3e5e03005c59acc828"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-21 20:14.28 ---> saved as "e828689caa9f4cef38d04ebad417e7fdb68160a37d15f0103b4f970c76962d9a"

/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-21 20:15.08 ---> saved as "8ae23286fbfe981398940f6959e8114bf5e6d1b3fec22c43e5e3ca9461612285"

/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-options-only-nnpchecker"]
# compiler-packages    ocaml-option-nnpchecker.1, ocaml-options-only-nnpchecker.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
2026-03-21 20:15.12 ---> saved as "bea5f02fd4f6e9f172da7bb85806100e195a367aa134813c750af226dd5902c1"

/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-21 20:15.26 ---> saved as "842d10c2cb6719479fbdcf12aaa0fa417895569f3f80c6717d43863b8592754c"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-21 20:15.53 ---> saved as "2faf1dcd3c91bbcc7ed0c7fb72f57c9ad11b1684c0f6e1e6efb029e00416977b"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-21 20:16.19 ---> saved as "b97ccd99f7aaa7b8b844269f381f24e47369310cfe6aca1af0c33adb41cb7865"

/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 [114 kB]
- Fetched 10.0 MB in 1s (6742 kB/s)
- Reading package lists...
- 
2026-03-21 20:16.23 ---> saved as "9229a84faadc559f5459eaab20084b5ee3acac911f82f1eeb432af112a90e32e"

/home/opam: (run (shell "opam pin add -k version -yn wcwidth.1.1.0 1.1.0"))
wcwidth is now pinned to version 1.1.0
2026-03-21 20:16.25 ---> saved as "ce5b22a38b8c56b1e7f4d7382686c5842d567c5c93cb480e51ede12c6786b795"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall wcwidth.1.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\" != 'wcwidth.1.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"))
wcwidth.1.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dune    3.22.0         [required by wcwidth]
  - install wcwidth 1.1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0  (cached)
-> retrieved wcwidth.1.1.0  (cached)
-> installed dune.3.22.0
-> installed wcwidth.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 20:17.22 ---> saved as "8055a9c16063774b2e790ca64f10980399eeb6b967b596822aeb3c08a2ab3a9b"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test wcwidth.1.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile wcwidth            1.1.0 (pinned)
=== install 11 packages
  - install   alcotest           1.9.1          [required by wcwidth]
  - install   astring            0.8.5          [required by alcotest]
  - install   cmdliner           2.1.0          [required by alcotest]
  - install   fmt                0.11.0         [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0          [required by alcotest]
  - install   ocamlbuild         0.16.1         [required by fmt, astring, uutf]
  - install   ocamlfind          1.9.8          [required by fmt, astring, uutf]
  - install   re                 1.14.0         [required by alcotest]
  - install   stdlib-shims       0.3.0          [required by alcotest]
  - install   topkg              1.1.1          [required by fmt, astring, uutf]
  - install   uutf               1.0.4          [required by alcotest]

<><> 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 fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved wcwidth.1.1.0  (https://github.com/alan-turing-institute/wcwidth-ocaml/archive/refs/tags/v1.1.0.tar.gz)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed   wcwidth.1.1.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed wcwidth.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 20:17.59 ---> saved as "31cde0abe74c265507505a999ada6ffd8bdeb2d7be84809e44e4736b04e45b5d"

/home/opam: (run (shell  "opam reinstall --with-test --verbose wcwidth.1.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\" != 'wcwidth.1.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 wcwidth 1.1.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [wcwidth.1.1.0: extract]
-> retrieved wcwidth.1.1.0  (cached)
Processing  2/4: [wcwidth: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "wcwidth" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/wcwidth.1.1.0)
- (cd _build/default/test && ./wcwidth_test.exe)
- Testing `package:wcwidth'.
- This run has ID `K58AEBL2'.
- 
-   [OK]          function:wcswidth          0   ASCII.
-   [OK]          function:wcswidth          1   Empty string.
-   [OK]          function:wcswidth          2   Newline.
-   [OK]          function:wcswidth          3   Swan emoji.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/wcwidth.1.1.0/_build/default/test/_build/_tests/packageU+003Awcwidth'.
- Test Successful in 0.001s. 4 tests run.
-> compiled  wcwidth.1.1.0
-> removed   wcwidth.1.1.0
-> installed wcwidth.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 20:18.09 ---> saved as "318fa794ba12cfae6d15f1754729ad0b0e563abc54a0f3a09d62a423e6b4f291"
Job succeeded
2026-03-21 20:18.42: Job succeeded