(for PR #29921)

2026-05-22 14:38.27: New job: test awso-sync.0.9.0, using opam 2.1
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29921/head (26b581962da4b56e20652e11f59c3ecd2f3e2823)
                              on debian-13-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/29921/head" && git reset --hard 26b58196
git fetch origin master
git merge --no-edit 3e30e43808721339489775ee25d69c4c9c441697
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.1 /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 awso-sync.0.9.0 0.9.0
RUN opam reinstall awso-sync.0.9.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" != 'awso-sync.0.9.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 awso-sync.0.9.0) || true
RUN opam reinstall --with-test --verbose awso-sync.0.9.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" != 'awso-sync.0.9.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-05-22 14:38.27: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc-awso-sync.0.9.0-26b581962da4b56e20652e11f59c3ecd2f3e2823"
2026-05-22 14:38.27: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.1 /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 awso-sync.0.9.0 0.9.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall awso-sync.0.9.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\" != 'awso-sync.0.9.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 awso-sync.0.9.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose awso-sync.0.9.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\" != 'awso-sync.0.9.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-05-22 14:38.27: Waiting for resource in pool OCluster
2026-05-22 14:59.10: Waiting for worker…
2026-05-22 15:12.59: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 3e30e43808 Merge pull request #29935 from sim642/release-odep-0.2.2
Updating 3e30e43808..26b581962d
Fast-forward
 packages/awso-async/awso-async.0.9.0/opam   | 52 ++++++++++++++++++++++++++++
 packages/awso-cli/awso-cli.0.9.0/opam       | 47 +++++++++++++++++++++++++
 packages/awso-common/awso-common.0.9.0/opam | 45 ++++++++++++++++++++++++
 packages/awso-lwt/awso-lwt.0.9.0/opam       | 47 +++++++++++++++++++++++++
 packages/awso-sync/awso-sync.0.9.0/opam     | 47 +++++++++++++++++++++++++
 packages/awso/awso.0.9.0/opam               | 53 +++++++++++++++++++++++++++++
 6 files changed, 291 insertions(+)
 create mode 100644 packages/awso-async/awso-async.0.9.0/opam
 create mode 100644 packages/awso-cli/awso-cli.0.9.0/opam
 create mode 100644 packages/awso-common/awso-common.0.9.0/opam
 create mode 100644 packages/awso-lwt/awso-lwt.0.9.0/opam
 create mode 100644 packages/awso-sync/awso-sync.0.9.0/opam
 create mode 100644 packages/awso/awso.0.9.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:f9700a48fc9ceee25e58aabe0b5d3c4d88bf2427ddb44e9208e4f5acbfe4dfdc)
2026-05-22 15:13.04 ---> using "ac1995f8abd260285fd7f15d3dfa37a0c18d5abe2573e173c9117b295287210f" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2026-05-22 15:13.04 ---> using "688c46b3729d4d44e6294b5dbc3144fe1e77e349148dba56ba52c65c8751cc00" 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.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-22 15:13.04 ---> using "6ff9f227318ced3826ee778e564a5faf9a9fe6a9f10d2b1fdc59b2c6b07c4b22" 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.1.6 (263921263e1f745613e2882745114b7b08f3608b) 
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     
# upgrade-criteria     
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# 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-05-22 15:13.04 ---> using "aece597466071897f2129e44649ddf826792545d59d101a324ae52628f20e447" 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-05-22 15:13.04 ---> using "4fc0fb55a46ad50477689d187ff56b603e4a1c4e16d14967eb2a4beb2751fe7c" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-05-22 15:13.05 ---> using "6e877984ffcd0377bf10ee3cb0e7743c0bf77d9aaeb4994f8f6f4b70aca7369d" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-22 15:13.05 ---> using "1e35b727a5a46070788b06cf4c82b95e70265fbbc7c1dd7faddba0c54c7fec55" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian 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 [166 kB]
- Fetched 10.1 MB in 14s (713 kB/s)
- Reading package lists...
2026-05-22 15:13.13 ---> saved as "9ebf12058991d99ba0d9b0177ff959ccca1a481410c3098fd71b7178a300e550"

