(not at the head of any monitored branch or PR)
2026-04-12 05:56.57: New job: test atdpy.4.0.0, using opam 2.0
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29709/head (8e5a62aa6ff8e3285a53d2ca2cbe0dc69bc99426)
                              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/29709/head" && git reset --hard 8e5a62aa
git fetch origin master
git merge --no-edit 0404939bde256ca9d097922f265c4342b3b383b0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn atdpy.4.0.0 4.0.0
RUN opam depext atdpy.4.0.0 && opam reinstall atdpy.4.0.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" != 'atdpy.4.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam depext --with-test atdpy.4.0.0 && opam reinstall --with-test atdpy.4.0.0) || true
RUN opam depext --with-test atdpy.4.0.0 && opam reinstall --with-test --verbose atdpy.4.0.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" != 'atdpy.4.0.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-04-12 05:56.57: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-atdpy.4.0.0-8e5a62aa6ff8e3285a53d2ca2cbe0dc69bc99426"
2026-04-12 05:56.57: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "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 depext -u || true"))
 (run (shell "opam pin add -k version -yn atdpy.4.0.0 4.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam depext atdpy.4.0.0 && opam reinstall atdpy.4.0.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\" != 'atdpy.4.0.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 depext --with-test atdpy.4.0.0 && opam reinstall --with-test atdpy.4.0.0) || true"))
 (run (shell  "opam depext --with-test atdpy.4.0.0 && opam reinstall --with-test --verbose atdpy.4.0.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\" != 'atdpy.4.0.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-04-12 05:56.57: Waiting for resource in pool OCluster
2026-04-12 06:13.01: Waiting for worker…
2026-04-12 06:14.34: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  87% (16338/18686)
Updating files:  88% (16444/18686)
Updating files:  89% (16631/18686)
Updating files:  90% (16818/18686)
Updating files:  91% (17005/18686)
Updating files:  92% (17192/18686)
Updating files:  93% (17378/18686)
Updating files:  94% (17565/18686)
Updating files:  95% (17752/18686)
Updating files:  96% (17939/18686)
Updating files:  97% (18126/18686)
Updating files:  98% (18313/18686)
Updating files:  99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 0404939bde Merge pull request #29648 from sanette/opam-publish-tsdl-ttf.0.7
Updating 0404939bde..8e5a62aa6f
Fast-forward
 packages/atd-jsonlike/atd-jsonlike.4.1.0/opam      | 119 +++++++++++++++++++
 packages/atd-yamlx/atd-yamlx.4.1.0/opam            | 121 +++++++++++++++++++
 packages/atd/atd.4.1.0/opam                        | 126 ++++++++++++++++++++
 packages/atdcpp/atdcpp.4.0.0/opam                  |   2 +-
 packages/atdcpp/atdcpp.4.1.0/opam                  | 117 ++++++++++++++++++
 packages/atdd/atdd.4.0.0/opam                      |   2 +-
 packages/atdd/atdd.4.1.0/opam                      | 117 ++++++++++++++++++
 .../atdgen-codec-runtime.4.1.0/opam                | 116 ++++++++++++++++++
 packages/atdgen-runtime/atdgen-runtime.4.1.0/opam  | 118 +++++++++++++++++++
 packages/atdgen/atdgen.4.0.0/opam                  |   2 +-
 packages/atdgen/atdgen.4.1.0/opam                  | 131 +++++++++++++++++++++
 packages/atdj/atdj.4.0.0/opam                      |   2 +-
 packages/atdj/atdj.4.1.0/opam                      | 130 ++++++++++++++++++++
 packages/atdml/atdml.4.0.0/opam                    |   2 +-
 packages/atdml/atdml.4.1.0/opam                    | 122 +++++++++++++++++++
 packages/atdpy/atdpy.4.0.0/opam                    |   2 +-
 packages/atdpy/atdpy.4.1.0/opam                    | 119 +++++++++++++++++++
 packages/atds/atds.4.0.0/opam                      |   2 +-
 packages/atds/atds.4.1.0/opam                      | 115 ++++++++++++++++++
 packages/atdts/atdts.4.0.0/opam                    |   2 +-
 packages/atdts/atdts.4.1.0/opam                    | 118 +++++++++++++++++++
 21 files changed, 1577 insertions(+), 8 deletions(-)
 create mode 100644 packages/atd-jsonlike/atd-jsonlike.4.1.0/opam
 create mode 100644 packages/atd-yamlx/atd-yamlx.4.1.0/opam
 create mode 100644 packages/atd/atd.4.1.0/opam
 create mode 100644 packages/atdcpp/atdcpp.4.1.0/opam
 create mode 100644 packages/atdd/atdd.4.1.0/opam
 create mode 100644 packages/atdgen-codec-runtime/atdgen-codec-runtime.4.1.0/opam
 create mode 100644 packages/atdgen-runtime/atdgen-runtime.4.1.0/opam
 create mode 100644 packages/atdgen/atdgen.4.1.0/opam
 create mode 100644 packages/atdj/atdj.4.1.0/opam
 create mode 100644 packages/atdml/atdml.4.1.0/opam
 create mode 100644 packages/atdpy/atdpy.4.1.0/opam
 create mode 100644 packages/atds/atds.4.1.0/opam
 create mode 100644 packages/atdts/atdts.4.1.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-12 06:14.46 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2026-04-12 06:14.46 ---> using "c10282e0dbd394c173c8629599c0cf8ef48b99364becd04fb81c193278a0e3cf" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.

[WARNING] Recommended dependencies -- most packages rely on these:
  - m4

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-04-12 06:15.40 ---> saved as "61002cb1496beab5433c4322c54f65efb70dca8afbb20314e2699af4a83c5228"

/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version      2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b) 
# self-upgrade      no
# system            arch=x86_64 os=linux os-distribution=debian os-version=13
# solver            builtin-mccs+glpk
# install-criteria  -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria  -removed,-count[version-lag,solution],-new
# jobs              71
# repositories      1 (version-controlled)
# pinned            1 (version)
# current-switch    4.14
2026-04-12 06:15.41 ---> saved as "3aad554ebb8c056a22b107991820ba4faef0f0455b19dbb5c71b258cdee811a7"

/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-04-12 06:15.51 ---> saved as "07e3bc0230d74032e5f3dff15fb95968d47b1e35511d36218822ddd36839b6bd"

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-12 06:16.07 ---> saved as "646cd34923eb5d8ee4e6a76d60f0a258b73703cc732003e03af6899429335bb1"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-04-12 06:16.18 ---> saved as "1a3413942db4af0fe3ef6d92586deb8c43d53553b67b9e9559a8d6a39bcedf48"

/home/opam: (run (network host)
                 (shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "sudo":
    apt-get update
Hit:1 http://deb.debian.org/debian trixie InRelease
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-security trixie-security/main amd64 Packages [121 kB]
Fetched 212 kB in 0s (1816 kB/s)
Reading package lists...
# OS package update successful
2026-04-12 06:16.20 ---> saved as "ae4e9145d9601ec550061973433dff8c1f96fe5d602069b2d38fbd4062e6621d"

/home/opam: (run (shell "opam pin add -k version -yn atdpy.4.0.0 4.0.0"))
atdpy is now pinned to version 4.0.0
2026-04-12 06:16.20 ---> saved as "eca9e0a3d9bc820def8547a089a6f6215da204e1b86e1980683d71f19d7b8c90"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam depext atdpy.4.0.0 && opam reinstall atdpy.4.0.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\" != 'atdpy.4.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
atdpy.4.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install dune        3.22.1   [required by atdpy]
  - install cmdliner    2.1.0    [required by atdpy]
  - install yojson      3.0.0    [required by atd]
  - install re          1.14.0   [required by atdpy]
  - install menhirSdk   20230608 [required by menhir]
  - install menhirLib   20230608 [required by menhir]
  - install easy-format 1.3.4    [required by atd]
  - install menhir      20230608 [required by atd]
  - install atd         4.0.0    [required by atdpy]
  - install atdpy       4.0.0*
===== 10 to install =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[atd.4.0.0] found in cache
[atdpy.4.0.0] found in cache
[cmdliner.2.1.0] found in cache
[dune.3.22.1] found in cache
[easy-format.1.3.4] found in cache
[menhir.20230608] found in cache
[menhirLib.20230608] found in cache
[menhirSdk.20230608] found in cache
[re.1.14.0] found in cache
[yojson.3.0.0] found in cache

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed cmdliner.2.1.0
-> installed dune.3.22.1
-> installed easy-format.1.3.4
-> installed menhirSdk.20230608
-> installed menhirLib.20230608
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed menhir.20230608
-> installed atd.4.0.0
-> installed atdpy.4.0.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-04-12 06:17.18 ---> saved as "e1cf3b09efcdf3040538bf1f22fee53acd6fa6553129c2358b12fe987ad7d0bb"

/home/opam: (run (network host)
                 (shell "(opam depext --with-test atdpy.4.0.0 && opam reinstall --with-test atdpy.4.0.0) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# The following system packages are needed:
python3
The following command needs to be run through "sudo":
    apt-get install -qq -yy python3
Selecting previously unselected package libpython3.13-minimal: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 ... 20623 files and directories currently installed.)
Preparing to unpack .../libpython3.13-minimal_3.13.5-2_amd64.deb ...
Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
Selecting previously unselected package python3.13-minimal.
Preparing to unpack .../python3.13-minimal_3.13.5-2_amd64.deb ...
Unpacking python3.13-minimal (3.13.5-2) ...
Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
Setting up python3.13-minimal (3.13.5-2) ...
Selecting previously unselected package python3-minimal.
(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 ... 20948 files and directories currently installed.)
Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
Unpacking python3-minimal (3.13.5-1) ...
Selecting previously unselected package media-types.
Preparing to unpack .../1-media-types_13.0.0_all.deb ...
Unpacking media-types (13.0.0) ...
Selecting previously unselected package readline-common.
Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
Unpacking readline-common (8.2-6) ...
Selecting previously unselected package libreadline8t64:amd64.
Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
Unpacking libreadline8t64:amd64 (8.2-6) ...
Selecting previously unselected package libpython3.13-stdlib:amd64.
Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
Selecting previously unselected package python3.13.
Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
Unpacking python3.13 (3.13.5-2) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
Setting up python3-minimal (3.13.5-1) ...
Selecting previously unselected package python3.
(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 ... 21434 files and directories currently installed.)
Preparing to unpack .../python3_3.13.5-1_amd64.deb ...
Unpacking python3 (3.13.5-1) ...
Setting up media-types (13.0.0) ...
Setting up readline-common (8.2-6) ...
Setting up libreadline8t64:amd64 (8.2-6) ...
Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
Setting up python3.13 (3.13.5-2) ...
Setting up python3 (3.13.5-1) ...
running python rtupdate hooks for python3.13...
running python post-rtupdate hooks for python3.13...
Processing triggers for libc-bin (2.41-12+deb13u2) ...
# OS packages installation successful
The following actions will be performed:
  - install   conf-python-3      9.0.0  [required by atdpy]
  - install   ocamlbuild         0.16.1 [required by fmt, astring, uutf]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   ocamlfind          1.9.8  [required by fmt, astring, uutf]
  - 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]
  - install   fmt                0.11.0 [required by alcotest]
  - install   astring            0.8.5  [required by alcotest]
  - install   alcotest           1.9.1  [required by atdpy]
  - recompile atdpy              4.0.0*
===== 10 to install | 1 to recompile =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[alcotest.1.9.1] downloaded from cache at https://opam.ocaml.org/cache
[astring.0.8.5] downloaded from cache at https://opam.ocaml.org/cache
[conf-python-3.9.0.0/test.py] downloaded from https://opam.ocaml.org/cache
[fmt.0.11.0] downloaded from cache at https://opam.ocaml.org/cache
[ocaml-syntax-shims.1.0.0] downloaded from cache at https://opam.ocaml.org/cache
[ocamlbuild.0.16.1] downloaded from cache at https://opam.ocaml.org/cache
[ocamlfind.1.9.8] downloaded from cache at https://opam.ocaml.org/cache
[stdlib-shims.0.3.0] downloaded from cache at https://opam.ocaml.org/cache
[topkg.1.1.1] downloaded from cache at https://opam.ocaml.org/cache
[uutf.1.0.4] downloaded from cache at https://opam.ocaml.org/cache

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-python-3.9.0.0
-> installed ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> installed ocamlfind.1.9.8
-> removed   atdpy.4.0.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 atdpy.4.0.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-04-12 06:18.04 ---> saved as "ee380d1c37211dbac1f552dc19e8eaba2c32430b68af1022b05e6b00106ce847"

/home/opam: (run (shell  "opam depext --with-test atdpy.4.0.0 && opam reinstall --with-test --verbose atdpy.4.0.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\" != 'atdpy.4.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# The following system packages are needed:
python3
# All required OS packages found.
The following actions will be performed:
  - recompile atdpy 4.0.0*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/3: [atdpy: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "atdpy" "-j" "71" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/atdpy.4.0.0)
-> compiled  atdpy.4.0.0
-> removed   atdpy.4.0.0
-> installed atdpy.4.0.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-04-12 06:18.18 ---> saved as "6845a05a4051c5f8f1eea8e2adcfab96a49408ca1a47575217fc4fcb80948234"
Job succeeded
2026-04-12 06:18.27: Job succeeded