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-4.14/s390x

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-4.14@sha256:79a341f15ad0568e6625644d32c721cc69f7be831ac265c2a81a1631f16e6759
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-4.14@sha256:79a341f15ad0568e6625644d32c721cc69f7be831ac265c2a81a1631f16e6759-dune-ai-context.0.1.0-e50e91599a631f1c251a0c6bd1acf9174cc68d06"
2026-03-08 04:21.53: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:79a341f15ad0568e6625644d32c721cc69f7be831ac265c2a81a1631f16e6759)
 (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:22.44: Got resource from pool OCluster
Building on s390x-worker-01.marist.ci.dev
All commits already cached
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-4.14@sha256:79a341f15ad0568e6625644d32c721cc69f7be831ac265c2a81a1631f16e6759)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:79a341f15ad0568e6625644d32c721cc69f7be831ac265c2a81a1631f16e6759' locally
docker.io/ocaml/opam@sha256:79a341f15ad0568e6625644d32c721cc69f7be831ac265c2a81a1631f16e6759: Pulling from ocaml/opam
aba9aa950add: Pulling fs layer
44cbd81c12fa: Pulling fs layer
4c53aedee6a2: Pulling fs layer
d670da13a611: Pulling fs layer
c7cf53536c8c: Pulling fs layer
f89fc642e809: Pulling fs layer
d6e89c91c7f1: Pulling fs layer
11f834d4f810: Pulling fs layer
041610a4735d: Pulling fs layer
0578668b9fde: Pulling fs layer
666dcb8fb896: Pulling fs layer
84b728f5e566: Pulling fs layer
899a6b8287ef: Pulling fs layer
43d20536d132: Pulling fs layer
3d66d800d42c: Pulling fs layer
079a365d41d8: Pulling fs layer
f8d8f24d1124: Pulling fs layer
d670da13a611: Waiting
c7cf53536c8c: Waiting
a17501abf2c8: Pulling fs layer
f89fc642e809: Waiting
d6e89c91c7f1: Waiting
11f834d4f810: Waiting
041610a4735d: Waiting
352a6691ace8: Pulling fs layer
0578668b9fde: Waiting
666dcb8fb896: Waiting
71981db50d76: Pulling fs layer
92db824ad3e5: Pulling fs layer
4f4fb700ef54: Pulling fs layer
84b728f5e566: Waiting
899a6b8287ef: Waiting
a32f07fd246c: Pulling fs layer
43d20536d132: Waiting
3d66d800d42c: Waiting
079a365d41d8: Waiting
f8d8f24d1124: Waiting
a17501abf2c8: Waiting
ee63fbeaa173: Pulling fs layer
352a6691ace8: Waiting
71981db50d76: Waiting
92db824ad3e5: Waiting
bcf4b0e84023: Pulling fs layer
4f4fb700ef54: Waiting
a32f07fd246c: Waiting
83b897ba7e80: Pulling fs layer
ee63fbeaa173: Waiting
bcf4b0e84023: Waiting
26a6862c6040: Pulling fs layer
83b897ba7e80: Waiting
9afbebb090fe: Pulling fs layer
4fb0534db1cd: Pulling fs layer
26a6862c6040: Waiting
9afbebb090fe: Waiting
96472492ef8b: Pulling fs layer
4fb0534db1cd: Waiting
a4c0247e454f: Pulling fs layer
45558eba2119: Pulling fs layer
f38a64490ef7: Pulling fs layer
96472492ef8b: Waiting
a4c0247e454f: Waiting
256b52ba3672: Pulling fs layer
45558eba2119: Waiting
f38a64490ef7: Waiting
256b52ba3672: Waiting
1cda0916c791: Pulling fs layer
753ba782b5d8: Pulling fs layer
18fa71b40f86: Pulling fs layer
fa9c0cbd7859: Pulling fs layer
1cda0916c791: Waiting
dca60e431d9b: Pulling fs layer
753ba782b5d8: Waiting
18fa71b40f86: Waiting
750ea0eaf085: Pulling fs layer
fa9c0cbd7859: Waiting
dca60e431d9b: Waiting
026bbb2287d8: Pulling fs layer
8ad1a1eeac86: Pulling fs layer
d7fca2ca9ddd: Pulling fs layer
750ea0eaf085: Waiting
89e499ef4999: Pulling fs layer
026bbb2287d8: Waiting
8ad1a1eeac86: Waiting
d7fca2ca9ddd: Waiting
89e499ef4999: Waiting
44cbd81c12fa: Verifying Checksum
44cbd81c12fa: Download complete
4c53aedee6a2: Verifying Checksum
4c53aedee6a2: Download complete
c7cf53536c8c: Verifying Checksum
c7cf53536c8c: Download complete
d670da13a611: Verifying Checksum
d670da13a611: Download complete
aba9aa950add: Verifying Checksum
aba9aa950add: Download complete
d6e89c91c7f1: Verifying Checksum
d6e89c91c7f1: Download complete
11f834d4f810: Verifying Checksum
11f834d4f810: Download complete
041610a4735d: Verifying Checksum
041610a4735d: Download complete
0578668b9fde: Verifying Checksum
0578668b9fde: Download complete
666dcb8fb896: Verifying Checksum
666dcb8fb896: Download complete
84b728f5e566: Verifying Checksum
84b728f5e566: Download complete
899a6b8287ef: Verifying Checksum
899a6b8287ef: Download complete
43d20536d132: Verifying Checksum
43d20536d132: Download complete
3d66d800d42c: Verifying Checksum
3d66d800d42c: Download complete
f8d8f24d1124: Verifying Checksum
f8d8f24d1124: Download complete
079a365d41d8: Verifying Checksum
079a365d41d8: Download complete
352a6691ace8: Verifying Checksum
352a6691ace8: Download complete
a17501abf2c8: Verifying Checksum
a17501abf2c8: Download complete
92db824ad3e5: Verifying Checksum
92db824ad3e5: Download complete
71981db50d76: Verifying Checksum
71981db50d76: Download complete
f89fc642e809: Download complete
4f4fb700ef54: Download complete
aba9aa950add: Pull complete
a32f07fd246c: Verifying Checksum
a32f07fd246c: Download complete
44cbd81c12fa: Pull complete
4c53aedee6a2: Pull complete
ee63fbeaa173: Verifying Checksum
ee63fbeaa173: Download complete
bcf4b0e84023: Verifying Checksum
bcf4b0e84023: Download complete
83b897ba7e80: Verifying Checksum
83b897ba7e80: Download complete
26a6862c6040: Verifying Checksum
26a6862c6040: Download complete
9afbebb090fe: Verifying Checksum
9afbebb090fe: Download complete
4fb0534db1cd: Download complete
96472492ef8b: Download complete
a4c0247e454f: Verifying Checksum
a4c0247e454f: Download complete
45558eba2119: Verifying Checksum
45558eba2119: Download complete
f38a64490ef7: Verifying Checksum
f38a64490ef7: Download complete
d670da13a611: Pull complete
256b52ba3672: Verifying Checksum
256b52ba3672: Download complete
c7cf53536c8c: Pull complete
753ba782b5d8: Verifying Checksum
753ba782b5d8: Download complete
fa9c0cbd7859: Verifying Checksum
fa9c0cbd7859: Download complete
dca60e431d9b: Verifying Checksum
dca60e431d9b: Download complete
750ea0eaf085: Verifying Checksum
750ea0eaf085: Download complete
026bbb2287d8: Verifying Checksum
026bbb2287d8: Download complete
8ad1a1eeac86: Verifying Checksum
8ad1a1eeac86: Download complete
18fa71b40f86: Verifying Checksum
18fa71b40f86: Download complete
d7fca2ca9ddd: Verifying Checksum
d7fca2ca9ddd: Download complete
89e499ef4999: Verifying Checksum
89e499ef4999: Download complete
1cda0916c791: Verifying Checksum
1cda0916c791: Download complete
f89fc642e809: Pull complete
d6e89c91c7f1: Pull complete
11f834d4f810: Pull complete
041610a4735d: Pull complete
0578668b9fde: Pull complete
666dcb8fb896: Pull complete
84b728f5e566: Pull complete
899a6b8287ef: Pull complete
43d20536d132: Pull complete
3d66d800d42c: Pull complete
079a365d41d8: Pull complete
f8d8f24d1124: Pull complete
a17501abf2c8: Pull complete
352a6691ace8: Pull complete
71981db50d76: Pull complete
92db824ad3e5: Pull complete
4f4fb700ef54: Pull complete
a32f07fd246c: Pull complete
ee63fbeaa173: Pull complete
bcf4b0e84023: Pull complete
83b897ba7e80: Pull complete
26a6862c6040: Pull complete
9afbebb090fe: Pull complete
4fb0534db1cd: Pull complete
96472492ef8b: Pull complete
a4c0247e454f: Pull complete
45558eba2119: Pull complete
f38a64490ef7: Pull complete
256b52ba3672: Pull complete
1cda0916c791: Pull complete
753ba782b5d8: Pull complete
18fa71b40f86: Pull complete
fa9c0cbd7859: Pull complete
dca60e431d9b: Pull complete
750ea0eaf085: Pull complete
026bbb2287d8: Pull complete
8ad1a1eeac86: Pull complete
d7fca2ca9ddd: Pull complete
89e499ef4999: Pull complete
Digest: sha256:79a341f15ad0568e6625644d32c721cc69f7be831ac265c2a81a1631f16e6759
Status: Downloaded newer image for ocaml/opam@sha256:79a341f15ad0568e6625644d32c721cc69f7be831ac265c2a81a1631f16e6759
2026-03-08 04:22.47 ---> using "b833f4a2374ee8e2e615086902f88fb301ea592bc1fad5e8e16099dd1f1e42d5" 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.47 ---> using "e351a2269696d86faa94ff0632d1e12683611c61fdf1919a6c21968c751717fb" 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.

