(for PR #29893)

2026-05-12 12:13.34: New job: test ez_api.3.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29893/head (f8b665bc7f31903aeca03d04a5c0996397f57443)
                              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/29893/head" && git reset --hard f8b665bc
git fetch origin master
git merge --no-edit a4f153d7481c469b20f3b1064338d6a21abcb832
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c
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 ez_api.3.0.0 3.0.0
RUN opam reinstall ez_api.3.0.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" != 'ez_api.3.0.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 ez_api.3.0.0) || true
RUN opam reinstall --with-test --verbose ez_api.3.0.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" != 'ez_api.3.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-05-12 12:13.34: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c-ez_api.3.0.0-f8b665bc7f31903aeca03d04a5c0996397f57443"
2026-05-12 12:13.34: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c)
 (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 ez_api.3.0.0 3.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ez_api.3.0.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\" != 'ez_api.3.0.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 ez_api.3.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ez_api.3.0.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\" != 'ez_api.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-05-12 12:13.34: Waiting for resource in pool OCluster
2026-05-12 12:21.08: Waiting for worker…
2026-05-12 16:54.46: Got resource from pool OCluster
Building on riscv-bm-03.sw.ci.dev
All commits already cached
Updating files:  15% (2685/17858)
Updating files:  16% (2858/17858)
Updating files:  17% (3036/17858)
Updating files:  18% (3215/17858)
Updating files:  19% (3394/17858)
Updating files:  20% (3572/17858)
Updating files:  21% (3751/17858)
Updating files:  22% (3929/17858)
Updating files:  23% (4108/17858)
Updating files:  24% (4286/17858)
Updating files:  25% (4465/17858)
Updating files:  26% (4644/17858)
Updating files:  27% (4822/17858)
Updating files:  28% (5001/17858)
Updating files:  28% (5143/17858)
Updating files:  29% (5179/17858)
Updating files:  30% (5358/17858)
Updating files:  31% (5536/17858)
Updating files:  32% (5715/17858)
Updating files:  33% (5894/17858)
Updating files:  34% (6072/17858)
Updating files:  35% (6251/17858)
Updating files:  36% (6429/17858)
Updating files:  37% (6608/17858)
Updating files:  38% (6787/17858)
Updating files:  39% (6965/17858)
Updating files:  40% (7144/17858)
Updating files:  41% (7322/17858)
Updating files:  41% (7424/17858)
Updating files:  42% (7501/17858)
Updating files:  43% (7679/17858)
Updating files:  44% (7858/17858)
Updating files:  45% (8037/17858)
Updating files:  46% (8215/17858)
Updating files:  47% (8394/17858)
Updating files:  48% (8572/17858)
Updating files:  49% (8751/17858)
Updating files:  50% (8929/17858)
Updating files:  51% (9108/17858)
Updating files:  52% (9287/17858)
Updating files:  53% (9465/17858)
Updating files:  54% (9644/17858)
Updating files:  54% (9691/17858)
Updating files:  55% (9822/17858)
Updating files:  56% (10001/17858)
Updating files:  57% (10180/17858)
Updating files:  58% (10358/17858)
Updating files:  59% (10537/17858)
Updating files:  60% (10715/17858)
Updating files:  61% (10894/17858)
Updating files:  62% (11072/17858)
Updating files:  63% (11251/17858)
Updating files:  64% (11430/17858)
Updating files:  65% (11608/17858)
Updating files:  66% (11787/17858)
Updating files:  67% (11965/17858)
Updating files:  67% (11998/17858)
Updating files:  68% (12144/17858)
Updating files:  69% (12323/17858)
Updating files:  70% (12501/17858)
Updating files:  71% (12680/17858)
Updating files:  72% (12858/17858)
Updating files:  73% (13037/17858)
Updating files:  74% (13215/17858)
Updating files:  75% (13394/17858)
Updating files:  76% (13573/17858)
Updating files:  77% (13751/17858)
Updating files:  78% (13930/17858)
Updating files:  78% (14071/17858)
Updating files:  79% (14108/17858)
Updating files:  80% (14287/17858)
Updating files:  81% (14465/17858)
Updating files:  82% (14644/17858)
Updating files:  83% (14823/17858)
Updating files:  84% (15001/17858)
Updating files:  85% (15180/17858)
Updating files:  86% (15358/17858)
Updating files:  87% (15537/17858)
Updating files:  88% (15716/17858)
Updating files:  89% (15894/17858)
Updating files:  90% (16073/17858)
Updating files:  91% (16251/17858)
Updating files:  91% (16389/17858)
Updating files:  92% (16430/17858)
Updating files:  93% (16608/17858)
Updating files:  94% (16787/17858)
Updating files:  95% (16966/17858)
Updating files:  96% (17144/17858)
Updating files:  97% (17323/17858)
Updating files:  98% (17501/17858)
Updating files:  99% (17680/17858)
Updating files: 100% (17858/17858)
Updating files: 100% (17858/17858), done.
HEAD is now at a4f153d748 Merge pull request #29889 from mtelvers/opam-publish-ocaml-version.4.1.1
Updating a4f153d748..f8b665bc7f
Fast-forward
 packages/ez_api/ez_api.3.0.0/opam | 85 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)
 create mode 100644 packages/ez_api/ez_api.3.0.0/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c' locally
