Build:
  1. 0
2026-03-07 16:42.20: New job: test dune-ai-context.0.1.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29517/head (ae38a596bb26f72650dc22dcbc34463b2ba9a793)
                              on ubuntu-24.04-ocaml-5.4/riscv64

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 ae38a596
git fetch origin master
git merge --no-edit ffb54b9bdd3fc5ecfdac3f4561fc52c30c810bd3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:4796b9387e68ccd22ef2dfb5750484e21c050534958740ab71136cd4679b1c6f
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 "\"ubuntu-24.04\""; 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 "\"ubuntu-24.04\""; 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-07 16:42.20: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:4796b9387e68ccd22ef2dfb5750484e21c050534958740ab71136cd4679b1c6f-dune-ai-context.0.1.0-ae38a596bb26f72650dc22dcbc34463b2ba9a793"
2026-03-07 16:42.20: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:4796b9387e68ccd22ef2dfb5750484e21c050534958740ab71136cd4679b1c6f)
 (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 \"\\\"ubuntu-24.04\\\"\"; 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 \"\\\"ubuntu-24.04\\\"\"; 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-07 16:42.20: Waiting for resource in pool OCluster
2026-03-07 16:42.20: Waiting for worker…
2026-03-07 19:20.17: Got resource from pool OCluster
Building on riscv-bm-03.sw.ci.dev
All commits already cached
Updating files:  14% (2677/18391)
Updating files:  15% (2759/18391)
Updating files:  16% (2943/18391)
Updating files:  17% (3127/18391)
Updating files:  18% (3311/18391)
Updating files:  19% (3495/18391)
Updating files:  20% (3679/18391)
Updating files:  21% (3863/18391)
Updating files:  22% (4047/18391)
Updating files:  23% (4230/18391)
Updating files:  24% (4414/18391)
Updating files:  25% (4598/18391)
Updating files:  26% (4782/18391)
Updating files:  27% (4966/18391)
Updating files:  28% (5150/18391)
Updating files:  28% (5234/18391)
Updating files:  29% (5334/18391)
Updating files:  30% (5518/18391)
Updating files:  31% (5702/18391)
Updating files:  32% (5886/18391)
Updating files:  33% (6070/18391)
Updating files:  34% (6253/18391)
Updating files:  35% (6437/18391)
Updating files:  36% (6621/18391)
Updating files:  37% (6805/18391)
Updating files:  38% (6989/18391)
Updating files:  39% (7173/18391)
Updating files:  40% (7357/18391)
Updating files:  41% (7541/18391)
Updating files:  42% (7725/18391)
Updating files:  42% (7760/18391)
Updating files:  43% (7909/18391)
Updating files:  44% (8093/18391)
Updating files:  45% (8276/18391)
Updating files:  46% (8460/18391)
Updating files:  47% (8644/18391)
Updating files:  48% (8828/18391)
Updating files:  49% (9012/18391)
Updating files:  50% (9196/18391)
Updating files:  51% (9380/18391)
Updating files:  52% (9564/18391)
Updating files:  53% (9748/18391)
Updating files:  54% (9932/18391)
Updating files:  54% (10087/18391)
Updating files:  55% (10116/18391)
Updating files:  56% (10299/18391)
Updating files:  57% (10483/18391)
Updating files:  58% (10667/18391)
Updating files:  59% (10851/18391)
Updating files:  60% (11035/18391)
Updating files:  61% (11219/18391)
Updating files:  62% (11403/18391)
Updating files:  63% (11587/18391)
Updating files:  64% (11771/18391)
Updating files:  65% (11955/18391)
Updating files:  66% (12139/18391)
Updating files:  67% (12322/18391)
Updating files:  67% (12412/18391)
Updating files:  68% (12506/18391)
Updating files:  69% (12690/18391)
Updating files:  70% (12874/18391)
Updating files:  71% (13058/18391)
Updating files:  72% (13242/18391)
Updating files:  73% (13426/18391)
Updating files:  74% (13610/18391)
Updating files:  75% (13794/18391)
Updating files:  76% (13978/18391)
Updating files:  77% (14162/18391)
Updating files:  78% (14345/18391)
Updating files:  79% (14529/18391)
Updating files:  80% (14713/18391)
Updating files:  80% (14745/18391)
Updating files:  81% (14897/18391)
Updating files:  82% (15081/18391)
Updating files:  83% (15265/18391)
Updating files:  84% (15449/18391)
Updating files:  85% (15633/18391)
Updating files:  86% (15817/18391)
Updating files:  87% (16001/18391)
Updating files:  88% (16185/18391)
Updating files:  89% (16368/18391)
Updating files:  90% (16552/18391)
Updating files:  91% (16736/18391)
Updating files:  92% (16920/18391)
Updating files:  93% (17104/18391)
Updating files:  93% (17183/18391)
Updating files:  94% (17288/18391)
Updating files:  95% (17472/18391)
Updating files:  96% (17656/18391)
Updating files:  97% (17840/18391)
Updating files:  98% (18024/18391)
Updating files:  99% (18208/18391)
Updating files: 100% (18391/18391)
Updating files: 100% (18391/18391), done.
HEAD is now at ffb54b9bdd Merge pull request #29488 from alan-j-hu/release-textmate-language-0.5.0
Updating ffb54b9bdd..ae38a596bb
Fast-forward
 .../dune-ai-context/dune-ai-context.0.1.0/opam     | 45 ++++++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 packages/dune-ai-context/dune-ai-context.0.1.0/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:4796b9387e68ccd22ef2dfb5750484e21c050534958740ab71136cd4679b1c6f)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:4796b9387e68ccd22ef2dfb5750484e21c050534958740ab71136cd4679b1c6f' locally
