(for PR #27694)

2025-11-10 16:55.07: New job: test pds.6.55, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27694/head (95c70e7638f27c185540b2efc1bb6fe8f64dcdfa)
                              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/27694/head" && git reset --hard 95c70e76
git fetch origin master
git merge --no-edit b6a264c784afa1e19f7a926fc10d49010ad12be4
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc
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 pds.6.55 6.55
RUN opam reinstall pds.6.55; \
    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" != 'pds.6.55' && 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 pds.6.55) || true
RUN opam reinstall --with-test --verbose pds.6.55; \
    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" != 'pds.6.55' && 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-11-10 16:55.07: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc-pds.6.55-95c70e7638f27c185540b2efc1bb6fe8f64dcdfa"
2025-11-10 16:55.07: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc)
 (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 pds.6.55 6.55"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall pds.6.55;\
             \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\" != 'pds.6.55' && 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 pds.6.55) || true"))
 (run (shell  "opam reinstall --with-test --verbose pds.6.55;\
             \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\" != 'pds.6.55' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-11-10 16:55.07: Waiting for resource in pool OCluster
2025-11-10 20:44.17: Waiting for worker…
2025-11-11 03:45.26: Got resource from pool OCluster
Building on riscv-bm-04.sw.ci.dev
All commits already cached
Updating files:  14% (2700/18706)
Updating files:  15% (2806/18706)
Updating files:  16% (2993/18706)
Updating files:  17% (3181/18706)
Updating files:  18% (3368/18706)
Updating files:  19% (3555/18706)
Updating files:  20% (3742/18706)
Updating files:  21% (3929/18706)
Updating files:  22% (4116/18706)
Updating files:  23% (4303/18706)
Updating files:  24% (4490/18706)
Updating files:  25% (4677/18706)
Updating files:  26% (4864/18706)
Updating files:  26% (5012/18706)
Updating files:  27% (5051/18706)
Updating files:  28% (5238/18706)
Updating files:  29% (5425/18706)
Updating files:  30% (5612/18706)
Updating files:  31% (5799/18706)
Updating files:  32% (5986/18706)
Updating files:  33% (6173/18706)
Updating files:  34% (6361/18706)
Updating files:  35% (6548/18706)
Updating files:  36% (6735/18706)
Updating files:  37% (6922/18706)
Updating files:  38% (7109/18706)
Updating files:  39% (7296/18706)
Updating files:  39% (7335/18706)
Updating files:  40% (7483/18706)
Updating files:  41% (7670/18706)
Updating files:  42% (7857/18706)
Updating files:  43% (8044/18706)
Updating files:  44% (8231/18706)
Updating files:  45% (8418/18706)
Updating files:  46% (8605/18706)
Updating files:  47% (8792/18706)
Updating files:  48% (8979/18706)
Updating files:  49% (9166/18706)
Updating files:  50% (9353/18706)
Updating files:  51% (9541/18706)
Updating files:  51% (9612/18706)
Updating files:  52% (9728/18706)
Updating files:  53% (9915/18706)
Updating files:  54% (10102/18706)
Updating files:  55% (10289/18706)
Updating files:  56% (10476/18706)
Updating files:  57% (10663/18706)
Updating files:  58% (10850/18706)
Updating files:  59% (11037/18706)
Updating files:  60% (11224/18706)
Updating files:  61% (11411/18706)
Updating files:  62% (11598/18706)
Updating files:  63% (11785/18706)
Updating files:  63% (11928/18706)
Updating files:  64% (11972/18706)
Updating files:  65% (12159/18706)
Updating files:  66% (12346/18706)
Updating files:  67% (12534/18706)
Updating files:  68% (12721/18706)
Updating files:  69% (12908/18706)
Updating files:  70% (13095/18706)
Updating files:  71% (13282/18706)
Updating files:  72% (13469/18706)
Updating files:  73% (13656/18706)
Updating files:  74% (13843/18706)
Updating files:  75% (14030/18706)
Updating files:  75% (14131/18706)
Updating files:  76% (14217/18706)
Updating files:  77% (14404/18706)
Updating files:  78% (14591/18706)
Updating files:  79% (14778/18706)
Updating files:  80% (14965/18706)
Updating files:  81% (15152/18706)
Updating files:  82% (15339/18706)
Updating files:  83% (15526/18706)
Updating files:  84% (15714/18706)
Updating files:  85% (15901/18706)
Updating files:  86% (16088/18706)
Updating files:  87% (16275/18706)
Updating files:  87% (16406/18706)
Updating files:  88% (16462/18706)
Updating files:  89% (16649/18706)
Updating files:  90% (16836/18706)
Updating files:  91% (17023/18706)
Updating files:  92% (17210/18706)
Updating files:  93% (17397/18706)
Updating files:  94% (17584/18706)
Updating files:  95% (17771/18706)
Updating files:  96% (17958/18706)
Updating files:  97% (18145/18706)
Updating files:  98% (18332/18706)
Updating files:  99% (18519/18706)
Updating files: 100% (18706/18706)
Updating files: 100% (18706/18706), done.
HEAD is now at b6a264c784 Merge pull request #28853 from AltGr/catala100
Merge made by the 'ort' strategy.
 packages/pds/pds.6.55/opam | 53 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)
 create mode 100644 packages/pds/pds.6.55/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc' locally
docker.io/ocaml/opam@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc: Pulling from ocaml/opam
ff47a256ba51: Already exists
07f865b4eced: Already exists
e5a6a81924d1: Already exists
d2993474f6c4: Already exists
be37240cea2e: Already exists
4c7a4c780d69: Already exists
949ffaae844f: Already exists
65007da87cd6: Already exists
376b4433eeaf: Already exists
e4c73e6a1fc1: Already exists
0f0889c64018: Already exists
436990646fd8: Already exists
cb9bd38ee801: Already exists
448d2014f999: Already exists
ea72d1803671: Already exists
3f795e13b111: Already exists
3f795e13b111: Already exists
2137184b4e70: Already exists
ab9789196f84: Already exists
dbbe96a6bdee: Already exists
fb6f4e997127: Already exists
4f4fb700ef54: Already exists
78488e87ab1d: Already exists
1a2baa16ab41: Already exists
52441bed4375: Already exists
58cb70dff4c6: Already exists
43e3d939c3f3: Already exists
5ce97af1f60e: Already exists
8ffc91fd116a: Already exists
ff8c038c8028: Already exists
d57176bef7d7: Already exists
89b975f1d5f3: Already exists
921cd587cd96: Already exists
ae8ab1c95bad: Already exists
1fe2a75aa09d: Already exists
831d70711341: Already exists
07812c06f386: Already exists
859e3a9917cd: Already exists
25a638362d2e: Already exists
e81b913ad5a4: Already exists
ea3380bc20f4: Pulling fs layer
def4aa273eac: Pulling fs layer
5c0eef42092a: Pulling fs layer
a50ec4935ba1: Pulling fs layer
1b09137f6468: Pulling fs layer
5d58e43788c9: Pulling fs layer
cc643729de8f: Pulling fs layer
a50ec4935ba1: Waiting
1b09137f6468: Waiting
5d58e43788c9: Waiting
cc643729de8f: Waiting
def4aa273eac: Verifying Checksum
def4aa273eac: Download complete
ea3380bc20f4: Verifying Checksum
ea3380bc20f4: Download complete
ea3380bc20f4: Pull complete
def4aa273eac: Pull complete
5c0eef42092a: Download complete
1b09137f6468: Verifying Checksum
1b09137f6468: Download complete
5d58e43788c9: Verifying Checksum
5d58e43788c9: Download complete
5c0eef42092a: Pull complete
cc643729de8f: Download complete
a50ec4935ba1: Verifying Checksum
a50ec4935ba1: Download complete
a50ec4935ba1: Pull complete
1b09137f6468: Pull complete
5d58e43788c9: Pull complete
cc643729de8f: Pull complete
Digest: sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc
Status: Downloaded newer image for ocaml/opam@sha256:b698ec12d8ec45f194f9e3281243bda9c038a7a770b0b8b00369f2b6f223f4dc
2025-11-11 03:45.38 ---> using "caa6674a25a88389569217fd94abf6dc3d8a42ad0c02221796f91bef8e6362c2" 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-11-11 03:45.38 ---> using "fd07174c808e586de402af712771f0f241b080e2367ef9f7681d75cf818919c2" 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-11-11 03:45.38 ---> using "514df06474b49af68e096e6a7c5db077ce91809c08e70c13f33e27f18784df6b" 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~alpha1
# 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-11-11 03:45.38 ---> using "2c30bc4cf24536cb906aa854b81fc82059550ba6613f56620345538a58c14aa3" 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-11-11 03:45.38 ---> using "76c050f90e9dc44fe68828988f11d21f4c996e2a34a4e626a28cb52e589e4c43" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-11 03:45.44 ---> using "95d9d1856d4ab2db03ae4f1dcc08de0d9f3a474bbc6abcccbeb8908bd1df0f5b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-11 03:45.44 ---> using "e30ec6aa24875b7787889582f4339208ba9a46ffbde697a8888083e9469171d7" 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]
- Fetched 378 kB in 2s (232 kB/s)
- Reading package lists...
- 
2025-11-11 03:45.44 ---> using "9b64e364435b2022ad951707d9840346d0a1530683423f24b7f286d269e3ec0d" from cache

/home/opam: (run (shell "opam pin add -k version -yn pds.6.55 6.55"))
pds is now pinned to version 6.55
2025-11-11 03:45.44 ---> using "28c70ba5dcb6e0b55b546077363f98b26c71a45c52abb6c44a2151dd33f81e4a" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall pds.6.55;\
                        \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\" != 'pds.6.55' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
pds.6.55 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 35 packages
  - install base-bytes          base          [required by process]
  - install cmdliner            2.0.0         [required by pds]
  - install conf-pkg-config     4             [required by conf-sqlite3]
  - install conf-sqlite3        1             [required by sqlite3]
  - install containers          3.16          [required by pds]
  - install cppo                1.8.0         [required by ppx_deriving]
  - install crunch              4.0.0         [required by pds]
  - install csexp               1.5.2         [required by dune-configurator]
  - install dune                3.20.2        [required by sqlite3, ppx_deriving, containers, etc.]
  - install dune-configurator   3.20.2        [required by containers, sqlite3]
  - install either              1.0.0         [required by containers]
  - install fmt                 0.11.0        [required by pds]
  - install gen                 1.1           [required by sedlex]
  - install ISO8601             0.2.6         [required by toml]
  - install logs                0.10.0        [required by pds]
  - install menhir              20250912      [required by toml]
  - install menhirCST           20250912      [required by menhir]
  - install menhirLib           20250912      [required by menhir]
  - install menhirSdk           20250912      [required by menhir]
  - install ocaml-compiler-libs v0.17.0       [required by ppxlib]
  - install ocamlbuild          0.16.1        [required by logs, fmt, process]
  - install ocamlfind           1.9.8         [required by pds]
  - install pds                 6.55 (pinned)
  - install ppx_derivers        1.2.1         [required by ppx_deriving]
  - install ppx_deriving        6.1.1         [required by pds]
  - install ppxlib              0.37.0        [required by ppx_deriving, sedlex]
  - install process             0.2.1         [required by pds]
  - install ptime               1.2.0         [required by crunch]
  - install sedlex              3.7           [required by pds]
  - install seq                 base          [required by gen]
  - install sexplib0            v0.17.0       [required by ppxlib]
  - install sqlite3             5.3.1         [required by pds]
  - install stdlib-shims        0.3.0         [required by ppxlib]
  - install toml                7.1.0         [required by pds]
  - install topkg               1.1.1         [required by fmt, logs]

The following system packages will first need to be installed:
    libsqlite3-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libsqlite3-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3:riscv64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16279 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-2build1_riscv64.deb ...
- Unpacking libpkgconf3:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package libsqlite3-dev:riscv64.
- Preparing to unpack .../libsqlite3-dev_3.45.1-1ubuntu2.5_riscv64.deb ...
- Unpacking libsqlite3-dev:riscv64 (3.45.1-1ubuntu2.5) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:riscv64.
- Preparing to unpack .../pkgconf_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:riscv64.
- Preparing to unpack .../pkg-config_1.8.1-2build1_riscv64.deb ...
- Unpacking pkg-config:riscv64 (1.8.1-2build1) ...
- Setting up libpkgconf3:riscv64 (1.8.1-2build1) ...
- Setting up libsqlite3-dev:riscv64 (3.45.1-1ubuntu2.5) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up pkgconf:riscv64 (1.8.1-2build1) ...
- Setting up pkg-config:riscv64 (1.8.1-2build1) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.6) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.0.0  (cached)
-> installed conf-pkg-config.4
-> retrieved containers.3.16  (cached)
-> installed conf-sqlite3.1
-> retrieved cppo.1.8.0  (cached)
-> retrieved crunch.4.0.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved ISO8601.0.2.6  (cached)
-> retrieved logs.0.10.0  (cached)
-> installed cmdliner.2.0.0
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved pds.6.55  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved process.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved sqlite3.5.3.1  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved toml.7.1.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed seq.base
-> installed ocamlbuild.0.16.1
-> installed process.0.2.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed logs.0.10.0
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed cppo.1.8.0
-> installed crunch.4.0.0
-> installed ISO8601.0.2.6
-> installed menhirCST.20250912
-> installed gen.1.1
-> installed dune-configurator.3.20.2
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed ppx_derivers.1.2.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed containers.3.16
-> installed sqlite3.5.3.1
-> installed stdlib-shims.0.3.0
-> installed menhir.20250912
-> installed toml.7.1.0
-> installed ppxlib.0.37.0
-> installed sedlex.3.7
-> installed ppx_deriving.6.1.1
-> installed pds.6.55
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-11 03:45.44 ---> using "7824e6876fe81b41f5a9b24cf2c01faba79e4926e6686057dc47aab23b78f670" from cache

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test pds.6.55) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile pds            6.55 (pinned)
=== install 1 package
  - install   conf-diffutils 2             [required by pds]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-diffutils.2
