(not at the head of any monitored branch or PR)
2025-05-06 09:00.50: New job: test alt-ergo-plugin-ab-why3.2.6.2, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27852/head (f438c367e0d7f0427867ac6b2e3dded510b41e34)
                              on ubuntu-24.04-ocaml-5.3/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/27852/head" && git reset --hard f438c367
git fetch origin master
git merge --no-edit e28c86445c807c3d11aecedb95a03661481a7d1c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:741335d5cd890fdcbd0e5c968b094cd616c24507c47535f15e52f64baf41559e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 alt-ergo-plugin-ab-why3.2.6.2 2.6.2
RUN opam reinstall alt-ergo-plugin-ab-why3.2.6.2; \
    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" != 'alt-ergo-plugin-ab-why3.2.6.2' && 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 alt-ergo-plugin-ab-why3.2.6.2) || true
RUN opam reinstall --with-test --verbose alt-ergo-plugin-ab-why3.2.6.2; \
    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" != 'alt-ergo-plugin-ab-why3.2.6.2' && 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-05-06 09:00.50: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:741335d5cd890fdcbd0e5c968b094cd616c24507c47535f15e52f64baf41559e-alt-ergo-plugin-ab-why3.2.6.2-f438c367e0d7f0427867ac6b2e3dded510b41e34"
2025-05-06 09:00.50: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:741335d5cd890fdcbd0e5c968b094cd616c24507c47535f15e52f64baf41559e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 alt-ergo-plugin-ab-why3.2.6.2 2.6.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall alt-ergo-plugin-ab-why3.2.6.2;\
             \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\" != 'alt-ergo-plugin-ab-why3.2.6.2' && 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 alt-ergo-plugin-ab-why3.2.6.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose alt-ergo-plugin-ab-why3.2.6.2;\
             \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\" != 'alt-ergo-plugin-ab-why3.2.6.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-05-06 09:00.50: Waiting for resource in pool OCluster
