Build:
  1. 0
2026-03-10 10:11.49: New job: test bap-primus-support.2.2.0 with lwt_log.1.1.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              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/29530/head" && git reset --hard 3af7d0a2
git fetch origin master
git merge --no-edit 3c70647a78a7fd22066fca4f17f7ca4514500663
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn lwt_log.1.1.2 1.1.2
RUN opam reinstall lwt_log.1.1.2; \
    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" != 'lwt_log.1.1.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall bap-primus-support.2.2.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" != 'bap-primus-support.2.2.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 bap-primus-support.2.2.0) || true
RUN opam reinstall --with-test --verbose bap-primus-support.2.2.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" != 'bap-primus-support.2.2.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-10 10:11.49: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-lwt_log.1.1.2-bap-primus-support.2.2.0-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 10:11.49: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn lwt_log.1.1.2 1.1.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt_log.1.1.2;\
             \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\" != 'lwt_log.1.1.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall bap-primus-support.2.2.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\" != 'bap-primus-support.2.2.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 bap-primus-support.2.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose bap-primus-support.2.2.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\" != 'bap-primus-support.2.2.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-10 10:11.49: Waiting for resource in pool OCluster
2026-03-10 10:53.06: Waiting for worker…
2026-03-10 10:56.48: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  81% (14981/18405)
Updating files:  82% (15093/18405)
Updating files:  83% (15277/18405)
Updating files:  84% (15461/18405)
Updating files:  85% (15645/18405)
Updating files:  86% (15829/18405)
Updating files:  87% (16013/18405)
Updating files:  88% (16197/18405)
Updating files:  89% (16381/18405)
Updating files:  90% (16565/18405)
Updating files:  91% (16749/18405)
Updating files:  92% (16933/18405)
Updating files:  93% (17117/18405)
Updating files:  94% (17301/18405)
Updating files:  95% (17485/18405)
Updating files:  96% (17669/18405)
Updating files:  97% (17853/18405)
Updating files:  98% (18037/18405)
Updating files:  99% (18221/18405)
Updating files: 100% (18405/18405)
Updating files: 100% (18405/18405), done.
HEAD is now at 3c70647a78 Merge pull request #29507 from NathanReb/release-ppxlib-0-38-0-5-5-preview
Updating 3c70647a78..3af7d0a259
Fast-forward
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 6 +++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 400 insertions(+), 84 deletions(-)

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e' locally
docker.io/ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e: Pulling from ocaml/opam
Digest: sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
Status: Downloaded newer image for ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
2026-03-10 10:56.51 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

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