-> retrieved pds.6.55  (http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
-> removed   pds.6.55
[ERROR] The compilation of pds.6.55 failed at "make -j3 test".

#=== ERROR while compiling pds.6.55 ===========================================#
# context              2.5.0~alpha1 | linux/riscv64 | ocaml-base-compiler.5.4.0 | pinned(http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
# path                 ~/.opam/5.4/.opam-switch/build/pds.6.55
# command              ~/.opam/opam-init/hooks/sandbox.sh build make -j3 test
# exit-code            2
# env-file             ~/.opam/log/pds-7-1851c8.env
# output-file          ~/.opam/log/pds-7-1851c8.out
### output ###
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template \
# -C build/release/pds_template release
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela \
# -C build/release/snabela release
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela'
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds \
# -C build/release/pds release
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
# cd smoke-tests && env MAKE=make ./test
# Testing globals-formatted
# Passed globals-formatted
# Testing simple-formatted
# Passed simple-formatted
# Testing simple-output
# Passed simple-output
# Testing simple-selector-both-formatted
# diff -x 'pds\.db' -r /opam-tmp/tmp.dfhYWTZUXJ/simple-selector-both-formatted/output expected/output
# 1d0
# < src	foo	library	ocaml	hi
# 2a2
# > src	foo	library	ocaml	hi
# Passed simple-selector-both-formatted
# Testing simple-selector-build-formatted
# Passed simple-selector-build-formatted
# Testing simple-selector-default-compile-formatted
# Passed simple-selector-default-compile-formatted
# Testing simple-selector-default-formatted
# Passed simple-selector-default-formatted
# Testing simple-selector-do-not-build-default-formatted
# Passed simple-selector-do-not-build-default-formatted
# Testing simple-selector-do-not-build-formatted
# Passed simple-selector-do-not-build-formatted
# Testing simple-selector-found-compile-formatted
# Passed simple-selector-found-compile-formatted
# Testing simple-selector-found-formatted
# Passed simple-selector-found-formatted
# Testing simple-selector-not-found-formatted
# Passed simple-selector-not-found-formatted
# Testing simple-selector-tests-do-not-build-formatted
# Passed simple-selector-tests-do-not-build-formatted
# Testing simple-selector-tests-formatted
# Passed simple-selector-tests-formatted
# Testing tests
# Passed tests
# make: *** [Makefile:15: smoke-tests] Error 1



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build pds 6.55
+- 
+- The following changes have been performed
| - remove  pds            6.55
| - install conf-diffutils 2
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20251111034547.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2025-11-11 03:46.26 ---> saved as "3a7927bbf23473024fde66b7271a50cad5379fbe9f0a1070656101a503a6a3ff"

/home/opam: (run (shell  "opam reinstall --with-test --verbose pds.6.55;\
                        \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\" != 'pds.6.55' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
pds.6.55 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install pds 6.55 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/3: [pds.6.55: extract]
-> retrieved pds.6.55  (cached)
Processing  2/3: [pds: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j3" (CWD=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55)
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template \
- -C build/release/pds_template release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela \
- -C build/release/snabela release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela'
- ocaml-crunch -m plain ../../../files > ../../../src/pds_template/pds_template.ml
- cd ../../../src/snabela && \
- ocamlfind ocamldep -package sedlex  \
- snabela.ml  snabela_lexer.ml  snabela.mli > /home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela/.d
- cd ../../../src/pds_template && \
- ocamlfind ocamldep   \
-  pds_template.ml  pds_template.ml  > /home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template/.d
- ocamlfind ocamlopt -thread -I +camlp4  -bin-annot -w '@f@p@u@s@40'   -c ../../../src/pds_template/pds_template.ml -o pds_template.cmx
- ocamlfind ocamlopt -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx  -c ../../../src/snabela/snabela_lexer.ml -o snabela_lexer.cmx
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx  -c ../../../src/snabela/snabela_lexer.ml -o snabela_lexer.cmo
- ocamlfind ocamlopt  -bin-annot -w '@f@p@u@s@40'  -thread -a -I +camlp4 -o pds_template.cmxa \
- 	pds_template.cmx
- ocamlfind ocamlc -thread -I +camlp4  -bin-annot -w '@f@p@u@s@40'   -c ../../../src/pds_template/pds_template.ml -o pds_template.cmo
- ocamlfind ocamlc  -bin-annot -w '@f@p@u@s@40'  -custom -thread -a -I +camlp4 -o pds_template.cma \
- 	pds_template.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -c ../../../src/snabela/snabela.mli -o snabela.cmi
- ocamlfind ocamlopt -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx  -c ../../../src/snabela/snabela.ml -o snabela.cmx
- ocamlfind ocamlc -thread -I +camlp4 -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx  -c ../../../src/snabela/snabela.ml -o snabela.cmo
- ocamlfind ocamlopt -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -thread -a -I +camlp4 -o snabela.cmxa \
- 	snabela_lexer.cmx snabela.cmx
- ocamlfind ocamlc -package sedlex -bin-annot -w '@f@p@u@s@40'  -package containers,ppx_deriving,ppx_deriving.eq,ppx_deriving.show,process,sedlex,sedlex.ppx -custom -thread -a -I +camlp4 -o snabela.cma \
- 	snabela_lexer.cmo snabela.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds \
- -C build/release/pds release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
- cd ../../../src/pds && \
- ocamlfind ocamldep   \
-  pds.ml   > /home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds/.d
- ocamlfind ocamlopt -thread -I +camlp4  -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,logs,logs.fmt,pds_template,process,snabela,sqlite3,toml  -c ../../../src/pds/pds.ml -o pds.cmx
- ocamlfind ocamlc -thread -I +camlp4  -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,logs,logs.fmt,pds_template,process,snabela,sqlite3,toml  -c ../../../src/pds/pds.ml -o pds.cmo
- ocamlfind ocamlopt  -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,logs,logs.fmt,pds_template,process,snabela,sqlite3,toml -thread -linkpkg -I +camlp4 -o pds.native \
- 	pds.cmx
- ocamlfind ocamlc  -bin-annot -w '@f@p@u@s@40' -g -package cmdliner,containers,logs,logs.fmt,pds_template,process,snabela,sqlite3,toml -custom -thread -linkpkg -I +camlp4 -o pds.byte \
- 	pds.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
Processing  2/3: [pds: make test]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j3" "test" (CWD=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55)
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template \
- -C build/release/pds_template release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela \
- -C build/release/snabela release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela'
- make[1]: Nothing to be done for 'release'.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
- make[1]: Nothing to be done for 'release'.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela'
- make \
- OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
- BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds \
- -C build/release/pds release
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
- make[1]: Nothing to be done for 'release'.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
- cd smoke-tests && env MAKE=make ./test
- Testing globals-formatted
- Passed globals-formatted
- Testing simple-formatted
- Passed simple-formatted
- Testing simple-output
- Passed simple-output
- Testing simple-selector-both-formatted
- diff -x 'pds\.db' -r /opam-tmp/tmp.mkfHZ5aC6o/simple-selector-both-formatted/output expected/output
- 1d0
- < src	foo	library	ocaml	hi
- 2a2
- > src	foo	library	ocaml	hi
- Passed simple-selector-both-formatted
- Testing simple-selector-build-formatted
- Passed simple-selector-build-formatted
- Testing simple-selector-default-compile-formatted
- Passed simple-selector-default-compile-formatted
- Testing simple-selector-default-formatted
- Passed simple-selector-default-formatted
- Testing simple-selector-do-not-build-default-formatted
- Passed simple-selector-do-not-build-default-formatted
- Testing simple-selector-do-not-build-formatted
- Passed simple-selector-do-not-build-formatted
- Testing simple-selector-found-compile-formatted
[ERROR] The compilation of pds.6.55 failed at "make -j3 test".
- Passed simple-selector-found-compile-formatted
- Testing simple-selector-found-formatted
- Passed simple-selector-found-formatted
- Testing simple-selector-not-found-formatted
- Passed simple-selector-not-found-formatted
- Testing simple-selector-tests-do-not-build-formatted
- Passed simple-selector-tests-do-not-build-formatted
- Testing simple-selector-tests-formatted
- Passed simple-selector-tests-formatted
- Testing tests
- Passed tests
- make: *** [Makefile:15: smoke-tests] Error 1

#=== ERROR while compiling pds.6.55 ===========================================#
# context              2.5.0~alpha1 | linux/riscv64 | ocaml-base-compiler.5.4.0 | pinned(http://acsl-pkgs.s3.amazonaws.com/pds-6.55.tar.gz)
# path                 ~/.opam/5.4/.opam-switch/build/pds.6.55
# command              ~/.opam/opam-init/hooks/sandbox.sh build make -j3 test
# exit-code            2
# env-file             ~/.opam/log/pds-7-886ab7.env
# output-file          ~/.opam/log/pds-7-886ab7.out
### output ###
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template \
# -C build/release/pds_template release
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela \
# -C build/release/snabela release
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds_template'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/snabela'
# make \
# OCAMLPATH=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release: \
# BUILD_DIR=/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds \
# -C build/release/pds release
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
# make[1]: Nothing to be done for 'release'.
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pds.6.55/build/release/pds'
# cd smoke-tests && env MAKE=make ./test
# Testing globals-formatted
# Passed globals-formatted
# Testing simple-formatted
# Passed simple-formatted
# Testing simple-output
# Passed simple-output
# Testing simple-selector-both-formatted
# diff -x 'pds\.db' -r /opam-tmp/tmp.mkfHZ5aC6o/simple-selector-both-formatted/output expected/output
# 1d0
# < src	foo	library	ocaml	hi
# 2a2
# > src	foo	library	ocaml	hi
# Passed simple-selector-both-formatted
# Testing simple-selector-build-formatted
# Passed simple-selector-build-formatted
# Testing simple-selector-default-compile-formatted
# Passed simple-selector-default-compile-formatted
# Testing simple-selector-default-formatted
# Passed simple-selector-default-formatted
# Testing simple-selector-do-not-build-default-formatted
# Passed simple-selector-do-not-build-default-formatted
# Testing simple-selector-do-not-build-formatted
# Passed simple-selector-do-not-build-formatted
# Testing simple-selector-found-compile-formatted
# Passed simple-selector-found-compile-formatted
# Testing simple-selector-found-formatted
# Passed simple-selector-found-formatted
# Testing simple-selector-not-found-formatted
# Passed simple-selector-not-found-formatted
# Testing simple-selector-tests-do-not-build-formatted
# Passed simple-selector-tests-do-not-build-formatted
# Testing simple-selector-tests-formatted
# Passed simple-selector-tests-formatted
# Testing tests
# Passed tests
# make: *** [Makefile:15: smoke-tests] Error 1



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build pds 6.55
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose pds.6.55' failed.
[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 --with-test --verbose pds.6.55;
        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" != 'pds.6.55' && 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
2025-11-11 03:47.38: Job failed: Failed: Build failed
2025-11-11 03:47.38: Log analysis:
2025-11-11 03:47.38: >>> 
[ERROR] The compilation of pds.6.55 failed at "make -j3 test".
 (score = 20)
2025-11-11 03:47.38: >>> 
[ERROR] The compilation of pds.6.55 failed at "make -j3 test".
 (score = 20)
2025-11-11 03:47.38: The compilation of pds.6.55 failed at "make -j3 test".