2025-05-06 09:00.51: Waiting for worker…
2025-05-06 09:20.07: Got resource from pool OCluster
Building on riscv-bm-02.sw.ci.dev
All commits already cached
Updating files:  11% (2575/22994)
Updating files:  12% (2760/22994)
Updating files:  13% (2990/22994)
Updating files:  14% (3220/22994)
Updating files:  15% (3450/22994)
Updating files:  16% (3680/22994)
Updating files:  17% (3909/22994)
Updating files:  18% (4139/22994)
Updating files:  19% (4369/22994)
Updating files:  20% (4599/22994)
Updating files:  21% (4829/22994)
Updating files:  22% (5059/22994)
Updating files:  22% (5111/22994)
Updating files:  23% (5289/22994)
Updating files:  24% (5519/22994)
Updating files:  25% (5749/22994)
Updating files:  26% (5979/22994)
Updating files:  27% (6209/22994)
Updating files:  28% (6439/22994)
Updating files:  29% (6669/22994)
Updating files:  30% (6899/22994)
Updating files:  31% (7129/22994)
Updating files:  32% (7359/22994)
Updating files:  32% (7567/22994)
Updating files:  33% (7589/22994)
Updating files:  34% (7818/22994)
Updating files:  35% (8048/22994)
Updating files:  36% (8278/22994)
Updating files:  37% (8508/22994)
Updating files:  38% (8738/22994)
Updating files:  39% (8968/22994)
Updating files:  40% (9198/22994)
Updating files:  41% (9428/22994)
Updating files:  42% (9658/22994)
Updating files:  43% (9888/22994)
Updating files:  43% (10003/22994)
Updating files:  44% (10118/22994)
Updating files:  45% (10348/22994)
Updating files:  46% (10578/22994)
Updating files:  47% (10808/22994)
Updating files:  48% (11038/22994)
Updating files:  49% (11268/22994)
Updating files:  50% (11497/22994)
Updating files:  51% (11727/22994)
Updating files:  52% (11957/22994)
Updating files:  53% (12187/22994)
Updating files:  53% (12394/22994)
Updating files:  54% (12417/22994)
Updating files:  55% (12647/22994)
Updating files:  56% (12877/22994)
Updating files:  57% (13107/22994)
Updating files:  58% (13337/22994)
Updating files:  59% (13567/22994)
Updating files:  60% (13797/22994)
Updating files:  61% (14027/22994)
Updating files:  62% (14257/22994)
Updating files:  63% (14487/22994)
Updating files:  64% (14717/22994)
Updating files:  64% (14819/22994)
Updating files:  65% (14947/22994)
Updating files:  66% (15177/22994)
Updating files:  67% (15406/22994)
Updating files:  68% (15636/22994)
Updating files:  69% (15866/22994)
Updating files:  70% (16096/22994)
Updating files:  71% (16326/22994)
Updating files:  72% (16556/22994)
Updating files:  73% (16786/22994)
Updating files:  74% (17016/22994)
Updating files:  74% (17128/22994)
Updating files:  75% (17246/22994)
Updating files:  76% (17476/22994)
Updating files:  77% (17706/22994)
Updating files:  78% (17936/22994)
Updating files:  79% (18166/22994)
Updating files:  80% (18396/22994)
Updating files:  81% (18626/22994)
Updating files:  82% (18856/22994)
Updating files:  83% (19086/22994)
Updating files:  84% (19315/22994)
Updating files:  84% (19474/22994)
Updating files:  85% (19545/22994)
Updating files:  86% (19775/22994)
Updating files:  87% (20005/22994)
Updating files:  88% (20235/22994)
Updating files:  89% (20465/22994)
Updating files:  90% (20695/22994)
Updating files:  91% (20925/22994)
Updating files:  92% (21155/22994)
Updating files:  93% (21385/22994)
Updating files:  94% (21615/22994)
Updating files:  94% (21808/22994)
Updating files:  95% (21845/22994)
Updating files:  96% (22075/22994)
Updating files:  97% (22305/22994)
Updating files:  98% (22535/22994)
Updating files:  99% (22765/22994)
Updating files: 100% (22994/22994)
Updating files: 100% (22994/22994), done.
HEAD is now at e28c86445c Merge pull request #27816 from Leonidas-from-XIV/core-unix-alpine
Updating e28c86445c..f438c367e0
Fast-forward
 packages/alt-ergo-lib/alt-ergo-lib.2.6.2/opam      | 70 ++++++++++++++++++++++
 .../alt-ergo-parsers/alt-ergo-parsers.2.6.2/opam   | 56 +++++++++++++++++
 .../alt-ergo-plugin-ab-why3.2.6.2/opam             | 51 ++++++++++++++++
 packages/alt-ergo/alt-ergo.2.6.2/opam              | 55 +++++++++++++++++
 4 files changed, 232 insertions(+)
 create mode 100644 packages/alt-ergo-lib/alt-ergo-lib.2.6.2/opam
 create mode 100644 packages/alt-ergo-parsers/alt-ergo-parsers.2.6.2/opam
 create mode 100644 packages/alt-ergo-plugin-ab-why3/alt-ergo-plugin-ab-why3.2.6.2/opam
 create mode 100644 packages/alt-ergo/alt-ergo.2.6.2/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:741335d5cd890fdcbd0e5c968b094cd616c24507c47535f15e52f64baf41559e)
