(not at the head of any monitored branch or PR)
2025-12-09 20:53.37: New job: test camlid.0.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29053/head (4d7c15ee6436ca8af78188950b42314abeff562c)
                              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/29053/head" && git reset --hard 4d7c15ee
git fetch origin master
git merge --no-edit d684c896eb6f7e6030d6ee65338d9db22a612f01
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:46761f0894db464f46819c301417cc3a81e45b978c93686138a575f96a57a08d
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 camlid.0.1 0.1
RUN opam reinstall camlid.0.1; \
    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" != 'camlid.0.1' && 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 camlid.0.1) || true
RUN opam reinstall --with-test --verbose camlid.0.1; \
    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" != 'camlid.0.1' && 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 .

2025-12-09 20:53.37: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:46761f0894db464f46819c301417cc3a81e45b978c93686138a575f96a57a08d-camlid.0.1-4d7c15ee6436ca8af78188950b42314abeff562c"
2025-12-09 20:53.37: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:46761f0894db464f46819c301417cc3a81e45b978c93686138a575f96a57a08d)
 (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 camlid.0.1 0.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall camlid.0.1;\
             \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\" != 'camlid.0.1' && 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 camlid.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose camlid.0.1;\
             \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\" != 'camlid.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-09 20:53.37: Waiting for resource in pool OCluster
2025-12-09 20:53.38: Waiting for worker…
2025-12-09 21:21.30: Got resource from pool OCluster
Building on riscv-bm-02.sw.ci.dev
All commits already cached
Updating files:  10% (1912/18999)
Updating files:  11% (2090/18999)
Updating files:  12% (2280/18999)
Updating files:  13% (2470/18999)
Updating files:  14% (2660/18999)
Updating files:  15% (2850/18999)
Updating files:  16% (3040/18999)
Updating files:  17% (3230/18999)
Updating files:  18% (3420/18999)
Updating files:  19% (3610/18999)
Updating files:  20% (3800/18999)
Updating files:  21% (3990/18999)
Updating files:  22% (4180/18999)
Updating files:  22% (4280/18999)
Updating files:  23% (4370/18999)
Updating files:  24% (4560/18999)
Updating files:  25% (4750/18999)
Updating files:  26% (4940/18999)
Updating files:  27% (5130/18999)
Updating files:  28% (5320/18999)
Updating files:  29% (5510/18999)
Updating files:  30% (5700/18999)
Updating files:  31% (5890/18999)
Updating files:  32% (6080/18999)
Updating files:  33% (6270/18999)
Updating files:  34% (6460/18999)
Updating files:  35% (6650/18999)
Updating files:  36% (6840/18999)
Updating files:  36% (6901/18999)
Updating files:  37% (7030/18999)
Updating files:  38% (7220/18999)
Updating files:  39% (7410/18999)
Updating files:  40% (7600/18999)
Updating files:  41% (7790/18999)
Updating files:  42% (7980/18999)
Updating files:  43% (8170/18999)
Updating files:  44% (8360/18999)
Updating files:  45% (8550/18999)
Updating files:  46% (8740/18999)
Updating files:  47% (8930/18999)
Updating files:  48% (9120/18999)
Updating files:  48% (9247/18999)
Updating files:  49% (9310/18999)
Updating files:  50% (9500/18999)
Updating files:  51% (9690/18999)
Updating files:  52% (9880/18999)
Updating files:  53% (10070/18999)
Updating files:  54% (10260/18999)
Updating files:  55% (10450/18999)
Updating files:  56% (10640/18999)
Updating files:  57% (10830/18999)
Updating files:  58% (11020/18999)
Updating files:  59% (11210/18999)
Updating files:  60% (11400/18999)
Updating files:  60% (11516/18999)
Updating files:  61% (11590/18999)
Updating files:  62% (11780/18999)
Updating files:  63% (11970/18999)
Updating files:  64% (12160/18999)
Updating files:  65% (12350/18999)
Updating files:  66% (12540/18999)
Updating files:  67% (12730/18999)
Updating files:  68% (12920/18999)
Updating files:  69% (13110/18999)
Updating files:  70% (13300/18999)
Updating files:  71% (13490/18999)
Updating files:  72% (13680/18999)
Updating files:  72% (13774/18999)
Updating files:  73% (13870/18999)
Updating files:  74% (14060/18999)
Updating files:  75% (14250/18999)
Updating files:  76% (14440/18999)
Updating files:  77% (14630/18999)
Updating files:  78% (14820/18999)
Updating files:  79% (15010/18999)
Updating files:  80% (15200/18999)
Updating files:  81% (15390/18999)
Updating files:  82% (15580/18999)
Updating files:  83% (15770/18999)
Updating files:  84% (15960/18999)
Updating files:  85% (16150/18999)
Updating files:  85% (16199/18999)
Updating files:  86% (16340/18999)
Updating files:  87% (16530/18999)
Updating files:  88% (16720/18999)
Updating files:  89% (16910/18999)
Updating files:  90% (17100/18999)
Updating files:  91% (17290/18999)
Updating files:  92% (17480/18999)
Updating files:  93% (17670/18999)
Updating files:  94% (17860/18999)
Updating files:  95% (18050/18999)
Updating files:  96% (18240/18999)
Updating files:  97% (18430/18999)
Updating files:  97% (18519/18999)
Updating files:  98% (18620/18999)
Updating files:  99% (18810/18999)
Updating files: 100% (18999/18999)
Updating files: 100% (18999/18999), done.
HEAD is now at d684c896eb Merge pull request #29052 from balat/maintenance
Updating d684c896eb..4d7c15ee64
Fast-forward
 packages/camlid/camlid.0.1/opam | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 packages/camlid/camlid.0.1/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:46761f0894db464f46819c301417cc3a81e45b978c93686138a575f96a57a08d)