Continue? [Y/n] y
Format upgrade done.
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.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-08 04:22.47 ---> using "1755d1ebadd37fb42eac986c7c5ae7af8c922ce3d0a8a0f31f397ebab74a1523" 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=s390x 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                 3
# 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-08 04:22.47 ---> using "717cc17b14ac1857ab3093b85e2361ade81bc5ab35773ddf5b0af99a19227b25" 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.47 ---> using "6434a2ea5003f46b9e2ca6d9310d6c019e97d04146153104f16c74c0679bfe26" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-08 04:22.48 ---> using "eddb1146d2dc2721b5d22a5d13dc536204aafc8b2dc73b6331eaec54b885605c" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-08 04:22.48 ---> using "78839db1c45bbd8c1e66acc29ed884e347c4cb448319601ce3391313f2883b96" 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 s390x Packages [99.7 kB]
- Fetched 190 kB in 0s (1379 kB/s)
- Reading package lists...
2026-03-08 04:22.48 ---> using "de09df63a01eb973c8f02d0f72c89cc1fbf3ace4eb63b24c503d7500f20dd738" from cache

/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:22.48 ---> using "733b183f4e09ba8abae67050a709778729e7e70edcbdd786af43599af50e603f" from cache

/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.16.0        [required by sexplib]
  - install sexplib         v0.16.0        [required by dune-ai-context]
  - install sexplib0        v0.16.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.16.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> installed num.1.6
