(not at the head of any monitored branch or PR)
2026-04-12 05:56.52: New job: test atdml.4.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29709/head (8e5a62aa6ff8e3285a53d2ca2cbe0dc69bc99426)
                              on opensuse-tumbleweed-ocaml-5.4/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:opensuse-tumbleweed-ocaml-5.4@sha256:a1473b0111bfe5a7cab509a3a79fd984bcb2be7d31258afb995cc624302c7152
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 atdml.4.1.0 4.1.0
RUN opam reinstall atdml.4.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 "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'atdml.4.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 atdml.4.1.0) || true
RUN opam reinstall --with-test --verbose atdml.4.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 "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'atdml.4.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-04-12 05:56.52: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:a1473b0111bfe5a7cab509a3a79fd984bcb2be7d31258afb995cc624302c7152-atdml.4.1.0-8e5a62aa6ff8e3285a53d2ca2cbe0dc69bc99426"
2026-04-12 05:56.52: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:a1473b0111bfe5a7cab509a3a79fd984bcb2be7d31258afb995cc624302c7152)
 (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 atdml.4.1.0 4.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall atdml.4.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'atdml.4.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 atdml.4.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose atdml.4.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'atdml.4.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-04-12 05:56.52: Waiting for resource in pool OCluster
2026-04-12 06:00.37: Waiting for worker…
2026-04-12 06:02.18: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
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:opensuse-tumbleweed-ocaml-5.4@sha256:a1473b0111bfe5a7cab509a3a79fd984bcb2be7d31258afb995cc624302c7152)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-5.4@sha256:a1473b0111bfe5a7cab509a3a79fd984bcb2be7d31258afb995cc624302c7152' locally
docker.io/ocaml/opam@sha256:a1473b0111bfe5a7cab509a3a79fd984bcb2be7d31258afb995cc624302c7152: Pulling from ocaml/opam
fc41f21d9906: Pulling fs layer
74de7de26973: Pulling fs layer
977b8fd43424: Pulling fs layer
bc011f5660da: Pulling fs layer
989d1d52bdfe: Pulling fs layer
c49432b29c7c: Pulling fs layer
cc8b0058c550: Pulling fs layer
7758e8760c3d: Pulling fs layer
bc011f5660da: Waiting
c3ea3e5f9002: Pulling fs layer
6a64e353b00e: Pulling fs layer
989d1d52bdfe: Waiting
c49432b29c7c: Waiting
e1e5592b3d8c: Pulling fs layer
cc8b0058c550: Waiting
c3ea3e5f9002: Waiting
9366564a7496: Pulling fs layer
6a64e353b00e: Waiting
7758e8760c3d: Waiting
c595dcc6f1d2: Pulling fs layer
e1e5592b3d8c: Waiting
9366564a7496: Waiting
0d192c393bff: Pulling fs layer
c595dcc6f1d2: Waiting
efd2cea8d065: Pulling fs layer
0d192c393bff: Waiting
2a109816798d: Pulling fs layer
efd2cea8d065: Waiting
96623a7e963e: Pulling fs layer
2a109816798d: Waiting
ab4d40d5391e: Pulling fs layer
96623a7e963e: Waiting
5a414b3f012b: Pulling fs layer
ab4d40d5391e: Waiting
4f4fb700ef54: Pulling fs layer
545e23963384: Pulling fs layer
5a414b3f012b: Waiting
4f4fb700ef54: Waiting
545e23963384: Waiting
146fa4d20101: Pulling fs layer
ac834633b098: Pulling fs layer
9528085c2427: Pulling fs layer
146fa4d20101: Waiting
ac834633b098: Waiting
9528085c2427: Waiting
eb68834eee94: Pulling fs layer
26ea7dcb5b98: Pulling fs layer
eb68834eee94: Waiting
4be9510061a6: Pulling fs layer
26ea7dcb5b98: Waiting
1fc62853af7e: Pulling fs layer
4be9510061a6: Waiting
b53f3f25a434: Pulling fs layer
1fc62853af7e: Waiting
cf5781c0982e: Pulling fs layer
6319330d9589: Pulling fs layer
cf5781c0982e: Waiting
b53f3f25a434: Waiting
0f65324d0260: Pulling fs layer
f9552d10f83c: Pulling fs layer
8897e16c467c: Pulling fs layer
6319330d9589: Waiting
f9552d10f83c: Waiting
0f65324d0260: Waiting
e08ec817c55c: Pulling fs layer
8897e16c467c: Waiting
e08ec817c55c: Waiting
98c97997c7d8: Pulling fs layer
897d050e8e26: Pulling fs layer
98c97997c7d8: Waiting
11a0532aa6d8: Pulling fs layer
897d050e8e26: Waiting
efb86f7e1ca8: Pulling fs layer
599bf303e1db: Pulling fs layer
11a0532aa6d8: Waiting
efb86f7e1ca8: Waiting
9afac1d0c3aa: Pulling fs layer
d6429bab7584: Pulling fs layer
ae36e8a231cc: Pulling fs layer
599bf303e1db: Waiting
d6429bab7584: Waiting
9afac1d0c3aa: Waiting
ae36e8a231cc: Waiting
4779bd905c5c: Pulling fs layer
acf942eb7e0e: Pulling fs layer
4779bd905c5c: Waiting
acf942eb7e0e: Waiting
74de7de26973: Download complete
977b8fd43424: Verifying Checksum
977b8fd43424: Download complete
989d1d52bdfe: Download complete
fc41f21d9906: Verifying Checksum
fc41f21d9906: Download complete
c49432b29c7c: Verifying Checksum
c49432b29c7c: Download complete
cc8b0058c550: Verifying Checksum
cc8b0058c550: Download complete
7758e8760c3d: Verifying Checksum
7758e8760c3d: Download complete
c3ea3e5f9002: Verifying Checksum
c3ea3e5f9002: Download complete
6a64e353b00e: Verifying Checksum
6a64e353b00e: Download complete
e1e5592b3d8c: Verifying Checksum
e1e5592b3d8c: Download complete
9366564a7496: Verifying Checksum
9366564a7496: Download complete
c595dcc6f1d2: Verifying Checksum
c595dcc6f1d2: Download complete
0d192c393bff: Verifying Checksum
0d192c393bff: Download complete
efd2cea8d065: Verifying Checksum
efd2cea8d065: Download complete
fc41f21d9906: Pull complete
74de7de26973: Pull complete
96623a7e963e: Verifying Checksum
96623a7e963e: Download complete
bc011f5660da: Verifying Checksum
bc011f5660da: Download complete
2a109816798d: Download complete
ab4d40d5391e: Verifying Checksum
ab4d40d5391e: Download complete
5a414b3f012b: Verifying Checksum
5a414b3f012b: Download complete
4f4fb700ef54: Download complete
545e23963384: Verifying Checksum
545e23963384: Download complete
146fa4d20101: Verifying Checksum
146fa4d20101: Download complete
ac834633b098: Download complete
9528085c2427: Verifying Checksum
9528085c2427: Download complete
eb68834eee94: Download complete
26ea7dcb5b98: Download complete
4be9510061a6: Download complete
1fc62853af7e: Download complete
b53f3f25a434: Verifying Checksum
b53f3f25a434: Download complete
cf5781c0982e: Verifying Checksum
cf5781c0982e: Download complete
977b8fd43424: Pull complete
6319330d9589: Download complete
0f65324d0260: Verifying Checksum
0f65324d0260: Download complete
8897e16c467c: Verifying Checksum
8897e16c467c: Download complete
98c97997c7d8: Download complete
897d050e8e26: Download complete
11a0532aa6d8: Download complete
efb86f7e1ca8: Download complete
599bf303e1db: Verifying Checksum
599bf303e1db: Download complete
e08ec817c55c: Verifying Checksum
e08ec817c55c: Download complete
9afac1d0c3aa: Verifying Checksum
ae36e8a231cc: Verifying Checksum
ae36e8a231cc: Download complete
4779bd905c5c: Verifying Checksum
4779bd905c5c: Download complete
acf942eb7e0e: Verifying Checksum
acf942eb7e0e: Download complete
d6429bab7584: Verifying Checksum
d6429bab7584: Download complete
bc011f5660da: Pull complete
989d1d52bdfe: Pull complete
c49432b29c7c: Pull complete
cc8b0058c550: Pull complete
7758e8760c3d: Pull complete
c3ea3e5f9002: Pull complete
6a64e353b00e: Pull complete
e1e5592b3d8c: Pull complete
9366564a7496: Pull complete
c595dcc6f1d2: Pull complete
0d192c393bff: Pull complete
efd2cea8d065: Pull complete
2a109816798d: Pull complete
96623a7e963e: Pull complete
ab4d40d5391e: Pull complete
5a414b3f012b: Pull complete
4f4fb700ef54: Pull complete
545e23963384: Pull complete
146fa4d20101: Pull complete
ac834633b098: Pull complete
9528085c2427: Pull complete
eb68834eee94: Pull complete
26ea7dcb5b98: Pull complete
4be9510061a6: Pull complete
1fc62853af7e: Pull complete
b53f3f25a434: Pull complete
cf5781c0982e: Pull complete
6319330d9589: Pull complete
0f65324d0260: Pull complete
f9552d10f83c: Verifying Checksum
f9552d10f83c: Download complete
f9552d10f83c: Pull complete
8897e16c467c: Pull complete
e08ec817c55c: Pull complete
98c97997c7d8: Pull complete
897d050e8e26: Pull complete
11a0532aa6d8: Pull complete
efb86f7e1ca8: Pull complete
599bf303e1db: Pull complete
9afac1d0c3aa: Pull complete
d6429bab7584: Pull complete
ae36e8a231cc: Pull complete
4779bd905c5c: Pull complete
acf942eb7e0e: Pull complete
Digest: sha256:a1473b0111bfe5a7cab509a3a79fd984bcb2be7d31258afb995cc624302c7152
Status: Downloaded newer image for ocaml/opam@sha256:a1473b0111bfe5a7cab509a3a79fd984bcb2be7d31258afb995cc624302c7152
2026-04-12 06:02.21 ---> using "483ea8f1b1c518774399862bd7857d5ce77ad7efcca089ccc697196765a23c85" 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-04-12 06:02.21 ---> using "6367c941e2031989ebde9f6f5544176d2d2a9c71ed73c9f45f88add6c38ca463" 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-04-12 06:02.21 ---> using "f74f359edb02d6da4a967c2d913b467956140b22d46f45df342e01246bb202d8" from cache