Unable to find image 'ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:741335d5cd890fdcbd0e5c968b094cd616c24507c47535f15e52f64baf41559e' locally
docker.io/ocaml/opam@sha256:741335d5cd890fdcbd0e5c968b094cd616c24507c47535f15e52f64baf41559e: Pulling from ocaml/opam
ba2f284f7444: Already exists
a6d5333c4bc3: Already exists
5c48c1509161: Already exists
03291eaac929: Already exists
537a0f476833: Already exists
7aacc25a7b3c: Already exists
09b4bf83e421: Already exists
c8c22666543d: Already exists
272e2f3f09ed: Already exists
93aa282a3cbf: Already exists
7ec6667faa54: Already exists
26af6e9f8842: Already exists
3185b0dd3790: Already exists
48f8f99788df: Already exists
0e1c0f79eec0: Already exists
0e1c0f79eec0: Already exists
69d0afa0c182: Already exists
85b9094b0cab: Already exists
264d5c1a13e6: Already exists
5c124c80b22a: Already exists
4f4fb700ef54: Already exists
5791211fe89e: Already exists
60218dcae8df: Already exists
484f174f0463: Already exists
1d1eff14040f: Already exists
7a0472104e51: Already exists
2f93a2731384: Already exists
aa6feca582a8: Already exists
afd371e8bc0c: Already exists
b253e8bc1363: Already exists
09957cdacc75: Already exists
882dabf147a3: Already exists
3f516787b8f3: Already exists
24e19c4ea694: Already exists
11252ef0d863: Already exists
221fd8993c72: Already exists
6713ff040b64: Already exists
04822d3c4571: Already exists
ca003c0bb889: Pulling fs layer
74f5ad23f010: Pulling fs layer
1b3bd6138524: Pulling fs layer
c4536dd49f68: Pulling fs layer
4ccf032c157d: Pulling fs layer
c3bd30a33934: Pulling fs layer
c64d4fcb1bfe: Pulling fs layer
c4536dd49f68: Waiting
4ccf032c157d: Waiting
c3bd30a33934: Waiting
c64d4fcb1bfe: Waiting
74f5ad23f010: Verifying Checksum
74f5ad23f010: Download complete
1b3bd6138524: Verifying Checksum
1b3bd6138524: Download complete
ca003c0bb889: Verifying Checksum
4ccf032c157d: Verifying Checksum
4ccf032c157d: Download complete
ca003c0bb889: Pull complete
74f5ad23f010: Pull complete
1b3bd6138524: Pull complete
c64d4fcb1bfe: Verifying Checksum
c64d4fcb1bfe: Download complete
c3bd30a33934: Verifying Checksum
c3bd30a33934: Download complete
c4536dd49f68: Verifying Checksum
c4536dd49f68: Download complete
c4536dd49f68: Pull complete
4ccf032c157d: Pull complete
c3bd30a33934: Pull complete
c64d4fcb1bfe: Pull complete
Digest: sha256:741335d5cd890fdcbd0e5c968b094cd616c24507c47535f15e52f64baf41559e
Status: Downloaded newer image for ocaml/opam@sha256:741335d5cd890fdcbd0e5c968b094cd616c24507c47535f15e52f64baf41559e
2025-05-06 09:20.22 ---> using "4bf9d9686d385f442e32363b3e242cca1d051a4ce5e1b602f52a79c7d573130a" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-05-06 09:20.22 ---> using "e869bc45f487ea065a90f28c1dbae488bed86c013ed58c4311c5c2cffefcb3bd" 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 development 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-05-06 09:20.22 ---> using "215d517fa776ac19f24a09c7421664f63bda990711710cb384c3ecd0a7938e86" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# 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.3
# invariant            ["ocaml-base-compiler" {>= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-05-06 09:20.22 ---> using "0a2153413bb0626437f2a4a21362c5a9488a271e1e48abd945c58ac53e61cd62" 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-05-06 09:20.22 ---> using "6d6a2a70b54ca69c0e03b97e3df7a7c853c63e56a9ee9b4a74052dd94ace6e5e" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-05-06 09:20.29 ---> using "b606501dc930dcfb25dacd459f447c4bd3efc938836740b976ab87662673f0e9" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-05-06 09:20.29 ---> using "733a5b3b96b42618a161017400ae5e2c5bcaf7a6071a420fa577d72276f91354" 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 [1100 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [733 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [434 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/multiverse riscv64 Packages [1466 B]
- Get:9 http://ports.ubuntu.com/ubuntu-ports noble-security/restricted riscv64 Packages [4937 B]
- Get:10 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [831 kB]
- Fetched 3482 kB in 2s (1569 kB/s)
- Reading package lists...
- 
2025-05-06 09:20.29 ---> using "955476c65020fa2ff5d6b7f8cf4497f02bde79b0bc09f33132bb469384b7d67f" from cache

/home/opam: (run (shell "opam pin add -k version -yn alt-ergo-plugin-ab-why3.2.6.2 2.6.2"))
alt-ergo-plugin-ab-why3 is now pinned to version 2.6.2
2025-05-06 09:20.29 ---> using "4d895c04bdd45408445d852caaf89f7029ecd503a5aabbfa4b902003f86c1849" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall alt-ergo-plugin-ab-why3.2.6.2;\
                        \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\" != 'alt-ergo-plugin-ab-why3.2.6.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