docker.io/ocaml/opam@sha256:4796b9387e68ccd22ef2dfb5750484e21c050534958740ab71136cd4679b1c6f: Pulling from ocaml/opam
f2683d5e2cbe: Pulling fs layer
02751ff4abc9: Pulling fs layer
e713ceb278b3: Pulling fs layer
756895a86a0b: Pulling fs layer
1a06c92bb812: Pulling fs layer
3c8248524df4: Pulling fs layer
69e0b9988875: Pulling fs layer
86e3068c9b9c: Pulling fs layer
8c27b312abe2: Pulling fs layer
756895a86a0b: Waiting
daf2913223bd: Pulling fs layer
1a06c92bb812: Waiting
8c34bc9ec7ad: Pulling fs layer
cf593a3cf665: Pulling fs layer
34b57fe326ab: Pulling fs layer
3c8248524df4: Waiting
ba2fd5c779ba: Pulling fs layer
a485987ec570: Pulling fs layer
9d309df9529a: Pulling fs layer
0536f64225da: Pulling fs layer
69e0b9988875: Waiting
8c27b312abe2: Waiting
8c34bc9ec7ad: Waiting
cf593a3cf665: Waiting
34b57fe326ab: Waiting
ba2fd5c779ba: Waiting
a485987ec570: Waiting
daf2913223bd: Waiting
9d309df9529a: Waiting
ce9e29f4d188: Pulling fs layer
a93d42988756: Pulling fs layer
28157b6d8c2f: Pulling fs layer
41973de8e3d5: Pulling fs layer
4f4fb700ef54: Pulling fs layer
0f37346a9ccb: Pulling fs layer
408fa26e5246: Pulling fs layer
abd5ecb90bdb: Pulling fs layer
b9b2a4deef0d: Pulling fs layer
a765421f304f: Pulling fs layer
049386d3400e: Pulling fs layer
c72b37197e1f: Pulling fs layer
da3f3feedbc9: Pulling fs layer
a93d42988756: Waiting
28157b6d8c2f: Waiting
0536f64225da: Waiting
b523f5dfe651: Pulling fs layer
41973de8e3d5: Waiting
4f9bec3428d5: Pulling fs layer
4f4fb700ef54: Waiting
8a016a7b87b7: Pulling fs layer
0f37346a9ccb: Waiting
1fbad9fb68da: Pulling fs layer
408fa26e5246: Waiting
abd5ecb90bdb: Waiting
b9b2a4deef0d: Waiting
ce9e29f4d188: Waiting
a765421f304f: Waiting
049386d3400e: Waiting
c72b37197e1f: Waiting
da3f3feedbc9: Waiting
b523f5dfe651: Waiting
4f9bec3428d5: Waiting
8a016a7b87b7: Waiting
fab68fbe84ee: Pulling fs layer
b45ea21c8e4b: Pulling fs layer
f5c1e4872369: Pulling fs layer
1fbad9fb68da: Waiting
1731e0f7b593: Pulling fs layer
5d10a06222ab: Pulling fs layer
388671f5f76e: Pulling fs layer
d9ac3c8b505d: Pulling fs layer
401bae281146: Pulling fs layer
bfb12a31092d: Pulling fs layer
19ce459c9d88: Pulling fs layer
fab68fbe84ee: Waiting
b45ea21c8e4b: Waiting
937b15f87b35: Pulling fs layer
6788009aba2e: Pulling fs layer
60d3c2e43dde: Pulling fs layer
f5c1e4872369: Waiting
5d10a06222ab: Waiting
401bae281146: Waiting
937b15f87b35: Waiting
bfb12a31092d: Waiting
388671f5f76e: Waiting
6788009aba2e: Waiting
19ce459c9d88: Waiting
d9ac3c8b505d: Waiting
60d3c2e43dde: Waiting
e713ceb278b3: Verifying Checksum
e713ceb278b3: Download complete
02751ff4abc9: Verifying Checksum
02751ff4abc9: Download complete
1a06c92bb812: Verifying Checksum
1a06c92bb812: Download complete
756895a86a0b: Verifying Checksum
756895a86a0b: Download complete
f2683d5e2cbe: Verifying Checksum
f2683d5e2cbe: Download complete
69e0b9988875: Verifying Checksum
69e0b9988875: Download complete
86e3068c9b9c: Verifying Checksum
86e3068c9b9c: Download complete
8c27b312abe2: Verifying Checksum
8c27b312abe2: Download complete
daf2913223bd: Verifying Checksum
daf2913223bd: Download complete
cf593a3cf665: Verifying Checksum
cf593a3cf665: Download complete
8c34bc9ec7ad: Verifying Checksum
8c34bc9ec7ad: Download complete
34b57fe326ab: Verifying Checksum
34b57fe326ab: Download complete
a485987ec570: Verifying Checksum
a485987ec570: Download complete
9d309df9529a: Verifying Checksum
9d309df9529a: Download complete
f2683d5e2cbe: Pull complete
02751ff4abc9: Pull complete
e713ceb278b3: Pull complete
ba2fd5c779ba: Download complete
0536f64225da: Verifying Checksum
0536f64225da: Download complete
ce9e29f4d188: Verifying Checksum
ce9e29f4d188: Download complete
a93d42988756: Verifying Checksum
a93d42988756: Download complete
28157b6d8c2f: Verifying Checksum
28157b6d8c2f: Download complete
41973de8e3d5: Verifying Checksum
41973de8e3d5: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
0f37346a9ccb: Verifying Checksum
0f37346a9ccb: Download complete
408fa26e5246: Verifying Checksum
408fa26e5246: Download complete
abd5ecb90bdb: Verifying Checksum
abd5ecb90bdb: Download complete
b9b2a4deef0d: Verifying Checksum
b9b2a4deef0d: Download complete
a765421f304f: Verifying Checksum
a765421f304f: Download complete
049386d3400e: Verifying Checksum
049386d3400e: Download complete
c72b37197e1f: Verifying Checksum
c72b37197e1f: Download complete
da3f3feedbc9: Verifying Checksum
da3f3feedbc9: Download complete
b523f5dfe651: Verifying Checksum
b523f5dfe651: Download complete
4f9bec3428d5: Verifying Checksum
4f9bec3428d5: Download complete
8a016a7b87b7: Verifying Checksum
8a016a7b87b7: Download complete
1fbad9fb68da: Verifying Checksum
1fbad9fb68da: Download complete
b45ea21c8e4b: Verifying Checksum
b45ea21c8e4b: Download complete
756895a86a0b: Pull complete
1a06c92bb812: Pull complete
3c8248524df4: Verifying Checksum
3c8248524df4: Download complete
1731e0f7b593: Verifying Checksum
1731e0f7b593: Download complete
5d10a06222ab: Verifying Checksum
5d10a06222ab: Download complete
388671f5f76e: Verifying Checksum
388671f5f76e: Download complete
d9ac3c8b505d: Verifying Checksum
d9ac3c8b505d: Download complete
401bae281146: Verifying Checksum
401bae281146: Download complete
bfb12a31092d: Verifying Checksum
bfb12a31092d: Download complete
f5c1e4872369: Verifying Checksum
f5c1e4872369: Download complete
fab68fbe84ee: Verifying Checksum
fab68fbe84ee: Download complete
3c8248524df4: Pull complete
937b15f87b35: Download complete
6788009aba2e: Verifying Checksum
6788009aba2e: Download complete
60d3c2e43dde: Verifying Checksum
60d3c2e43dde: Download complete
69e0b9988875: Pull complete
86e3068c9b9c: Pull complete
8c27b312abe2: Pull complete
19ce459c9d88: Verifying Checksum
19ce459c9d88: Download complete
daf2913223bd: Pull complete
8c34bc9ec7ad: Pull complete
cf593a3cf665: Pull complete
34b57fe326ab: Pull complete
ba2fd5c779ba: Pull complete
a485987ec570: Pull complete
9d309df9529a: Pull complete
0536f64225da: Pull complete
ce9e29f4d188: Pull complete
a93d42988756: Pull complete
28157b6d8c2f: Pull complete
41973de8e3d5: Pull complete
4f4fb700ef54: Pull complete
0f37346a9ccb: Pull complete
408fa26e5246: Pull complete
abd5ecb90bdb: Pull complete
b9b2a4deef0d: Pull complete
a765421f304f: Pull complete
049386d3400e: Pull complete
c72b37197e1f: Pull complete
da3f3feedbc9: Pull complete
b523f5dfe651: Pull complete
4f9bec3428d5: Pull complete
8a016a7b87b7: Pull complete
1fbad9fb68da: Pull complete
fab68fbe84ee: Pull complete
b45ea21c8e4b: Pull complete
f5c1e4872369: Pull complete
1731e0f7b593: Pull complete
5d10a06222ab: Pull complete
388671f5f76e: Pull complete
d9ac3c8b505d: Pull complete
401bae281146: Pull complete
bfb12a31092d: Pull complete
19ce459c9d88: Pull complete
937b15f87b35: Pull complete
6788009aba2e: Pull complete
60d3c2e43dde: Pull complete
Digest: sha256:4796b9387e68ccd22ef2dfb5750484e21c050534958740ab71136cd4679b1c6f
Status: Downloaded newer image for ocaml/opam@sha256:4796b9387e68ccd22ef2dfb5750484e21c050534958740ab71136cd4679b1c6f
2026-03-07 19:20.28 ---> using "76385a03db456504a6e37d524d79245d3754a26beb363f819833504c982fb276" 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-07 19:20.28 ---> using "7824c59bf72a18b98e2cb7e0da30256272bda6b3d635d1055a8e06c4062534b4" 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-07 19:20.28 ---> using "d70979db169908f523885adb8a5f1ea7b718a01ca1bce3fb7030a5b9595e2d25" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# 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       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-07 19:20.28 ---> using "dcc729a6cdd9dcb3d4af08c76d70a3c70f086f2a5322fe8ee8317b807700a1e4" 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-07 19:20.28 ---> using "696169e6abebabe1d9abc62cfdbc71d8e69478283feab58f9dede398511b7bfc" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-07 19:20.34 ---> using "ceba0f03cec0c1263641ab2b0103fc52169d164a0a8c8af85f812113531773c0" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-07 19:20.34 ---> using "d919436ddb9de10a27b0bfc677df62158c12451437f19867a301ccacf2128d03" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [939 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1523 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [608 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [972 kB]
- Fetched 4420 kB in 2s (2021 kB/s)
- Reading package lists...
- 
2026-03-07 19:20.34 ---> using "e161571000e7e90a02ea8090045aa1318a2af5f3c4f06f4153b210fbd2331ded" 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-07 19:20.34 ---> using "0732478d66bc84aef787598971e54049c03ea0b31f197bc2a8b1ceaa2adcfc65" 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 \"\\\"ubuntu-24.04\\\"\"; 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
  * Missing dependency:
    - dune-ai-context -> str
    unknown package

No solution found, exiting
"/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 "\"ubuntu-24.04\""; 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 20
2026-03-07 19:21.43: Job failed: Failed: Build failed
2026-03-07 19:21.43: Log analysis:
2026-03-07 19:21.43: >>> 
No solution found, exiting
 (score = 100)
2026-03-07 19:21.43: [SKIP] Package not available