/home/opam: (run (shell "opam pin add -k version -yn awso-sync.0.9.0 0.9.0"))
awso-sync is now pinned to version 0.9.0
2026-05-22 15:13.15 ---> saved as "6a2254518892158caa7c0a5b38d5d79829da499d19a0c05d3163d510bebf093a"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall awso-sync.0.9.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\" != 'awso-sync.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
awso-sync.0.9.0 is not installed. Install it? [Y/n] y
[ERROR] In the opam file for ocurl.transition:
          - At /home/opam/.opam/repo/default/packages/ocurl/ocurl.transition/opam:17:0-17:17::
            Unknown package flags deprecated ignored
        'flags' has been ignored.
The following actions will be performed:
  - install   conf-gmp                5          [required by conf-gmp-powm-sec, zarith]
  - recompile ocaml-compiler          5.4.1      [upstream or system changes]
  - install   conf-pkg-config         4          [required by conf-zlib, zarith]
  - install   conf-libcurl            2          [required by curl]
  - install   conf-gmp-powm-sec       4          [required by cryptokit]
  - recompile ocaml-base-compiler     5.4.1*     [uses ocaml-compiler]
  - install   conf-zlib               1          [required by cryptokit]
  - recompile ocaml-config            3          [uses ocaml-base-compiler]
  - recompile ocaml                   5.4.1      [upstream or system changes]
  - install   ocamlfind               1.9.8      [required by xmlm]
  - install   ocamlbuild              0.16.1     [required by xmlm]
  - install   dune                    3.23.1     [required by awso-sync]
  - recompile opam-depext             1.2.3      [uses ocaml]
  - recompile base-effects            base       [uses ocaml]
  - recompile base-domains            base       [uses ocaml]
  - install   zarith                  1.14       [required by awso]
  - install   base-bytes              base       [required by ocplib-endian]
  - install   topkg                   1.1.1      [required by xmlm]
  - install   yojson                  3.0.0      [required by awso]
  - install   stringext               1.6.0      [required by cohttp]
  - install   stdlib-shims            0.3.0      [required by ppxlib]
  - install   sexplib0                v0.17.0    [required by cohttp]
  - install   re                      1.14.0     [required by awso]
  - install   ppx_derivers            1.2.1      [required by ppxlib]
  - install   octavius                1.2.2      [required by ppx_js_style]
  - install   ocaml-syntax-shims      1.0.0      [required by angstrom]
  - install   ocaml-compiler-libs     v0.17.0    [required by ppxlib]
  - install   ocaml_intrinsics_kernel v0.17.2    [required by base]
  - install   macaddr                 5.6.2      [required by ipaddr]
  - install   jane-street-headers     v0.17.0    [required by time_now]
  - install   http                    6.2.1      [required by cohttp]
  - install   domain-name             0.5.0      [required by ipaddr]
  - install   csexp                   1.5.2      [required by dune-configurator]
  - install   cppo                    1.8.0      [required by lwt]
  - install   base64                  3.5.2      [required by cohttp]
  - recompile base-nnp                base       [uses base-domains]
  - install   xmlm                    1.4.0      [required by awso]
  - install   ppx_yojson_conv_lib     v0.17.0    [required by ppx_yojson_conv]
  - install   ppxlib                  0.38.0     [required by ppx_yojson_conv]
  - install   ipaddr                  5.6.2      [required by cohttp]
  - install   dune-configurator       3.23.1     [required by cryptokit, curl]
  - install   ocplib-endian           1.2        [required by lwt]
  - install   ppxlib_jane             v0.17.4    [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install   curl                    0.10.0     [required by ocurl]
  - install   cryptokit               1.21.1     [required by awso]
  - install   bigstringaf             0.10.0     [required by angstrom]
  - install   base                    v0.17.3    [required by ppx_yojson_conv]
  - install   lwt                     6.1.2      [required by curl_lwt]
  - install   angstrom                0.16.1     [required by uri]
  - install   stdio                   v0.17.0    [required by ppx_expect]
  - install   ppx_sexp_conv           v0.17.1    [required by cohttp]
  - install   ppx_js_style            v0.17.1    [required by ppx_yojson_conv]
  - install   ppx_here                v0.17.0    [required by ppx_expect]
  - install   ppx_globalize           v0.17.2    [required by ppx_base]
  - install   ppx_enumerate           v0.17.0    [required by ppx_base]
  - install   ppx_compare             v0.17.0    [required by ppx_base]
  - install   ppx_cold                v0.17.0    [required by ppx_base]
  - install   logs                    0.10.0     [required by cohttp]
  - install   curl_lwt                0.10.0     [required by ocurl]
  - install   uri                     4.4.0      [required by cohttp]
  - install   ppx_optcomp             v0.17.1    [required by time_now]
  - install   ppx_yojson_conv         v0.17.1    [required by awso]
  - install   ppx_hash                v0.17.0    [required by ppx_base]
  - install   ppx_assert              v0.17.0    [required by jst-config]
  - install   ocurl                   transition [required by awso-sync]
  - install   uri-sexp                4.4.0      [required by cohttp]
  - install   ppx_base                v0.17.0    [required by time_now]
  - install   jst-config              v0.17.0    [required by time_now]
  - install   cohttp                  6.2.1      [required by awso]
  - install   time_now                v0.17.0    [required by ppx_inline_test]
  - install   ppx_inline_test         v0.17.1    [required by ppx_expect]
  - install   ppx_expect              v0.17.3    [required by awso-sync]
  - install   awso-common             0.9.0      [required by awso]
  - install   awso                    0.9.0      [required by awso-sync]
  - install   awso-sync               0.9.0*
===== 67 to install | 8 to recompile =====

The following system packages will first need to be installed:
    libcurl4-gnutls-dev libgmp-dev pkg-config zlib1g-dev

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
Let opam run your package manager to install the required system packages?
(answer 'n' for other options) [Y/n] y
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libcurl4-gnutls-dev" "libgmp-dev" "pkg-config" "zlib1g-dev"
- (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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../openssl-provider-legacy_3.5.6-1~deb13u1_amd64.deb ...
- Unpacking openssl-provider-legacy (3.5.6-1~deb13u1) over (3.5.5-1~deb13u2) ...
- Setting up openssl-provider-legacy (3.5.6-1~deb13u1) ...
- (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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../libssl3t64_3.5.6-1~deb13u1_amd64.deb ...
- Unpacking libssl3t64:amd64 (3.5.6-1~deb13u1) over (3.5.5-1~deb13u2) ...
- Setting up libssl3t64:amd64 (3.5.6-1~deb13u1) ...
- (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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../00-libcom-err2_1.47.2-3+b11_amd64.deb ...
- Unpacking libcom-err2:amd64 (1.47.2-3+b11) over (1.47.2-3+b10) ...
- Selecting previously unselected package comerr-dev:amd64.
- Preparing to unpack .../01-comerr-dev_2.1-1.47.2-3+b11_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.2-3+b11) ...
- Preparing to unpack .../02-libnghttp2-14_1.64.0-1.1+deb13u1_amd64.deb ...
- Unpacking libnghttp2-14:amd64 (1.64.0-1.1+deb13u1) over (1.64.0-1.1) ...
- Preparing to unpack .../03-curl_8.14.1-2+deb13u3_amd64.deb ...
- Unpacking curl (8.14.1-2+deb13u3) over (8.14.1-2+deb13u2) ...
- Preparing to unpack .../04-libcurl4t64_8.14.1-2+deb13u3_amd64.deb ...
- Unpacking libcurl4t64:amd64 (8.14.1-2+deb13u3) over (8.14.1-2+deb13u2) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../05-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../06-libkadm5clnt-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkdb5-10t64:amd64.
- Preparing to unpack .../07-libkdb5-10t64_1.21.3-5_amd64.deb ...
- Unpacking libkdb5-10t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5srv-mit12:amd64.
- Preparing to unpack .../08-libkadm5srv-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package krb5-multidev:amd64.
- Preparing to unpack .../09-krb5-multidev_1.21.3-5_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../10-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Preparing to unpack .../11-libgnutls30t64_3.8.9-3+deb13u4_amd64.deb ...
- Unpacking libgnutls30t64:amd64 (3.8.9-3+deb13u4) over (3.8.9-3+deb13u2) ...
- Preparing to unpack .../12-libcurl3t64-gnutls_8.14.1-2+deb13u3_amd64.deb ...
- Unpacking libcurl3t64-gnutls:amd64 (8.14.1-2+deb13u3) over (8.14.1-2+deb13u2) ...
- Selecting previously unselected package libevent-2.1-7t64:amd64.
- Preparing to unpack .../13-libevent-2.1-7t64_2.1.12-stable-10+b1_amd64.deb ...
- Unpacking libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Selecting previously unselected package libunbound8:amd64.
- Preparing to unpack .../14-libunbound8_1.22.0-2+deb13u2_amd64.deb ...
- Unpacking libunbound8:amd64 (1.22.0-2+deb13u2) ...
- Selecting previously unselected package libgnutls-dane0t64:amd64.
- Preparing to unpack .../15-libgnutls-dane0t64_3.8.9-3+deb13u4_amd64.deb ...
- Unpacking libgnutls-dane0t64:amd64 (3.8.9-3+deb13u4) ...
- Selecting previously unselected package libgnutls-openssl27t64:amd64.
- Preparing to unpack .../16-libgnutls-openssl27t64_3.8.9-3+deb13u4_amd64.deb ...
- Unpacking libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u4) ...
- Selecting previously unselected package libidn2-dev:amd64.
- Preparing to unpack .../17-libidn2-dev_2.3.8-2_amd64.deb ...
- Unpacking libidn2-dev:amd64 (2.3.8-2) ...
- Selecting previously unselected package libp11-kit-dev:amd64.
- Preparing to unpack .../18-libp11-kit-dev_0.25.5-3_amd64.deb ...
- Unpacking libp11-kit-dev:amd64 (0.25.5-3) ...
- Selecting previously unselected package libtasn1-6-dev:amd64.
- Preparing to unpack .../19-libtasn1-6-dev_4.20.0-2_amd64.deb ...
- Unpacking libtasn1-6-dev:amd64 (4.20.0-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../20-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../21-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package nettle-dev:amd64.
- Preparing to unpack .../22-nettle-dev_3.10.1-1_amd64.deb ...
- Unpacking nettle-dev:amd64 (3.10.1-1) ...
- Selecting previously unselected package libgnutls28-dev:amd64.
- Preparing to unpack .../23-libgnutls28-dev_3.8.9-3+deb13u4_amd64.deb ...
- Unpacking libgnutls28-dev:amd64 (3.8.9-3+deb13u4) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../24-libkrb5-dev_1.21.3-5_amd64.deb ...
- Unpacking libkrb5-dev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libldap-dev:amd64.
- Preparing to unpack .../25-libldap-dev_2.6.10+dfsg-1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../26-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../27-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../28-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../29-libnghttp2-dev_1.64.0-1.1+deb13u1_amd64.deb ...
- Unpacking libnghttp2-dev:amd64 (1.64.0-1.1+deb13u1) ...
- Selecting previously unselected package libnghttp3-dev:amd64.
- Preparing to unpack .../30-libnghttp3-dev_1.8.0-1_amd64.deb ...
- Unpacking libnghttp3-dev:amd64 (1.8.0-1) ...
- Selecting previously unselected package libngtcp2-crypto-gnutls-dev:amd64.
- Preparing to unpack .../31-libngtcp2-crypto-gnutls-dev_1.11.0-1+deb13u1_amd64.deb ...
- Unpacking libngtcp2-crypto-gnutls-dev:amd64 (1.11.0-1+deb13u1) ...
- Selecting previously unselected package libngtcp2-dev:amd64.
- Preparing to unpack .../32-libngtcp2-dev_1.11.0-1+deb13u1_amd64.deb ...
- Unpacking libngtcp2-dev:amd64 (1.11.0-1+deb13u1) ...
- Selecting previously unselected package libpsl-dev:amd64.
- Preparing to unpack .../33-libpsl-dev_0.21.2-1.1+b1_amd64.deb ...
- Unpacking libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../34-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package librtmp-dev:amd64.
- Preparing to unpack .../35-librtmp-dev_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
- Unpacking librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../36-libssl-dev_3.5.6-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.6-1~deb13u1) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../37-libssh2-1-dev_1.11.1-1_amd64.deb ...
- Unpacking libssh2-1-dev:amd64 (1.11.1-1) ...
- Selecting previously unselected package libcurl4-gnutls-dev:amd64.
- Preparing to unpack .../38-libcurl4-gnutls-dev_8.14.1-2+deb13u3_amd64.deb ...
- Unpacking libcurl4-gnutls-dev:amd64 (8.14.1-2+deb13u3) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../39-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Preparing to unpack .../40-openssl_3.5.6-1~deb13u1_amd64.deb ...
- Unpacking openssl (3.5.6-1~deb13u1) over (3.5.5-1~deb13u2) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../41-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
- Setting up libgnutls-openssl27t64:amd64 (3.8.9-3+deb13u4) ...
- Setting up libtasn1-doc (4.20.0-2) ...
- Setting up libnghttp2-14:amd64 (1.64.0-1.1+deb13u1) ...
- Setting up libcurl3t64-gnutls:amd64 (8.14.1-2+deb13u3) ...
- Setting up libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Setting up libngtcp2-crypto-gnutls-dev:amd64 (1.11.0-1+deb13u1) ...
- Setting up libcom-err2:amd64 (1.47.2-3+b11) ...
- Setting up libngtcp2-dev:amd64 (1.11.0-1+deb13u1) ...
- Setting up libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Setting up libunbound8:amd64 (1.22.0-2+deb13u2) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgnutls-dane0t64:amd64 (3.8.9-3+deb13u4) ...
- Setting up libgssrpc4t64:amd64 (1.21.3-5) ...
- Setting up libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Setting up comerr-dev:amd64 (2.1-1.47.2-3+b11) ...
- Setting up libssl-dev:amd64 (3.5.6-1~deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libidn2-dev:amd64 (2.3.8-2) ...
- Setting up libnghttp3-dev:amd64 (1.8.0-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libtasn1-6-dev:amd64 (4.20.0-2) ...
- Setting up openssl (3.5.6-1~deb13u1) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libp11-kit-dev:amd64 (0.25.5-3) ...
- Setting up libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up nettle-dev:amd64 (3.10.1-1) ...
- Setting up libcurl4t64:amd64 (8.14.1-2+deb13u3) ...
- Setting up libkdb5-10t64:amd64 (1.21.3-5) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libssh2-1-dev:amd64 (1.11.1-1) ...
- Setting up libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Setting up curl (8.14.1-2+deb13u3) ...
- Setting up krb5-multidev:amd64 (1.21.3-5) ...
- Setting up libgnutls28-dev:amd64 (3.8.9-3+deb13u4) ...
- Setting up libnghttp2-dev:amd64 (1.64.0-1.1+deb13u1) ...
- Setting up libkrb5-dev:amd64 (1.21.3-5) ...
- Setting up librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Setting up libcurl4-gnutls-dev:amd64 (8.14.1-2+deb13u3) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved awso.0.9.0  (cached)
-> retrieved awso-common.0.9.0  (cached)
-> retrieved awso-sync.0.9.0  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved cohttp.6.2.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved cryptokit.1.21.1  (cached)
-> installed conf-gmp.5
-> installed conf-libcurl.2
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> retrieved curl.0.10.0  (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-zlib.1
-> retrieved curl_lwt.0.10.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.23.1  (cached)
-> retrieved dune-configurator.3.23.1  (cached)
-> retrieved http.6.2.1  (cached)
-> retrieved ipaddr.5.6.2  (cached)
-> retrieved jane-street-headers.v0.17.0  (cached)
-> retrieved jst-config.v0.17.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.1.2  (cached)
-> retrieved macaddr.5.6.2  (cached)
-> retrieved ocaml-compiler.5.4.1  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.2  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved ocurl.transition  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> retrieved ppx_assert.v0.17.0  (cached)
-> retrieved ppx_base.v0.17.0  (cached)
-> retrieved ppx_cold.v0.17.0  (cached)
-> retrieved ppx_compare.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_enumerate.v0.17.0  (cached)
-> retrieved ppx_expect.v0.17.3  (cached)
-> retrieved ppx_globalize.v0.17.2  (cached)
-> retrieved ppx_hash.v0.17.0  (cached)
-> retrieved ppx_here.v0.17.0  (cached)
-> retrieved ppx_inline_test.v0.17.1  (cached)
-> retrieved ppx_js_style.v0.17.1  (cached)
-> retrieved ppx_optcomp.v0.17.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppx_yojson_conv.v0.17.1  (cached)
-> retrieved ppx_yojson_conv_lib.v0.17.0  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdio.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved time_now.v0.17.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved uri-sexp.4.4.0  (cached)
-> retrieved xmlm.1.4.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.1
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.1
-> removed   ocaml-compiler.5.4.1
-> installed ocaml-compiler.5.4.1
-> installed ocaml-base-compiler.5.4.1
-> installed ocaml-config.3
-> installed ocaml.5.4.1
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed xmlm.1.4.0
-> installed dune.3.23.1
-> installed jane-street-headers.v0.17.0
-> installed base64.3.5.2
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed http.6.2.1
-> installed macaddr.5.6.2
-> installed ocaml_intrinsics_kernel.v0.17.2
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed cppo.1.8.0
-> installed re.1.14.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed yojson.3.0.0
-> installed octavius.1.2.2
-> installed ipaddr.5.6.2
-> installed ocplib-endian.1.2
-> installed ppx_yojson_conv_lib.v0.17.0
-> installed dune-configurator.3.23.1
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed cryptokit.1.21.1
-> installed curl.0.10.0
-> installed uri.4.4.0
-> installed lwt.6.1.2
-> installed curl_lwt.0.10.0
-> installed ocurl.transition
-> installed logs.0.10.0
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.38.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_js_style.v0.17.1
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_yojson_conv.v0.17.1
-> installed uri-sexp.4.4.0
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed cohttp.6.2.1
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed awso-common.0.9.0
-> installed awso.0.9.0
-> installed awso-sync.0.9.0
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead

<><> ocurl.transition installed successfully ><><><><><><><><><><><><><><><><><>
=> ocurl has been renamed and the ocurl package is now a transition package. Use the curl package instead.
# Run eval $(opam env) to update the current shell environment
2026-05-22 15:19.58 ---> saved as "eeddceb60733a00f9cc2c55283fe6d2d5e7f73a7306357b7ed81e59f96664bc2"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test awso-sync.0.9.0) || true"))
The following actions will be performed:
  - recompile awso-sync 0.9.0*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   awso-sync.0.9.0
-> installed awso-sync.0.9.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-05-22 15:21.01 ---> saved as "3ba9e7469eab18c6bcc04fdbf57bd27aded56511c24bc2f80d288e86c7ba16f1"

/home/opam: (run (shell  "opam reinstall --with-test --verbose awso-sync.0.9.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\" != 'awso-sync.0.9.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 awso-sync 0.9.0*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [awso-sync: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "awso-sync" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/awso-sync.0.9.0)
-> compiled  awso-sync.0.9.0
-> removed   awso-sync.0.9.0
-> installed awso-sync.0.9.0
Done.
# Run eval $(opam env) to update the current shell environment
2026-05-22 15:21.39 ---> saved as "1b1c0203ad9dc8ab8f84b9834b7b2a7f571ac007cdd55677ca90a401e4b3f2d0"
Job succeeded
2026-05-22 15:21.45: Job succeeded