alt-ergo-plugin-ab-why3.2.6.2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 47 packages
  - install alt-ergo                2.6.2          [required by alt-ergo-plugin-ab-why3]
  - install alt-ergo-lib            2.6.2          [required by alt-ergo-plugin-ab-why3]
  - install alt-ergo-parsers        2.6.2          [required by alt-ergo-plugin-ab-why3]
  - install alt-ergo-plugin-ab-why3 2.6.2 (pinned)
  - install camlzip                 1.13           [required by alt-ergo-lib]
  - install cmdliner                1.3.0          [required by alt-ergo]
  - install conf-gmp                5              [required by zarith]
  - install conf-pkg-config         4              [required by zarith]
  - install conf-zlib               1              [required by camlzip]
  - install cppo                    1.8.0          [required by ppx_deriving]
  - install csexp                   1.5.2          [required by dune-private-libs]
  - install dolmen                  0.10           [required by alt-ergo-lib]
  - install dolmen_loop             0.10           [required by alt-ergo-lib]
  - install dolmen_type             0.10           [required by alt-ergo-lib]
  - install dune                    3.18.2         [required by alt-ergo-plugin-ab-why3]
  - install dune-build-info         3.18.2         [required by alt-ergo-lib]
  - install dune-private-libs       3.18.2         [required by dune-site]
  - install dune-site               3.18.2         [required by alt-ergo]
  - install dyn                     3.18.2         [required by dune-private-libs]
  - install fmt                     0.10.0         [required by alt-ergo-lib]
  - install gen                     1.1            [required by dolmen_loop]
  - install hmap                    0.8.1          [required by dolmen]
  - install logs                    0.8.0          [required by ocplib-simplex]
  - install menhir                  20240715       [required by alt-ergo]
  - install menhirCST               20240715       [required by menhir]
  - install menhirLib               20240715       [required by menhir]
  - install menhirSdk               20240715       [required by menhir]
  - install ocaml-compiler-libs     v0.17.0        [required by ppxlib]
  - install ocamlbuild              0.16.1         [required by hmap, fmt, logs]
  - install ocamlfind               1.9.8          [required by ppx_deriving, camlzip, ocplib-simplex, zarith]
  - install ocplib-simplex          0.5.1          [required by alt-ergo-lib]
  - install ordering                3.18.2         [required by dyn, stdune]
  - install pp                      2.0.0          [required by dune-private-libs]
  - install pp_loc                  2.1.0          [required by dolmen_loop]
  - install ppx_blob                0.9.0          [required by alt-ergo-lib]
  - install ppx_derivers            1.2.1          [required by ppx_deriving]
  - install ppx_deriving            6.1.0          [required by alt-ergo-lib]
  - install ppxlib                  0.36.0         [required by ppx_blob, ppx_deriving]
  - install psmt2-frontend          0.4.0          [required by alt-ergo-parsers]
  - install seq                     base           [required by alt-ergo-lib]
  - install sexplib0                v0.17.0        [required by ppxlib]
  - install spelll                  0.4            [required by dolmen_type]
  - install stdlib-shims            0.3.0          [required by alt-ergo-lib, alt-ergo-parsers]
  - install stdune                  3.18.2         [required by dune-private-libs]
  - install topkg                   1.0.8          [required by hmap, fmt, logs]
  - install uutf                    1.0.4          [required by dolmen_type]
  - install zarith                  1.14           [required by alt-ergo-lib]

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