2025-12-09 21:21.42 ---> using "28b9f8c7deabd8f513c02139ec0b2dcfa41b67254f3688f494dd43e452cbcac7" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-09 21:21.42 ---> using "8931ec3216afc8c65ba19a16af8a02b9fd31b5df718235c295e4f3b091b4650a" 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
2025-12-09 21:21.42 ---> using "aec64ed4f82497f3eefd6f9f9a61f755b86931d94a29181e919243900b8915ab" 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
2025-12-09 21:21.42 ---> using "d024a8efaa380edaee3441a569d4260bae5c49f88ff92ea9a5e0bcc06d738982" 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/"))
2025-12-09 21:21.42 ---> using "c8808c73196a2ff567da9c76a02a384db5fd6f7bbeb637728fb4045bb715fbf2" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-09 21:21.48 ---> using "949ae9e7332eb4f96bbc6ee27c28e3c558ee719e59ef40cf2a9a941af288dd64" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-09 21:21.48 ---> using "f973b83f4ae33e032a7b4cc87da0d66659254289f2be792d1f6e4eaefc867c09" 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 [892 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1461 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [920 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [568 kB]
- Fetched 4220 kB in 2s (1761 kB/s)
- Reading package lists...
- 
2025-12-09 21:21.48 ---> using "ef5d99fe36cb36fb3330096697bbb4fd0a9fff6be77456370b9ef9436a04ebd6" from cache

/home/opam: (run (shell "opam pin add -k version -yn camlid.0.1 0.1"))
camlid is now pinned to version 0.1
2025-12-09 21:21.48 ---> using "e9f35d389175f29d170fdd4b6e01ae3e588fac8ab910361f51b6fae1eb1d5045" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall camlid.0.1;\
                        \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\" != 'camlid.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
camlid.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install camlid     0.1 (pinned)
  - install dune       3.20.2       [required by camlid]
  - install fmt        0.11.0       [required by camlid]
  - install ocamlbuild 0.16.1       [required by fmt]
  - install ocamlfind  1.9.8        [required by fmt]
  - install topkg      1.1.1        [required by fmt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlid.0.1  (https://github.com/bobot/camlid/releases/download/0.1/camlid-0.1.tbz)
-> retrieved dune.3.20.2  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed dune.3.20.2
-> installed camlid.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 21:21.48 ---> using "ce79ee95bc98a3d875d03c2dff1c97a118f389286e02a6932f207fb1a7b1fbea" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   camlid.0.1
-> installed camlid.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 21:22.26 ---> saved as "c0f58c02aaa4951c5a27897684f288422041b254ad1301cfdb1a07a538c0c644"

/home/opam: (run (shell  "opam reinstall --with-test --verbose camlid.0.1;\
                        \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\" != 'camlid.0.1' && 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 camlid 0.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [camlid: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "camlid" "-j" "3" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/camlid.0.1)
-> compiled  camlid.0.1
-> removed   camlid.0.1
-> installed camlid.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 21:23.03 ---> saved as "da66ec94653aa60e5213f64c0ebe951607be2240697fca8daecff2807ddc4a96"
Job succeeded
2025-12-09 21:23.38: Job succeeded