docker.io/ocaml/opam@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c: Pulling from ocaml/opam
a7f0c7437445: Already exists
84697a2c23cb: Pulling fs layer
930e8a9c15f0: Pulling fs layer
3dcc2d79914b: Pulling fs layer
79c9fa26c6aa: Pulling fs layer
7f9198737428: Pulling fs layer
8e0b6cf6b9c5: Pulling fs layer
518ccde464f9: Pulling fs layer
482f9c31bdbd: Pulling fs layer
3243f39b4437: Pulling fs layer
98d5f8386409: Pulling fs layer
6d53d1591dbd: Pulling fs layer
5be66500543e: Pulling fs layer
4832cc3212da: Pulling fs layer
8e62a4a29f85: Pulling fs layer
67eee6d89132: Pulling fs layer
5203f682b64f: Pulling fs layer
1b73d27de47c: Pulling fs layer
c6cb7b970a0d: Pulling fs layer
c4a23a78a865: Pulling fs layer
4f4fb700ef54: Pulling fs layer
7e7a7e6d074a: Pulling fs layer
e97c56a66ef0: Pulling fs layer
6d0229f49103: Pulling fs layer
9faff2b58d31: Pulling fs layer
bfd71b61cf27: Pulling fs layer
515aeab1931a: Pulling fs layer
ff21d3c48ebf: Pulling fs layer
e6ae0bc244ae: Pulling fs layer
e0e3997f7113: Pulling fs layer
d6fc5c06273a: Pulling fs layer
7f45ea50b3f4: Pulling fs layer
73743a9d67c4: Pulling fs layer
8906b3ef12ca: Pulling fs layer
d8f60874f4ab: Pulling fs layer
02b78003826e: Pulling fs layer
48ebf736b5ff: Pulling fs layer
0e4b074959b3: Pulling fs layer
39628e2f1962: Pulling fs layer
ea48cb1bc91e: Pulling fs layer
98a407689160: Pulling fs layer
947e2ca7d9fa: Pulling fs layer
2bf7f6b56b2a: Pulling fs layer
abe1d076c45f: Pulling fs layer
054fab9b78b3: Pulling fs layer
c4a23a78a865: Waiting
4f4fb700ef54: Waiting
7e7a7e6d074a: Waiting
e97c56a66ef0: Waiting
6d0229f49103: Waiting
9faff2b58d31: Waiting
bfd71b61cf27: Waiting
515aeab1931a: Waiting
ff21d3c48ebf: Waiting
e6ae0bc244ae: Waiting
e0e3997f7113: Waiting
79c9fa26c6aa: Waiting
d6fc5c06273a: Waiting
7f9198737428: Waiting
7f45ea50b3f4: Waiting
8e0b6cf6b9c5: Waiting
73743a9d67c4: Waiting
518ccde464f9: Waiting
8906b3ef12ca: Waiting
482f9c31bdbd: Waiting
d8f60874f4ab: Waiting
3243f39b4437: Waiting
98d5f8386409: Waiting
6d53d1591dbd: Waiting
02b78003826e: Waiting
5be66500543e: Waiting
48ebf736b5ff: Waiting
4832cc3212da: Waiting
0e4b074959b3: Waiting
39628e2f1962: Waiting
1b73d27de47c: Waiting
8e62a4a29f85: Waiting
67eee6d89132: Waiting
c6cb7b970a0d: Waiting
ea48cb1bc91e: Waiting
947e2ca7d9fa: Waiting
98a407689160: Waiting
2bf7f6b56b2a: Waiting
054fab9b78b3: Waiting
abe1d076c45f: Waiting
5203f682b64f: Waiting
930e8a9c15f0: Verifying Checksum
930e8a9c15f0: Download complete
84697a2c23cb: Verifying Checksum
84697a2c23cb: Download complete
84697a2c23cb: Pull complete
930e8a9c15f0: Pull complete
79c9fa26c6aa: Verifying Checksum
79c9fa26c6aa: Download complete
8e0b6cf6b9c5: Verifying Checksum
8e0b6cf6b9c5: Download complete
3dcc2d79914b: Verifying Checksum
3dcc2d79914b: Download complete
518ccde464f9: Verifying Checksum
518ccde464f9: Download complete
482f9c31bdbd: Verifying Checksum
482f9c31bdbd: Download complete
3243f39b4437: Download complete
3dcc2d79914b: Pull complete
79c9fa26c6aa: Pull complete
6d53d1591dbd: Verifying Checksum
6d53d1591dbd: Download complete
98d5f8386409: Verifying Checksum
98d5f8386409: Download complete
7f9198737428: Download complete
8e62a4a29f85: Verifying Checksum
8e62a4a29f85: Download complete
5be66500543e: Verifying Checksum
5be66500543e: Download complete
4832cc3212da: Verifying Checksum
4832cc3212da: Download complete
1b73d27de47c: Verifying Checksum
1b73d27de47c: Download complete
5203f682b64f: Verifying Checksum
5203f682b64f: Download complete
c4a23a78a865: Verifying Checksum
c4a23a78a865: Download complete
c6cb7b970a0d: Verifying Checksum
c6cb7b970a0d: Download complete
67eee6d89132: Verifying Checksum
67eee6d89132: Download complete
e97c56a66ef0: Download complete
7e7a7e6d074a: Verifying Checksum
7e7a7e6d074a: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
9faff2b58d31: Download complete
6d0229f49103: Verifying Checksum
6d0229f49103: Download complete
bfd71b61cf27: Verifying Checksum
bfd71b61cf27: Download complete
515aeab1931a: Verifying Checksum
515aeab1931a: Download complete
ff21d3c48ebf: Verifying Checksum
ff21d3c48ebf: Download complete
e6ae0bc244ae: Verifying Checksum
e6ae0bc244ae: Download complete
d6fc5c06273a: Verifying Checksum
d6fc5c06273a: Download complete
e0e3997f7113: Download complete
7f45ea50b3f4: Verifying Checksum
7f45ea50b3f4: Download complete
73743a9d67c4: Verifying Checksum
73743a9d67c4: Download complete
d8f60874f4ab: Verifying Checksum
d8f60874f4ab: Download complete
48ebf736b5ff: Verifying Checksum
48ebf736b5ff: Download complete
0e4b074959b3: Verifying Checksum
0e4b074959b3: Download complete
39628e2f1962: Verifying Checksum
39628e2f1962: Download complete
ea48cb1bc91e: Download complete
98a407689160: Verifying Checksum
98a407689160: Download complete
02b78003826e: Verifying Checksum
02b78003826e: Download complete
2bf7f6b56b2a: Verifying Checksum
2bf7f6b56b2a: Download complete
abe1d076c45f: Verifying Checksum
abe1d076c45f: Download complete
054fab9b78b3: Verifying Checksum
054fab9b78b3: Download complete
7f9198737428: Pull complete
8e0b6cf6b9c5: Pull complete
518ccde464f9: Pull complete
8906b3ef12ca: Verifying Checksum
8906b3ef12ca: Download complete
482f9c31bdbd: Pull complete
947e2ca7d9fa: Verifying Checksum
947e2ca7d9fa: Download complete
3243f39b4437: Pull complete
98d5f8386409: Pull complete
6d53d1591dbd: Pull complete
5be66500543e: Pull complete
4832cc3212da: Pull complete
8e62a4a29f85: Pull complete
67eee6d89132: Pull complete
5203f682b64f: Pull complete
1b73d27de47c: Pull complete
c6cb7b970a0d: Pull complete
c4a23a78a865: Pull complete
4f4fb700ef54: Pull complete
7e7a7e6d074a: Pull complete
e97c56a66ef0: Pull complete
6d0229f49103: Pull complete
9faff2b58d31: Pull complete
bfd71b61cf27: Pull complete
515aeab1931a: Pull complete
ff21d3c48ebf: Pull complete
e6ae0bc244ae: Pull complete
e0e3997f7113: Pull complete
d6fc5c06273a: Pull complete
7f45ea50b3f4: Pull complete
73743a9d67c4: Pull complete
8906b3ef12ca: Pull complete
d8f60874f4ab: Pull complete
02b78003826e: Pull complete
48ebf736b5ff: Pull complete
0e4b074959b3: Pull complete
39628e2f1962: Pull complete
ea48cb1bc91e: Pull complete
98a407689160: Pull complete
947e2ca7d9fa: Pull complete
2bf7f6b56b2a: Pull complete
abe1d076c45f: Pull complete
054fab9b78b3: Pull complete
Digest: sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c
Status: Downloaded newer image for ocaml/opam@sha256:9c17239897ac5d43b6c4fe123fee38324055b9b8e728853efc9934e47c78121c
2026-05-12 16:54.57 ---> using "a1656590e14c2bbb99fe4e1542a3da93ebad2c61b82ad4f5c6c4160a00d2bddc" 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-05-12 16:54.57 ---> using "4806f51d6f3bc2de9a852ee769a60dd035fc363f7fc4d1b69a79ef932ac93a70" 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.1 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 1 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=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-05-12 16:54.57 ---> using "439dd86dec9fb362937d89ecd37491a6b41d2c1253aee3730a3983fad21710a6" 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.1
# 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.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, 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.1
2026-05-12 16:54.57 ---> using "ecccf7bb651d479573ac3620ad3e4cc37024872068ff91cb1ae564765b117df5" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-05-12 16:54.57 ---> using "5f4873b758d7510d073dee429b7f7d65809f0ec20e5be63a2abc8d4d24c6041f" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-05-12 16:55.02 ---> using "ad99256c0ac2e7dc468c5102d07d0f277a9643921d394468818f845807d2b131" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-12 16:55.02 ---> using "e8d1dfd03bc6c158315e365a7776b9e1c2a1ef5f23dce818cf7572f1522e3843" 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/universe riscv64 Packages [1601 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [964 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-backports/universe riscv64 Packages [29.7 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [1125 kB]
- Get:9 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [649 kB]
- Fetched 4748 kB in 2s (2118 kB/s)
- Reading package lists...
- 
2026-05-12 16:55.02 ---> using "36cfd5d34949d701452cd5ea5be8456bfaf61c458e00ac5879168ce14f735f0e" from cache

/home/opam: (run (shell "opam pin add -k version -yn ez_api.3.0.0 3.0.0"))
ez_api is now pinned to version 3.0.0
2026-05-12 16:55.02 ---> using "bfeca79644fba30efe713579477b396209632bdaa1dfbf1c7a829bba8c29f2f3" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ez_api.3.0.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\" != 'ez_api.3.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ez_api.3.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 21 packages
  - install angstrom           0.16.1         [required by uri]
  - install bigstringaf        0.10.0         [required by angstrom]
  - install csexp              1.5.2          [required by dune-configurator]
  - install cstruct            6.2.0          [required by hex]
  - install dune               3.23.0         [required by ez_api]
  - install dune-configurator  3.23.0         [required by bigstringaf]
  - install ez_api             3.0.0 (pinned)
  - install ezjsonm            1.3.0          [required by ez_api]
  - install fmt                0.11.0         [required by cstruct]
  - install hex                1.5.0          [required by ezjsonm, json-data-encoding]
  - install json-data-encoding 1.1.1          [required by ez_api]
  - install jsonm              1.0.2          [required by ezjsonm]
  - install ocaml-syntax-shims 1.0.0          [required by angstrom]
  - install ocamlbuild         0.16.1         [required by uuidm]
  - install ocamlfind          1.9.8          [required by uuidm]
  - install sexplib0           v0.17.0        [required by ezjsonm]
  - install stringext          1.6.0          [required by uri]
  - install topkg              1.1.1          [required by uuidm]
  - install uri                4.4.0          [required by json-data-encoding]
  - install uuidm              0.9.10         [required by ez_api]
  - install uutf               1.0.4          [required by ezjsonm]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved dune.3.23.0, dune-configurator.3.23.0  (cached)
-> retrieved ez_api.3.0.0  (https://github.com/OCamlPro/ez_api/archive/refs/tags/3.0.0.tar.gz)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved json-data-encoding.1.1.1  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved uuidm.0.9.10  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uuidm.0.9.10
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed jsonm.1.0.2
-> installed dune.3.23.0
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed ocaml-syntax-shims.1.0.0
-> installed sexplib0.v0.17.0
-> installed hex.1.5.0
-> installed stringext.1.6.0
-> installed ezjsonm.1.3.0
-> installed dune-configurator.3.23.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed uri.4.4.0
-> installed json-data-encoding.1.1.1
-> installed ez_api.3.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-12 16:55.02 ---> using "8334f990e190b273474bbad0f8537b11d27b16330d80a1837c571e88b963b8aa" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ez_api.3.0.0  (https://github.com/OCamlPro/ez_api/archive/refs/tags/3.0.0.tar.gz)
-> removed   ez_api.3.0.0
-> installed ez_api.3.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-12 16:55.39 ---> saved as "b4b4bc52a64b9b719da04b48343956f6b9b6b9e6c32fa9ab4ad3f1380b5ac2ef"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ez_api.3.0.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\" != 'ez_api.3.0.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 ez_api 3.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [ez_api.3.0.0: extract]
-> retrieved ez_api.3.0.0  (cached)
Processing  2/4: [ez_api: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ez_api" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ez_api.3.0.0)
-> compiled  ez_api.3.0.0
-> removed   ez_api.3.0.0
-> installed ez_api.3.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-12 16:56.13 ---> saved as "223286c7ecc230fcc8794c324e415b01d21f3c3be3eb45a561ce47315a27d172"
Job succeeded
2026-05-12 16:56.44: Job succeeded