/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=opensuse-tumbleweed os-version=20260331
# 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-12 06:02.21 ---> using "4f996f509496b8fe56ec2b33e3b2334e53fc67f1b3648b4089af04ca6cd812a0" from cache

/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:02.21 ---> using "a16474320c2615c6887cc5b54f78b3993572bc679d00bcae97dc0116baf7e27e" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-12 06:02.23 ---> using "b1650bc9317b6a0dd76e0ce5896a5b476f177e1ea7b52410f161f82e0d86c9da" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-12 06:02.42 ---> saved as "eca447fcbfb2a9dae93927878e0e4d417137f6cf6bc519d5e4791dca4f20308e"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [.
- ..
- Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key
- ...
- ....done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key
- .........
- ...........
- .......done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- All repositories have been refreshed.
2026-04-12 06:02.54 ---> saved as "3bb561fc9bad62388cdc67e7abaced3e81f89bf1a91cbf0fd4f7fa6468992175"

/home/opam: (run (shell "opam pin add -k version -yn atdml.4.1.0 4.1.0"))
atdml is now pinned to version 4.1.0
2026-04-12 06:02.55 ---> saved as "4611682b147f36b9cf98bc75630eb420329c31ef90e7e6576e06938fedf41515"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall atdml.4.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'atdml.4.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"))
atdml.4.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
  - install atd         4.1.0          [required by atdml]
  - install atdml       4.1.0 (pinned)
  - install cmdliner    2.1.0          [required by atdml]
  - install dune        3.22.1         [required by atdml]
  - install easy-format 1.3.4          [required by atd]
  - install menhir      20260209       [required by atd]
  - install menhirCST   20260209       [required by menhir]
  - install menhirGLR   20260209       [required by menhir]
  - install menhirLib   20260209       [required by menhir]
  - install menhirSdk   20260209       [required by menhir]
  - install re          1.14.0         [required by atd]
  - install yojson      3.0.0          [required by atdml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved atd.4.1.0, atdml.4.1.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved dune.3.22.1  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed cmdliner.2.1.0
-> installed dune.3.22.1
-> installed easy-format.1.3.4
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed menhir.20260209
-> installed atd.4.1.0
-> installed atdml.4.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-12 06:03.47 ---> saved as "a5820b40df3edfa3ffe8c1f6b5d397f457de8de4232909d4265b49b435480140"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test atdml.4.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile atdml               4.1.0 (pinned)
=== install 15 packages
  - install   astring             0.8.5          [required by fpath]
  - install   cppo                1.8.0          [required by ppx_deriving]
  - install   fpath               0.7.3          [required by testo]
  - install   ocaml-compiler-libs v0.17.0        [required by ppxlib]
  - install   ocamlbuild          0.16.1         [required by fpath]
  - install   ocamlfind           1.9.8          [required by fpath]
  - install   ppx_derivers        1.2.1          [required by ppx_deriving]
  - install   ppx_deriving        6.1.1          [required by testo-util]
  - install   ppxlib              0.38.0         [required by ppx_deriving]
  - install   sexplib0            v0.17.0        [required by ppxlib]
  - install   stdlib-shims        0.3.0          [required by ppxlib]
  - install   testo               0.4.0          [required by atdml]
  - install   testo-diff          0.4.0          [required by testo-util]
  - install   testo-util          0.4.0          [required by testo]
  - install   topkg               1.1.1          [required by fpath]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0  (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.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 ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving.6.1.1  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> installed cppo.1.8.0
-> retrieved ppxlib.0.38.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> retrieved testo.0.4.0, testo-diff.0.4.0, testo-util.0.4.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> installed ocamlfind.1.9.8
-> removed   atdml.4.1.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed ppxlib.0.38.0
-> installed ppx_deriving.6.1.1
-> installed testo-diff.0.4.0
-> installed testo-util.0.4.0
-> installed testo.0.4.0
-> installed atdml.4.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-12 06:04.24 ---> saved as "5c7b5be8e9d60862029cc5954f0c3d78cd0b7b05653131861d6151b24c180a1d"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [atdml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "atdml" "-j" "71" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/atdml.4.1.0)
-> compiled  atdml.4.1.0
-> removed   atdml.4.1.0
-> installed atdml.4.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-12 06:04.29 ---> saved as "65ebab28901fd6108a7a61352f44fcca7f80c17a541965f5cb3fa99bca34b85d"
Job succeeded
2026-04-12 06:04.37: Job succeeded