<><> 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" "libgmp-dev" "pkg-config" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl: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 .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu6.1_riscv64.deb ...
- Unpacking libgmpxx4ldbl:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libgmp-dev:riscv64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu6.1_riscv64.deb ...
- Unpacking libgmp-dev:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libpkgconf3:riscv64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-2build1_riscv64.deb ...
- Unpacking libpkgconf3:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:riscv64.
- Preparing to unpack .../4-pkgconf_1.8.1-2build1_riscv64.deb ...
- Unpacking pkgconf:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:riscv64.
- Preparing to unpack .../5-pkg-config_1.8.1-2build1_riscv64.deb ...
- Unpacking pkg-config:riscv64 (1.8.1-2build1) ...
- Selecting previously unselected package zlib1g-dev:riscv64.
- Preparing to unpack .../6-zlib1g-dev_1%3a1.3.dfsg-3.1ubuntu2.1_riscv64.deb ...
- Unpacking zlib1g-dev:riscv64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up libpkgconf3:riscv64 (1.8.1-2build1) ...
- Setting up libgmpxx4ldbl:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up zlib1g-dev:riscv64 (1:1.3.dfsg-3.1ubuntu2.1) ...
- Setting up libgmp-dev:riscv64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- 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.4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alt-ergo.2.6.2, alt-ergo-lib.2.6.2, alt-ergo-parsers.2.6.2, alt-ergo-plugin-ab-why3.2.6.2  (https://github.com/OCamlPro/alt-ergo/releases/download/v2.6.2/alt-ergo-2.6.2.tbz)
-> retrieved camlzip.1.13  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved csexp.1.5.2  (cached)
-> installed conf-zlib.1
-> retrieved dolmen.0.10, dolmen_loop.0.10, dolmen_type.0.10  (cached)
-> retrieved dune.3.18.2, dune-build-info.3.18.2, dune-private-libs.3.18.2, dune-site.3.18.2, dyn.3.18.2, ordering.3.18.2, stdune.3.18.2  (cached)
-> retrieved fmt.0.10.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved logs.0.8.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-simplex.0.5.1  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved pp_loc.2.1.0  (cached)
-> retrieved ppx_blob.0.9.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.0  (cached)
-> retrieved ppxlib.0.36.0  (cached)
-> retrieved psmt2-frontend.0.4.0  (cached)
-> retrieved seq.base  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved spelll.0.4  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.0.8  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed seq.base
-> installed camlzip.1.13
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.0.8
-> installed hmap.0.8.1
-> installed fmt.0.10.0
-> installed uutf.1.0.4
-> installed logs.0.8.0
-> installed dune.3.18.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed menhirCST.20240715
-> installed dune-build-info.3.18.2
-> installed gen.1.1
-> installed menhirSdk.20240715
-> installed menhirLib.20240715
-> installed ocplib-simplex.0.5.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed pp.2.0.0
-> installed ordering.3.18.2
-> installed pp_loc.2.1.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed dyn.3.18.2
-> installed stdlib-shims.0.3.0
-> installed stdune.3.18.2
-> installed spelll.0.4
-> installed dune-private-libs.3.18.2
-> installed dune-site.3.18.2
-> installed menhir.20240715
-> installed psmt2-frontend.0.4.0
-> installed ppxlib.0.36.0
-> installed ppx_blob.0.9.0
-> installed ppx_deriving.6.1.0
-> installed dolmen.0.10
-> installed dolmen_type.0.10
-> installed dolmen_loop.0.10
-> installed alt-ergo-lib.2.6.2
-> installed alt-ergo-parsers.2.6.2
-> installed alt-ergo.2.6.2
-> installed alt-ergo-plugin-ab-why3.2.6.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-06 09:20.29 ---> using "8175d9bd33e43794c62c42e247927336ff36519bc564632fdbefa6d3152c273f" from cache

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test alt-ergo-plugin-ab-why3.2.6.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile alt-ergo-plugin-ab-why3 2.6.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   alt-ergo-plugin-ab-why3.2.6.2
-> installed alt-ergo-plugin-ab-why3.2.6.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-06 09:21.16 ---> saved as "e9e68ab8651838613431f1ddc6d46b7f88c3e3dfe7b2018448aa35c8975b70c7"

/home/opam: (run (shell  "opam reinstall --with-test --verbose alt-ergo-plugin-ab-why3.2.6.2;\
                        \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\" != 'alt-ergo-plugin-ab-why3.2.6.2' && 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 alt-ergo-plugin-ab-why3 2.6.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [alt-ergo-plugin-ab-why3: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "alt-ergo-plugin-ab-why3" "-j" "3" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/alt-ergo-plugin-ab-why3.2.6.2)
Processing  2/4: [alt-ergo-plugin-ab-why3: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "alt-ergo-plugin-ab-why3" "--create-install-files" "alt-ergo-plugin-ab-why3" (CWD=/home/opam/.opam/5.3/.opam-switch/build/alt-ergo-plugin-ab-why3.2.6.2)
-> compiled  alt-ergo-plugin-ab-why3.2.6.2
-> removed   alt-ergo-plugin-ab-why3.2.6.2
-> installed alt-ergo-plugin-ab-why3.2.6.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-06 09:22.03 ---> saved as "33d42e203adf3347f56495988284c5466b3a560af01472ea16571b112fb83f65"
Job succeeded
2025-05-06 09:22.45: Job succeeded