Build:
  1. 0
2026-03-08 04:21.53: New job: test dune-ai-context.0.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29517/head (e50e91599a631f1c251a0c6bd1acf9174cc68d06)
                              on debian-13-ocaml-5.4/arm64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29517/head" && git reset --hard e50e9159
git fetch origin master
git merge --no-edit 6c723fb169d315af6d1b07ba18f3ab659c649cc9
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:515f91384679260c4d76d9346991a9270d017efc081cbcf7b65bf75ac0c6cd9e
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 dune-ai-context.0.1.0 0.1.0
RUN opam reinstall dune-ai-context.0.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune-ai-context.0.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test dune-ai-context.0.1.0) || true
RUN opam reinstall --with-test --verbose dune-ai-context.0.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune-ai-context.0.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-08 04:21.53: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:515f91384679260c4d76d9346991a9270d017efc081cbcf7b65bf75ac0c6cd9e-dune-ai-context.0.1.0-e50e91599a631f1c251a0c6bd1acf9174cc68d06"
2026-03-08 04:21.53: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:515f91384679260c4d76d9346991a9270d017efc081cbcf7b65bf75ac0c6cd9e)
 (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 dune-ai-context.0.1.0 0.1.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune-ai-context.0.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune-ai-context.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test dune-ai-context.0.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose dune-ai-context.0.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune-ai-context.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-08 04:21.53: Waiting for resource in pool OCluster
2026-03-08 04:21.54: Waiting for worker…
2026-03-08 04:21.57: Got resource from pool OCluster
Building on ocaml-2.osuosl.ci.dev
All commits already cached
Updating files:  26% (4919/18392)
Updating files:  27% (4966/18392)
Updating files:  28% (5150/18392)
Updating files:  29% (5334/18392)
Updating files:  30% (5518/18392)
Updating files:  31% (5702/18392)
Updating files:  32% (5886/18392)
Updating files:  33% (6070/18392)
Updating files:  34% (6254/18392)
Updating files:  35% (6438/18392)
Updating files:  36% (6622/18392)
Updating files:  37% (6806/18392)
Updating files:  38% (6989/18392)
Updating files:  39% (7173/18392)
Updating files:  40% (7357/18392)
Updating files:  41% (7541/18392)
Updating files:  42% (7725/18392)
Updating files:  43% (7909/18392)
Updating files:  44% (8093/18392)
Updating files:  45% (8277/18392)
Updating files:  46% (8461/18392)
Updating files:  47% (8645/18392)
Updating files:  48% (8829/18392)
Updating files:  49% (9013/18392)
Updating files:  49% (9153/18392)
Updating files:  50% (9196/18392)
Updating files:  51% (9380/18392)
Updating files:  52% (9564/18392)
Updating files:  53% (9748/18392)
Updating files:  54% (9932/18392)
Updating files:  55% (10116/18392)
Updating files:  56% (10300/18392)
Updating files:  57% (10484/18392)
Updating files:  58% (10668/18392)
Updating files:  59% (10852/18392)
Updating files:  60% (11036/18392)
Updating files:  61% (11220/18392)
Updating files:  62% (11404/18392)
Updating files:  63% (11587/18392)
Updating files:  64% (11771/18392)
Updating files:  65% (11955/18392)
Updating files:  66% (12139/18392)
Updating files:  67% (12323/18392)
Updating files:  68% (12507/18392)
Updating files:  69% (12691/18392)
Updating files:  70% (12875/18392)
Updating files:  71% (13059/18392)
Updating files:  72% (13243/18392)
Updating files:  73% (13427/18392)
Updating files:  73% (13538/18392)
Updating files:  74% (13611/18392)
Updating files:  75% (13794/18392)
Updating files:  76% (13978/18392)
Updating files:  77% (14162/18392)
Updating files:  78% (14346/18392)
Updating files:  79% (14530/18392)
Updating files:  80% (14714/18392)
Updating files:  81% (14898/18392)
Updating files:  82% (15082/18392)
Updating files:  83% (15266/18392)
Updating files:  84% (15450/18392)
Updating files:  85% (15634/18392)
Updating files:  86% (15818/18392)
Updating files:  87% (16002/18392)
Updating files:  88% (16185/18392)
Updating files:  89% (16369/18392)
Updating files:  90% (16553/18392)
Updating files:  91% (16737/18392)
Updating files:  92% (16921/18392)
Updating files:  93% (17105/18392)
Updating files:  94% (17289/18392)
Updating files:  95% (17473/18392)
Updating files:  96% (17657/18392)
Updating files:  97% (17841/18392)
Updating files:  97% (17951/18392)
Updating files:  98% (18025/18392)
Updating files:  99% (18209/18392)
Updating files: 100% (18392/18392)
Updating files: 100% (18392/18392), done.
HEAD is now at 6c723fb169 Merge pull request #29519 from mbarbin/opam-publish-crs.0.0.20260307
Updating 6c723fb169..e50e91599a
Fast-forward
 .../dune-ai-context/dune-ai-context.0.1.0/opam     | 42 ++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 packages/dune-ai-context/dune-ai-context.0.1.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:515f91384679260c4d76d9346991a9270d017efc081cbcf7b65bf75ac0c6cd9e)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:515f91384679260c4d76d9346991a9270d017efc081cbcf7b65bf75ac0c6cd9e' locally