/: (workdir /home/opam)

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

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-10 10:56.51 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-10 10:56.51 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" 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-03-10 10:56.51 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 10:56.53 ---> using "07ab77749e04037fd8309c3770f09119c59379277cc14cd7ed9c5220fbac24d9" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-10 10:56.53 ---> using "deab96fb2c9e05e960ca27e4a9d2cefb5b2113fe28798f9db97a08a03f0922cd" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/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 [108 kB]
- Fetched 199 kB in 0s (1409 kB/s)
- Reading package lists...
- 
2026-03-10 10:56.53 ---> using "abdec73b5c7bd13bf6ff1e7b82fe2ff315df46cc5355cf9b4b21507bd13ba781" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt_log.1.1.2 1.1.2"))
lwt_log is now pinned to version 1.1.2
2026-03-10 10:56.53 ---> using "aa15301734a7fafe456e492e6ae63c1a8bcf18096dccdeaa671ac76093002f6d" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt_log.1.1.2;\
                        \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\" != 'lwt_log.1.1.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt_log.1.1.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install base-bytes        base           [required by ocplib-endian]
  - install cppo              1.8.0          [required by lwt]
  - install csexp             1.5.2          [required by dune-configurator]
  - install dune              3.21.1         [required by lwt_log]
  - install dune-configurator 3.21.1         [required by lwt]
  - install lwt               5.9.2          [required by lwt_log]
  - install lwt_log           1.1.2 (pinned)
  - install ocamlfind         1.9.8          [required by base-bytes]
  - install ocplib-endian     1.2            [required by lwt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt_log.1.1.2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed lwt.5.9.2
-> installed lwt_log.1.1.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:56.53 ---> using "0f6197b359b68604590553f89198271d992fd90e8e6f9cfe4a9176fc82151a21" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall bap-primus-support.2.2.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\" != 'bap-primus-support.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
bap-primus-support.2.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 123 packages
  - install angstrom                         0.16.1  [required by uri]
  - install bap-abi                          2.2.0   [required by bap-primus]
  - install bap-api                          2.2.0   [required by bap-c]
  - install bap-build                        2.2.0   [required by bap-main]
  - install bap-bundle                       2.2.0   [required by bap-std]
  - install bap-c                            2.2.0   [required by bap-primus]
  - install bap-core-theory                  2.2.0   [required by bap-std]
  - install bap-future                       2.2.0   [required by bap-primus-round-robin-scheduler, bap-primus-exploring-scheduler, bap-primus-print, bap-primus-wandering-scheduler]
  - install bap-knowledge                    2.2.0   [required by bap-std]
  - install bap-main                         2.2.0   [required by bap-std]
  - install bap-plugins                      2.2.0   [required by bap-std]
  - install bap-primus                       2.2.0   [required by bap-primus-round-robin-scheduler, bap-primus-print, bap-primus-loader, etc.]
  - install bap-primus-exploring-scheduler   2.2.0   [required by bap-primus-support]
  - install bap-primus-greedy-scheduler      2.2.0   [required by bap-primus-support]
  - install bap-primus-limit                 2.2.0   [required by bap-primus-support]
  - install bap-primus-loader                2.2.0   [required by bap-primus-support]
  - install bap-primus-mark-visited          2.2.0   [required by bap-primus-support]
  - install bap-primus-print                 2.2.0   [required by bap-primus-support]
  - install bap-primus-promiscuous           2.2.0   [required by bap-primus-support]
  - install bap-primus-round-robin-scheduler 2.2.0   [required by bap-primus-support]
  - install bap-primus-support               2.2.0
  - install bap-primus-track-visited         2.2.0   [required by bap-primus-mark-visited]
  - install bap-primus-wandering-scheduler   2.2.0   [required by bap-primus-support]
  - install bap-recipe                       2.2.0   [required by bap-main]
  - install bap-relation                     2.2.0   [required by bap-std]
  - install bap-std                          2.2.0   [required by bap-primus-round-robin-scheduler, bap-primus-print, bap-primus-loader, etc.]
  - install bap-strings                      2.2.0   [required by bap-primus]
  - install bare                             2.2.0   [required by bap-primus-print]
  - install base                             v0.14.3 [required by core_kernel]
  - install base_bigstring                   v0.14.0 [required by core_kernel]
  - install base_quickcheck                  v0.14.1 [required by core_kernel]
  - install bigarray-compat                  1.1.0   [required by mmap]
  - install bigstringaf                      0.10.0  [required by angstrom]
  - install bin_prot                         v0.14.1 [required by core_kernel]
  - install bitvec                           2.2.0   [required by bap-std]
  - install bitvec-binprot                   2.2.0   [required by bap-core-theory]
  - install bitvec-order                     2.2.0   [required by bap-std]
  - install bitvec-sexp                      2.2.0   [required by bap-core-theory]
  - install camlzip                          1.14    [required by bap-std]
  - install cmdliner                         1.3.0   [required by bap-std]
  - install conf-gmp                         5       [required by zarith]
  - install conf-pkg-config                  4       [required by conf-zlib, zarith]
  - install conf-zlib                        1       [required by camlzip]
  - install core_kernel                      v0.14.2 [required by bap-primus-loader, bap-primus-print]
  - install fieldslib                        v0.14.0 [required by core_kernel]
  - install fileutils                        0.6.6   [required by bap-std, bap-api]
  - install graphlib                         2.2.0   [required by bap-primus]
  - install jane-street-headers              v0.14.0 [required by core_kernel]
  - install jst-config                       v0.14.1 [required by core_kernel]
  - install lambda-term                      3.3.3   [required by utop]
  - install logs                             0.10.0  [required by utop]
  - install lwt_react                        1.2.0   [required by utop]
  - install mew                              0.1.0   [required by mew_vi]
  - install mew_vi                           0.5.0   [required by lambda-term]
  - install mmap                             1.2.0   [required by bap-std]
  - install monads                           2.2.0   [required by bap-primus-round-robin-scheduler, bap-primus-print, bap-primus-exploring-scheduler, etc.]
  - install num                              1.6     [required by sexplib]
  - install oasis                            0.4.11  [required by bap-future, bare]
  - install ocaml-compiler-libs              v0.12.4 [required by ppxlib]
  - install ocaml-syntax-shims               1.0.0   [required by angstrom]
  - install ocamlbuild                       0.16.1  [required by oasis]
  - install ocamlgraph                       2.2.0   [required by graphlib]
  - install ocamlify                         0.0.1   [required by oasis]
  - install ocamlmod                         0.1.1   [required by oasis]
  - install octavius                         1.2.2   [required by ppx_js_style]
  - install ogre                             2.2.0   [required by bap-primus-loader]
  - install parsexp                          v0.14.2 [required by bap-primus, bare]
  - install ppx_assert                       v0.14.0 [required by core_kernel]
  - install ppx_bap                          v0.14.0 [required by bap-primus-loader, bap-primus-print]
  - install ppx_base                         v0.14.0 [required by core_kernel]
  - install ppx_bench                        v0.14.1 [required by ppx_bap]
  - install ppx_bin_prot                     v0.14.0 [required by ppx_bap]
  - install ppx_cold                         v0.14.0 [required by ppx_bap]
  - install ppx_compare                      v0.14.0 [required by ppx_bap]
  - install ppx_custom_printf                v0.14.1 [required by ppx_jane]
  - install ppx_derivers                     1.2.1   [required by ppxlib]
  - install ppx_enumerate                    v0.14.0 [required by ppx_bap]
  - install ppx_expect                       v0.14.2 [required by ppx_jane]
  - install ppx_fields_conv                  v0.14.2 [required by ppx_bap]
  - install ppx_fixed_literal                v0.14.0 [required by ppx_jane]
  - install ppx_hash                         v0.14.0 [required by core_kernel]
  - install ppx_here                         v0.14.0 [required by ppx_bap]
  - install ppx_inline_test                  v0.14.1 [required by core_kernel]
  - install ppx_jane                         v0.14.0 [required by core_kernel]
  - install ppx_js_style                     v0.14.1 [required by ppx_base]
  - install ppx_let                          v0.14.0 [required by ppx_jane]
  - install ppx_module_timer                 v0.14.0 [required by ppx_jane]
  - install ppx_optcomp                      v0.14.3 [required by core_kernel]
  - install ppx_optional                     v0.14.0 [required by ppx_jane]
  - install ppx_pipebang                     v0.14.0 [required by ppx_jane]
  - install ppx_sexp_conv                    v0.14.3 [required by core_kernel]
  - install ppx_sexp_message                 v0.14.1 [required by core_kernel]
  - install ppx_sexp_value                   v0.14.0 [required by ppx_bap]
  - install ppx_stable                       v0.14.1 [required by ppx_jane]
  - install ppx_string                       v0.14.1 [required by ppx_jane]
  - install ppx_typerep_conv                 v0.14.2 [required by ppx_jane]
  - install ppx_variants_conv                v0.14.2 [required by ppx_bap]
  - install ppxlib                           0.25.1  [required by ppx_bap]
  - install re                               1.14.0  [required by ppx_expect]
  - install react                            1.2.2   [required by utop]
  - install regular                          2.2.0   [required by bap-std, bap-api]
  - install result                           1.5     [required by bap-std]
  - install sexplib                          v0.14.0 [required by core_kernel]
  - install sexplib0                         v0.14.0 [required by base, sexplib]
  - install splittable_random                v0.14.0 [required by core_kernel]
  - install stdio                            v0.14.0 [required by core_kernel]
  - install stdlib-shims                     0.3.0   [required by bap-recipe]
  - install stringext                        1.6.0   [required by uri]
  - install time_now                         v0.14.0 [required by core_kernel]
  - install topkg                            1.1.1   [required by uuidm, logs]
  - install trie                             1.0.0   [required by mew]
  - install typerep                          v0.14.0 [required by core_kernel]
  - install uchar                            0.0.2   [required by zed]
  - install uri                              4.4.0   [required by bap-std]
  - install utop                             2.16.0  [required by bap-std]
  - install uucp                             17.0.0  [required by zed]
  - install uuidm                            0.9.10  [required by bap-primus]
  - install uuseg                            17.0.0  [required by zed]
  - install uutf                             1.0.4   [required by zed]
  - install variantslib                      v0.14.0 [required by core_kernel]
  - install xdg                              3.21.1  [required by utop]
  - install zarith                           1.14    [required by bap-std]
  - install zed                              3.2.3   [required by utop]

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

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "clang" "libgmp-dev" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package libpipeline1: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 .../libpipeline1_1.5.8-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-1) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../binfmt-support_2.2.2-7_amd64.deb ...
- Unpacking binfmt-support (2.2.2-7) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- 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 ... 20970 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 ... 21456 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../01-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../02-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../03-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libclang-cpp19.
- Preparing to unpack .../04-libclang-cpp19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-cpp19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libgc1:amd64.
- Preparing to unpack .../05-libgc1_1%3a8.2.8-1_amd64.deb ...
- Unpacking libgc1:amd64 (1:8.2.8-1) ...
- Selecting previously unselected package libobjc4:amd64.
- Preparing to unpack .../06-libobjc4_14.2.0-19_amd64.deb ...
- Unpacking libobjc4:amd64 (14.2.0-19) ...
- Selecting previously unselected package libobjc-14-dev:amd64.
- Preparing to unpack .../07-libobjc-14-dev_14.2.0-19_amd64.deb ...
- Unpacking libobjc-14-dev:amd64 (14.2.0-19) ...
- Selecting previously unselected package libclang-common-19-dev:amd64.
- Preparing to unpack .../08-libclang-common-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-linker-tools.
- Preparing to unpack .../09-llvm-19-linker-tools_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-linker-tools (1:19.1.7-3+b1) ...
- Selecting previously unselected package libclang1-19.
- Preparing to unpack .../10-libclang1-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang1-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package clang-19.
- Preparing to unpack .../11-clang-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking clang-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package clang.
- Preparing to unpack .../12-clang_1%3a19.0-63_amd64.deb ...
- Unpacking clang (1:19.0-63) ...
- Selecting previously unselected package clang-tools-19.
- Preparing to unpack .../13-clang-tools-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking clang-tools-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libc6-i386.
- Preparing to unpack .../14-libc6-i386_2.41-12+deb13u1_amd64.deb ...
- Unpacking libc6-i386 (2.41-12+deb13u1) ...
- Selecting previously unselected package lib32gcc-s1.
- Preparing to unpack .../15-lib32gcc-s1_14.2.0-19_amd64.deb ...
- Unpacking lib32gcc-s1 (14.2.0-19) ...
- Selecting previously unselected package lib32stdc++6.
- Preparing to unpack .../16-lib32stdc++6_14.2.0-19_amd64.deb ...
- Unpacking lib32stdc++6 (14.2.0-19) ...
- Selecting previously unselected package libclang-rt-19-dev:amd64.
- Preparing to unpack .../17-libclang-rt-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../18-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../19-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 .../20-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../21-libncurses6_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../22-libncurses-dev_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../23-libpfm4_4.13.0+git99-gc5587f9-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../24-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../25-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../26-libyaml-0-2_0.2.5-2_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-2) ...
- Selecting previously unselected package libz3-dev:amd64.
- Preparing to unpack .../27-libz3-dev_4.13.3-1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.13.3-1) ...
- Selecting previously unselected package llvm-19-runtime.
- Preparing to unpack .../28-llvm-19-runtime_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-runtime (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19.
- Preparing to unpack .../29-llvm-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../30-python3-pygments_2.18.0+dfsg-2_all.deb ...
- Unpacking python3-pygments (2.18.0+dfsg-2) ...
- Selecting previously unselected package python3-yaml.
- Preparing to unpack .../31-python3-yaml_6.0.2-1+b2_amd64.deb ...
- Unpacking python3-yaml (6.0.2-1+b2) ...
- Selecting previously unselected package llvm-19-tools.
- Preparing to unpack .../32-llvm-19-tools_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-tools (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-dev.
- Preparing to unpack .../33-llvm-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-dev (1:19.1.7-3+b1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../34-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../35-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../36-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../37-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) ...
- Setting up media-types (13.0.0) ...
- Setting up libpipeline1:amd64 (1.5.8-1) ...
- Setting up libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ...
- Setting up libyaml-0-2:amd64 (0.2.5-2) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Setting up libncurses6:amd64 (6.5+20250216-2) ...
- Setting up binfmt-support (2.2.2-7) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgc1:amd64 (1:8.2.8-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libc6-i386 (2.41-12+deb13u1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libz3-dev:amd64 (4.13.3-1) ...
- Setting up libncurses-dev:amd64 (6.5+20250216-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libclang1-19 (1:19.1.7-3+b1) ...
- Setting up libobjc4:amd64 (14.2.0-19) ...
- Setting up libobjc-14-dev:amd64 (14.2.0-19) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up lib32gcc-s1 (14.2.0-19) ...
- Setting up lib32stdc++6 (14.2.0-19) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ...
- Setting up llvm-19-linker-tools (1:19.1.7-3+b1) ...
- Setting up llvm-19-runtime (1:19.1.7-3+b1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libclang-cpp19 (1:19.1.7-3+b1) ...
- 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...
- Setting up clang-19 (1:19.1.7-3+b1) ...
- Setting up clang-tools-19 (1:19.1.7-3+b1) ...
- Setting up python3-pygments (2.18.0+dfsg-2) ...
- Setting up clang (1:19.0-63) ...
- Setting up llvm-19 (1:19.1.7-3+b1) ...
- Setting up python3-yaml (6.0.2-1+b2) ...
- Setting up llvm-19-tools (1:19.1.7-3+b1) ...
- Setting up llvm-19-dev (1:19.1.7-3+b1) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
- Processing triggers for base-files (13.8+deb13u3) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved bap-abi.2.2.0, bap-api.2.2.0, bap-build.2.2.0, bap-bundle.2.2.0, bap-c.2.2.0, bap-core-theory.2.2.0, bap-future.2.2.0, bap-knowledge.2.2.0, bap-main.2.2.0, bap-plugins.2.2.0, bap-primus.2.2.0, bap-primus-exploring-scheduler.2.2.0, bap-primus-greedy-scheduler.2.2.0, bap-primus-limit.2.2.0, bap-primus-loader.2.2.0, bap-primus-mark-visited.2.2.0, bap-primus-print.2.2.0, bap-primus-promiscuous.2.2.0, bap-primus-round-robin-scheduler.2.2.0, bap-primus-support.2.2.0, bap-primus-track-visited.2.2.0, bap-primus-wandering-scheduler.2.2.0, bap-recipe.2.2.0, bap-relation.2.2.0, bap-std.2.2.0, bap-strings.2.2.0, bare.2.2.0, bitvec.2.2.0, bitvec-binprot.2.2.0, bitvec-order.2.2.0, bitvec-sexp.2.2.0, graphlib.2.2.0, monads.2.2.0, ogre.2.2.0, regular.2.2.0  (cached)
-> retrieved base.v0.14.3  (cached)
-> retrieved base_bigstring.v0.14.0  (cached)
-> retrieved base_quickcheck.v0.14.1  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bin_prot.v0.14.1  (cached)
-> retrieved camlzip.1.14  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved core_kernel.v0.14.2  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved fieldslib.v0.14.0  (cached)
-> retrieved fileutils.0.6.6  (cached)
-> retrieved jane-street-headers.v0.14.0  (cached)
-> installed bigarray-compat.1.1.0
-> installed conf-zlib.1
-> retrieved jst-config.v0.14.1  (cached)
-> retrieved lambda-term.3.3.3  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt_react.1.2.0  (cached)
-> retrieved mew.0.1.0  (cached)
-> retrieved mew_vi.0.5.0  (cached)
-> retrieved mmap.1.2.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved oasis.0.4.11  (cached)
-> installed jane-street-headers.v0.14.0
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed bigstringaf.0.10.0
-> installed mmap.1.2.0
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocamlify.0.0.1  (cached)
-> retrieved ocamlmod.0.1.1  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved parsexp.v0.14.2  (cached)
-> retrieved ppx_assert.v0.14.0  (cached)
-> retrieved ppx_bap.v0.14.0  (cached)
-> retrieved ppx_base.v0.14.0  (cached)
-> retrieved ppx_bench.v0.14.1  (cached)
-> retrieved ppx_bin_prot.v0.14.0  (cached)
-> retrieved ppx_cold.v0.14.0  (cached)
-> retrieved ppx_compare.v0.14.0  (cached)
-> retrieved ppx_custom_printf.v0.14.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_enumerate.v0.14.0  (cached)
-> retrieved ppx_expect.v0.14.2  (cached)
-> retrieved ppx_fields_conv.v0.14.2  (cached)
-> retrieved ppx_fixed_literal.v0.14.0  (cached)
-> retrieved ppx_hash.v0.14.0  (cached)
-> retrieved ppx_here.v0.14.0  (cached)
-> retrieved ppx_inline_test.v0.14.1  (cached)
-> retrieved ppx_jane.v0.14.0  (cached)
-> retrieved ppx_js_style.v0.14.1  (cached)
-> installed camlzip.1.14
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ocamlmod.0.1.1
-> installed num.1.6
-> installed fileutils.0.6.6
-> installed ppx_derivers.1.2.1
-> retrieved ppx_let.v0.14.0  (cached)
-> retrieved ppx_module_timer.v0.14.0  (cached)
-> retrieved ppx_optcomp.v0.14.3  (cached)
-> retrieved ppx_optional.v0.14.0  (cached)
-> retrieved ppx_pipebang.v0.14.0  (cached)
-> retrieved ppx_sexp_conv.v0.14.3  (cached)
-> retrieved ppx_sexp_message.v0.14.1  (cached)
-> retrieved ppx_sexp_value.v0.14.0  (cached)
-> retrieved ppx_stable.v0.14.1  (cached)
-> retrieved ppx_string.v0.14.1  (cached)
-> retrieved ppx_typerep_conv.v0.14.2  (cached)
-> installed octavius.1.2.2
-> retrieved ppx_variants_conv.v0.14.2  (cached)
-> installed angstrom.0.16.1
-> retrieved ppxlib.0.25.1  (cached)
-> retrieved re.1.14.0  (cached)
-> installed ocamlgraph.2.2.0
-> retrieved react.1.2.2  (cached)
-> retrieved result.1.5  (cached)
-> retrieved sexplib.v0.14.0  (cached)
-> retrieved sexplib0.v0.14.0  (cached)
-> retrieved splittable_random.v0.14.0  (cached)
-> retrieved stdio.v0.14.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved time_now.v0.14.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed cmdliner.1.3.0
-> retrieved trie.1.0.0  (cached)
-> retrieved typerep.v0.14.0  (cached)
-> installed result.1.5
-> retrieved uchar.0.0.2  (cached)
-> retrieved uri.4.4.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed trie.1.0.0
-> retrieved utop.2.16.0  (cached)
-> installed sexplib0.v0.14.0
-> retrieved uucp.17.0.0  (cached)
-> retrieved uuidm.0.9.10  (cached)
-> installed mew.0.1.0
-> retrieved uuseg.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved variantslib.v0.14.0  (cached)
-> installed re.1.14.0
-> retrieved xdg.3.21.1  (cached)
-> installed ocamlbuild.0.16.1
-> installed uri.4.4.0
-> retrieved zarith.1.14  (cached)
-> retrieved zed.3.2.3  (cached)
-> installed uchar.0.0.2
-> installed xdg.3.21.1
-> installed base.v0.14.3
-> installed ocamlify.0.0.1
-> installed fieldslib.v0.14.0
-> installed stdio.v0.14.0
-> installed typerep.v0.14.0
-> installed variantslib.v0.14.0
-> installed topkg.1.1.1
-> installed zarith.1.14
-> installed parsexp.v0.14.2
-> installed uuidm.0.9.10
-> installed react.1.2.2
-> installed logs.0.10.0
-> installed uutf.1.0.4
-> installed sexplib.v0.14.0
-> installed lwt_react.1.2.0
-> installed mew_vi.0.5.0
-> installed ppxlib.0.25.1
-> installed ppx_optcomp.v0.14.3
-> installed ppx_fields_conv.v0.14.2
-> installed ppx_here.v0.14.0
-> installed ppx_enumerate.v0.14.0
-> installed ppx_stable.v0.14.1
-> installed ppx_let.v0.14.0
-> installed ppx_fixed_literal.v0.14.0
-> installed ppx_typerep_conv.v0.14.2
-> installed ppx_compare.v0.14.0
-> installed ppx_variants_conv.v0.14.2
-> installed ppx_cold.v0.14.0
-> installed ppx_js_style.v0.14.1
-> installed ppx_sexp_conv.v0.14.3
-> installed ppx_pipebang.v0.14.0
-> installed ppx_optional.v0.14.0
-> installed ppx_hash.v0.14.0
-> installed ppx_sexp_value.v0.14.0
-> installed ppx_sexp_message.v0.14.1
-> installed ppx_assert.v0.14.0
-> installed ppx_custom_printf.v0.14.1
-> installed ppx_base.v0.14.0
-> installed jst-config.v0.14.1
-> installed bin_prot.v0.14.1
-> installed ppx_string.v0.14.1
-> installed time_now.v0.14.0
-> installed ppx_bin_prot.v0.14.0
-> installed ppx_module_timer.v0.14.0
-> installed ppx_inline_test.v0.14.1
-> installed ppx_bench.v0.14.1
-> installed ppx_expect.v0.14.2
-> installed oasis.0.4.11
-> installed splittable_random.v0.14.0
-> installed uucp.17.0.0
-> installed base_quickcheck.v0.14.1
-> installed bap-relation.2.2.0
-> installed bap-recipe.2.2.0
-> installed bitvec.2.2.0
-> installed ppx_bap.v0.14.0
-> installed ppx_jane.v0.14.0
-> installed uuseg.17.0.0
-> installed zed.3.2.3
-> installed base_bigstring.v0.14.0
-> installed bitvec-sexp.2.2.0
-> installed bitvec-binprot.2.2.0
-> installed lambda-term.3.3.3
-> installed utop.2.16.0
-> installed bitvec-order.2.2.0
-> installed core_kernel.v0.14.2
-> installed bap-build.2.2.0
-> installed bare.2.2.0
-> installed bap-strings.2.2.0
-> installed bap-bundle.2.2.0
-> installed regular.2.2.0
-> installed monads.2.2.0
-> installed bap-future.2.2.0
-> installed ogre.2.2.0
-> installed bap-knowledge.2.2.0
-> installed bap-plugins.2.2.0
-> installed bap-main.2.2.0
-> installed bap-core-theory.2.2.0
-> installed graphlib.2.2.0
-> installed bap-std.2.2.0
-> installed bap-abi.2.2.0
-> installed bap-api.2.2.0
-> installed bap-c.2.2.0
-> installed bap-primus.2.2.0
-> installed bap-primus-greedy-scheduler.2.2.0
-> installed bap-primus-exploring-scheduler.2.2.0
-> installed bap-primus-limit.2.2.0
-> installed bap-primus-print.2.2.0
-> installed bap-primus-loader.2.2.0
-> installed bap-primus-promiscuous.2.2.0
-> installed bap-primus-round-robin-scheduler.2.2.0
-> installed bap-primus-track-visited.2.2.0
-> installed bap-primus-wandering-scheduler.2.2.0
-> installed bap-primus-mark-visited.2.2.0
-> installed bap-primus-support.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 11:13.59 ---> saved as "64c78b9172fa55f1bb3d420d3b55b7221ea8f86e33eb323b29e3dd2d5de2aca2"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test bap-primus-support.2.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile bap-primus-support 2.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bap-primus-support.2.2.0  (https://opam.ocaml.org/cache)
-> removed   bap-primus-support.2.2.0
-> installed bap-primus-support.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 11:14.06 ---> saved as "0b247a84d8cfe66f90dc9956c58a1877629225711c93f0947bf2b34c8abf8c68"

/home/opam: (run (shell  "opam reinstall --with-test --verbose bap-primus-support.2.2.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\" != 'bap-primus-support.2.2.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 bap-primus-support 2.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [bap-primus-support.2.2.0: extract]
-> retrieved bap-primus-support.2.2.0  (cached)
-> removed   bap-primus-support.2.2.0
-> installed bap-primus-support.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 11:14.17 ---> saved as "4860109f5210d1308a4e59c5d756a7acf60a884295ecb803d6d2c1c012498eb0"
Job succeeded
2026-03-10 11:14.31: Job succeeded