-> installed dune.3.21.1
-> installed sexplib0.v0.16.0
-> installed parsexp.v0.16.0
-> installed sexplib.v0.16.0
[ERROR] The compilation of dune-ai-context.0.1.0 failed at "dune build -p dune-ai-context -j 3 @install".

#=== ERROR while compiling dune-ai-context.0.1.0 ==============================#
# context              2.5.0 | linux/s390x | ocaml-base-compiler.4.14.2 | pinned(https://github.com/zenfey/dune-ai-context/archive/refs/tags/v0.1.0.tar.gz)
# path                 ~/.opam/4.14/.opam-switch/build/dune-ai-context.0.1.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p dune-ai-context -j 3 @install
# exit-code            1
# env-file             ~/.opam/log/dune-ai-context-7-dec4c8.env
# output-file          ~/.opam/log/dune-ai-context-7-dec4c8.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.16.0
| - install sexplib  v0.16.0
| - install sexplib0 v0.16.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/4.14/.opam-switch/backup/state-20260308042250.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:23.29: Job failed: Failed: Build failed
2026-03-08 04:23.29: Log analysis:
2026-03-08 04:23.29: >>> 
[ERROR] The compilation of dune-ai-context.0.1.0 failed at "dune build -p dune-ai-context -j 3 @install".
 (score = 20)
2026-03-08 04:23.29: >>> 
# Error: Library "ppx_inline_test" not found.
 (score = 48)
2026-03-08 04:23.29: Library "ppx_inline_test" not found.