docker.io/ocaml/opam@sha256:515f91384679260c4d76d9346991a9270d017efc081cbcf7b65bf75ac0c6cd9e: Pulling from ocaml/opam
1bd4defc8c5e: Pulling fs layer
0392a9b03762: Pulling fs layer
b22948f89819: Pulling fs layer
50d734b48f7f: Pulling fs layer
2177992334f7: Pulling fs layer
83c8cb383fef: Pulling fs layer
6ba4512d1f27: Pulling fs layer
3c7d30aed99f: Pulling fs layer
fb47c86320e8: Pulling fs layer
b72f50544b39: Pulling fs layer
48b83c8f6a56: Pulling fs layer
b98d9c3ebd00: Pulling fs layer
03343187894d: Pulling fs layer
9f5172efd37f: Pulling fs layer
ae96ebb9601f: Pulling fs layer
058dd2063dbc: Pulling fs layer
c35a072f823c: Pulling fs layer
9bebec788ee7: Pulling fs layer
452b69ff2588: Pulling fs layer
ec8490a65b44: Pulling fs layer
fb47c86320e8: Waiting
664554f1f2bf: Pulling fs layer
4f4fb700ef54: Pulling fs layer
17f05a191d05: Pulling fs layer
b72f50544b39: Waiting
48b83c8f6a56: Waiting
561e07df245a: Pulling fs layer
ee8ba93483b0: Pulling fs layer
b0a45215a4bd: Pulling fs layer
089d08a29ab6: Pulling fs layer
c34e87301ab9: Pulling fs layer
97c48b419833: Pulling fs layer
d7d65197b0e7: Pulling fs layer
96ff79fa36d2: Pulling fs layer
b0c990537697: Pulling fs layer
6490715e88f8: Pulling fs layer
c8def43c265c: Pulling fs layer
6af0e0ea3ad2: Pulling fs layer
5913635a0cc9: Pulling fs layer
c35a072f823c: Waiting
18ae542c4cd2: Pulling fs layer
f5663ae46d34: Pulling fs layer
50d734b48f7f: Waiting
2de4a3385513: Pulling fs layer
30625ee7f894: Pulling fs layer
9bebec788ee7: Waiting
2177992334f7: Waiting
225800ae4b69: Pulling fs layer
16fcaed8302d: Pulling fs layer
452b69ff2588: Waiting
83c8cb383fef: Waiting
ec0a1b66cf6e: Pulling fs layer
795d8c1ca04e: Pulling fs layer
6ba4512d1f27: Waiting
ec8490a65b44: Waiting
1142b73ca69b: Pulling fs layer
8f88ab9f4f03: Pulling fs layer
f7a1ad4f4ec2: Pulling fs layer
664554f1f2bf: Waiting
4f4fb700ef54: Waiting
3c7d30aed99f: Waiting
6490715e88f8: Waiting
b98d9c3ebd00: Waiting
c8def43c265c: Waiting
17f05a191d05: Waiting
6af0e0ea3ad2: Waiting
f5663ae46d34: Waiting
561e07df245a: Waiting
30625ee7f894: Waiting
9f5172efd37f: Waiting
ae96ebb9601f: Waiting
058dd2063dbc: Waiting
1142b73ca69b: Waiting
8f88ab9f4f03: Waiting
16fcaed8302d: Waiting
ee8ba93483b0: Waiting
d7d65197b0e7: Waiting
96ff79fa36d2: Waiting
ec0a1b66cf6e: Waiting
2de4a3385513: Waiting
c34e87301ab9: Waiting
18ae542c4cd2: Waiting
97c48b419833: Waiting
089d08a29ab6: Waiting
795d8c1ca04e: Waiting
0392a9b03762: Verifying Checksum
0392a9b03762: Download complete
b22948f89819: Verifying Checksum
b22948f89819: Download complete
1bd4defc8c5e: Verifying Checksum
1bd4defc8c5e: Download complete
2177992334f7: Verifying Checksum
2177992334f7: Download complete
50d734b48f7f: Verifying Checksum
50d734b48f7f: Download complete
6ba4512d1f27: Verifying Checksum
6ba4512d1f27: Download complete
3c7d30aed99f: Verifying Checksum
3c7d30aed99f: Download complete
fb47c86320e8: Verifying Checksum
fb47c86320e8: Download complete
b72f50544b39: Verifying Checksum
b72f50544b39: Download complete
48b83c8f6a56: Verifying Checksum
48b83c8f6a56: Download complete
b98d9c3ebd00: Verifying Checksum
b98d9c3ebd00: Download complete
03343187894d: Verifying Checksum
03343187894d: Download complete
9f5172efd37f: Verifying Checksum
9f5172efd37f: Download complete
058dd2063dbc: Download complete
ae96ebb9601f: Verifying Checksum
ae96ebb9601f: Download complete
c35a072f823c: Download complete
9bebec788ee7: Download complete
ec8490a65b44: Verifying Checksum
ec8490a65b44: Download complete
664554f1f2bf: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
83c8cb383fef: Verifying Checksum
83c8cb383fef: Download complete
17f05a191d05: Verifying Checksum
17f05a191d05: Download complete
561e07df245a: Download complete
b0a45215a4bd: Verifying Checksum
b0a45215a4bd: Download complete
ee8ba93483b0: Download complete
089d08a29ab6: Verifying Checksum
089d08a29ab6: Download complete
c34e87301ab9: Verifying Checksum
c34e87301ab9: Download complete
97c48b419833: Verifying Checksum
97c48b419833: Download complete
d7d65197b0e7: Verifying Checksum
d7d65197b0e7: Download complete
96ff79fa36d2: Verifying Checksum
96ff79fa36d2: Download complete
b0c990537697: Download complete
6490715e88f8: Verifying Checksum
6490715e88f8: Download complete
c8def43c265c: Verifying Checksum
c8def43c265c: Download complete
1bd4defc8c5e: Pull complete
5913635a0cc9: Download complete
0392a9b03762: Pull complete
b22948f89819: Pull complete
f5663ae46d34: Download complete
2de4a3385513: Verifying Checksum
2de4a3385513: Download complete
50d734b48f7f: Pull complete
30625ee7f894: Verifying Checksum
30625ee7f894: Download complete
225800ae4b69: Verifying Checksum
225800ae4b69: Download complete
16fcaed8302d: Download complete
ec0a1b66cf6e: Verifying Checksum
ec0a1b66cf6e: Download complete
2177992334f7: Pull complete
18ae542c4cd2: Verifying Checksum
18ae542c4cd2: Download complete
1142b73ca69b: Verifying Checksum
1142b73ca69b: Download complete
8f88ab9f4f03: Download complete
795d8c1ca04e: Verifying Checksum
6af0e0ea3ad2: Verifying Checksum
6af0e0ea3ad2: Download complete
f7a1ad4f4ec2: Download complete
83c8cb383fef: Pull complete
6ba4512d1f27: Pull complete
3c7d30aed99f: Pull complete
fb47c86320e8: Pull complete
b72f50544b39: Pull complete
48b83c8f6a56: Pull complete
b98d9c3ebd00: Pull complete
03343187894d: Pull complete
9f5172efd37f: Pull complete
ae96ebb9601f: Pull complete
058dd2063dbc: Pull complete
c35a072f823c: Pull complete
9bebec788ee7: Pull complete
452b69ff2588: Pull complete
ec8490a65b44: Pull complete
664554f1f2bf: Pull complete
4f4fb700ef54: Pull complete
17f05a191d05: Pull complete
561e07df245a: Pull complete
ee8ba93483b0: Pull complete
b0a45215a4bd: Pull complete
089d08a29ab6: Pull complete
c34e87301ab9: Pull complete
97c48b419833: Pull complete
d7d65197b0e7: Pull complete
96ff79fa36d2: Pull complete
b0c990537697: Pull complete
6490715e88f8: Pull complete
c8def43c265c: Pull complete
6af0e0ea3ad2: Pull complete
5913635a0cc9: Pull complete
18ae542c4cd2: Pull complete
f5663ae46d34: Pull complete
2de4a3385513: Pull complete
30625ee7f894: Pull complete
225800ae4b69: Pull complete
16fcaed8302d: Pull complete
ec0a1b66cf6e: Pull complete
795d8c1ca04e: Pull complete
1142b73ca69b: Pull complete
8f88ab9f4f03: Pull complete
f7a1ad4f4ec2: Pull complete
Digest: sha256:515f91384679260c4d76d9346991a9270d017efc081cbcf7b65bf75ac0c6cd9e
Status: Downloaded newer image for ocaml/opam@sha256:515f91384679260c4d76d9346991a9270d017efc081cbcf7b65bf75ac0c6cd9e
2026-03-08 04:22.17 ---> using "724e50f554abe841332fd9ee9d83624f9592d1368cc4463ef3d546f6169aa36a" 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-08 04:22.17 ---> using "1e8169b05a1af8d869fd862f253d3847c701d3ff22beb3c9cf48eee3b2da496c" 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
[NOTE] The 'jobs' option was reset, its value was 79 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=79 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-08 04:22.17 ---> using "af5a0fcb739622a532a75a4bbaf257f9df275b3920dd2283c68a85f3254552a9" 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=arm64 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                 15
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-08 04:22.17 ---> using "828ed863723a8aaa079e492499c61b5dffdf1a83798e1bfc09179ec83a23aed0" 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-08 04:22.17 ---> using "d315e84911222bf2715ad11915dbae35d542fd8694e9c64e901eee6f1916033e" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-08 04:22.28 ---> saved as "e6b61538b114c81a0370793d982076e0df2894b29d72369b8754f715dcb09fa4"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-08 04:23.14 ---> saved as "93279fcca530f434924e9f8f43582a7abaa914dc19e294fc0286e4a2c94fd590"

/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 arm64 Packages [108 kB]
- Fetched 199 kB in 0s (696 kB/s)
- Reading package lists...
- 
2026-03-08 04:23.17 ---> saved as "68282668f226afeca8aacada0c3db99d2fc59de89577924271c4f51ce25f2232"

/home/opam: (run (shell "opam pin add -k version -yn dune-ai-context.0.1.0 0.1.0"))
dune-ai-context is now pinned to version 0.1.0
2026-03-08 04:23.18 ---> saved as "d89d87d2bfc71deb080e482a8f387b0ce99a9de5ee9db89380aa77d13ffe3eff"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune-ai-context.0.1.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune-ai-context.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune-ai-context.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install dune            3.21.1         [required by dune-ai-context]
  - install dune-ai-context 0.1.0 (pinned)
  - install num             1.6            [required by sexplib]
  - install parsexp         v0.17.0        [required by sexplib]
  - install sexplib         v0.17.0        [required by dune-ai-context]
  - install sexplib0        v0.17.0        [required by sexplib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.1  (cached)
-> retrieved dune-ai-context.0.1.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved parsexp.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0  (cached)
-> installed num.1.6
-> installed dune.3.21.1
-> installed sexplib0.v0.17.0
-> installed parsexp.v0.17.0
-> installed sexplib.v0.17.0
[ERROR] The compilation of dune-ai-context.0.1.0 failed at "dune build -p dune-ai-context -j 15 @install".

#=== ERROR while compiling dune-ai-context.0.1.0 ==============================#
# context              2.5.0 | linux/arm64 | ocaml-base-compiler.5.4.0 | pinned(https://github.com/zenfey/dune-ai-context/archive/refs/tags/v0.1.0.tar.gz)
# path                 ~/.opam/5.4/.opam-switch/build/dune-ai-context.0.1.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p dune-ai-context -j 15 @install
# exit-code            1
# env-file             ~/.opam/log/dune-ai-context-7-489aba.env
# output-file          ~/.opam/log/dune-ai-context-7-489aba.out
### output ###
# File "lib/dune", line 5, characters 18-33:
# 5 |  (preprocess (pps ppx_inline_test))
#                       ^^^^^^^^^^^^^^^
# Error: Library "ppx_inline_test" not found.
# -> required by library "dune_ai_context" in _build/default/lib
# -> required by executable dune_ai_context in bin/dune:3
# -> required by _build/default/bin/dune_ai_context.exe
# -> required by _build/install/default/bin/dune-ai-context
# -> required by _build/default/dune-ai-context.install
# -> required by alias install



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build dune-ai-context 0.1.0
+- 
+- The following changes have been performed
| - install dune     3.21.1
| - install num      1.6
| - install parsexp  v0.17.0
| - install sexplib  v0.17.0
| - install sexplib0 v0.17.0
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20260308042319.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall dune-ai-context.0.1.0;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'dune-ai-context.0.1.0' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2026-03-08 04:24.57: Job failed: Failed: Build failed
2026-03-08 04:24.57: Log analysis:
2026-03-08 04:24.57: >>> 
[ERROR] The compilation of dune-ai-context.0.1.0 failed at "dune build -p dune-ai-context -j 15 @install".
 (score = 20)
2026-03-08 04:24.57: >>> 
# Error: Library "ppx_inline_test" not found.
 (score = 48)
2026-03-08 04:24.57: Library "ppx_inline_test" not found.