Build:
  1. 0
2025-09-18 12:21.54: New job: test jasmin.2025.06.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28526/head (cdd77a45b5ee96d9adbefea4b5e5add3fda5a57c)
                              on debian-13-ocaml-4.14/i386

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28526/head" && git reset --hard cdd77a45
git fetch origin master
git merge --no-edit 151ffce963e54519dd5d1280848f631d38db358e
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:f7771327eb3a959fdb0fe778a3bb1b22985cb04b683952c6a4b63ad155a08b64
SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ]
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 jasmin.2025.06.1 2025.06.1
RUN opam reinstall jasmin.2025.06.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'jasmin.2025.06.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 jasmin.2025.06.1) || true
RUN opam reinstall --with-test --verbose jasmin.2025.06.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'jasmin.2025.06.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-09-18 12:21.54: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:f7771327eb3a959fdb0fe778a3bb1b22985cb04b683952c6a4b63ad155a08b64-jasmin.2025.06.1-cdd77a45b5ee96d9adbefea4b5e5add3fda5a57c"
2025-09-18 12:21.54: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:f7771327eb3a959fdb0fe778a3bb1b22985cb04b683952c6a4b63ad155a08b64)
 (shell /usr/bin/linux32 /bin/sh -c)
 (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 jasmin.2025.06.1 2025.06.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall jasmin.2025.06.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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'jasmin.2025.06.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 jasmin.2025.06.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose jasmin.2025.06.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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'jasmin.2025.06.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-09-18 12:21.54: Waiting for resource in pool OCluster
2025-09-18 14:50.53: Waiting for worker…
2025-09-18 14:55.07: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 151ffce963 Merge pull request #28412 from andersfugmann/release-ocaml-protoc-plugin-6.2.0
Merge made by the 'ort' strategy.
 packages/jasmin/jasmin.2025.06.1/opam | 44 +++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 packages/jasmin/jasmin.2025.06.1/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:f7771327eb3a959fdb0fe778a3bb1b22985cb04b683952c6a4b63ad155a08b64)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:f7771327eb3a959fdb0fe778a3bb1b22985cb04b683952c6a4b63ad155a08b64' locally
docker.io/ocaml/opam@sha256:f7771327eb3a959fdb0fe778a3bb1b22985cb04b683952c6a4b63ad155a08b64: Pulling from ocaml/opam
c9dedb413b40: Pulling fs layer
f837638c463a: Pulling fs layer
0f10188fd397: Pulling fs layer
fdd37291e755: Pulling fs layer
a55e52baefab: Pulling fs layer
386c2e37ee48: Pulling fs layer
0857da6a87f6: Pulling fs layer
f8f57246dbb6: Pulling fs layer
f1cc898bfa73: Pulling fs layer
5f5e0e9320fb: Pulling fs layer
e71cb2b79246: Pulling fs layer
65b77d0e6ddf: Pulling fs layer
32b3ac319680: Pulling fs layer
386c2e37ee48: Waiting
332b4f70bda8: Pulling fs layer
fdd37291e755: Waiting
0857da6a87f6: Waiting
e71cb2b79246: Waiting
a55e52baefab: Waiting
c7487749a26d: Pulling fs layer
f1cc898bfa73: Waiting
5f129db7df1d: Pulling fs layer
32b3ac319680: Waiting
5f5e0e9320fb: Waiting
65b77d0e6ddf: Waiting
332b4f70bda8: Waiting
120fe700baf0: Pulling fs layer
5f129db7df1d: Waiting
3f1bc6b935d7: Pulling fs layer
9b3cd3bec5e7: Pulling fs layer
68870f10c39f: Pulling fs layer
120fe700baf0: Waiting
4f4fb700ef54: Pulling fs layer
68870f10c39f: Waiting
313ffe921dc9: Pulling fs layer
4f4fb700ef54: Waiting
6e022cac4b49: Pulling fs layer
b6e0545365a9: Pulling fs layer
178a2230f6bc: Pulling fs layer
9b3cd3bec5e7: Waiting
6e022cac4b49: Waiting
43ec319d5b4b: Pulling fs layer
b6e0545365a9: Waiting
887948c2fa1d: Pulling fs layer
fa0835f5eb56: Pulling fs layer
b834ef866483: Pulling fs layer
cd4567e6bde2: Pulling fs layer
ed94b946f82a: Pulling fs layer
b834ef866483: Waiting
3916e2f43ad3: Pulling fs layer
cd4567e6bde2: Waiting
ed94b946f82a: Waiting
fa0835f5eb56: Waiting
c512f818c56e: Pulling fs layer
887948c2fa1d: Waiting
6df78b4411ca: Pulling fs layer
d92949f24bca: Pulling fs layer
6df78b4411ca: Waiting
c512f818c56e: Waiting
72569c0b1e6f: Pulling fs layer
91f47f4eed6f: Pulling fs layer
76d7e22f5a6c: Pulling fs layer
39a2d3171290: Pulling fs layer
b1c09bc25311: Pulling fs layer
681c028ea2d0: Pulling fs layer
39a2d3171290: Waiting
d92949f24bca: Waiting
76d7e22f5a6c: Waiting
72569c0b1e6f: Waiting
62e4589769df: Pulling fs layer
91f47f4eed6f: Waiting
b1c09bc25311: Waiting
338b2ebae701: Pulling fs layer
62e4589769df: Waiting
f837638c463a: Verifying Checksum
f837638c463a: Download complete
0f10188fd397: Download complete
c9dedb413b40: Verifying Checksum
c9dedb413b40: Download complete
fdd37291e755: Verifying Checksum
fdd37291e755: Download complete
a55e52baefab: Download complete
0857da6a87f6: Verifying Checksum
0857da6a87f6: Download complete
f8f57246dbb6: Verifying Checksum
f8f57246dbb6: Download complete
f1cc898bfa73: Download complete
5f5e0e9320fb: Verifying Checksum
5f5e0e9320fb: Download complete
c9dedb413b40: Pull complete
f837638c463a: Pull complete
e71cb2b79246: Verifying Checksum
e71cb2b79246: Download complete
0f10188fd397: Pull complete
65b77d0e6ddf: Verifying Checksum
65b77d0e6ddf: Download complete
fdd37291e755: Pull complete
a55e52baefab: Pull complete
332b4f70bda8: Verifying Checksum
332b4f70bda8: Download complete
32b3ac319680: Verifying Checksum
32b3ac319680: Download complete
c7487749a26d: Download complete
120fe700baf0: Download complete
5f129db7df1d: Verifying Checksum
5f129db7df1d: Download complete
3f1bc6b935d7: Download complete
386c2e37ee48: Verifying Checksum
386c2e37ee48: Download complete
9b3cd3bec5e7: Verifying Checksum
9b3cd3bec5e7: Download complete
68870f10c39f: Verifying Checksum
68870f10c39f: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
313ffe921dc9: Download complete
6e022cac4b49: Verifying Checksum
6e022cac4b49: Download complete
b6e0545365a9: Verifying Checksum
b6e0545365a9: Download complete
178a2230f6bc: Verifying Checksum
178a2230f6bc: Download complete
fa0835f5eb56: Verifying Checksum
fa0835f5eb56: Download complete
43ec319d5b4b: Verifying Checksum
43ec319d5b4b: Download complete
b834ef866483: Verifying Checksum
b834ef866483: Download complete
887948c2fa1d: Verifying Checksum
887948c2fa1d: Download complete
cd4567e6bde2: Download complete
ed94b946f82a: Verifying Checksum
ed94b946f82a: Download complete
3916e2f43ad3: Verifying Checksum
c512f818c56e: Verifying Checksum
c512f818c56e: Download complete
d92949f24bca: Download complete
91f47f4eed6f: Verifying Checksum
91f47f4eed6f: Download complete
76d7e22f5a6c: Verifying Checksum
76d7e22f5a6c: Download complete
39a2d3171290: Verifying Checksum
39a2d3171290: Download complete
72569c0b1e6f: Verifying Checksum
72569c0b1e6f: Download complete
681c028ea2d0: Verifying Checksum
681c028ea2d0: Download complete
62e4589769df: Verifying Checksum
62e4589769df: Download complete
338b2ebae701: Verifying Checksum
338b2ebae701: Download complete
6df78b4411ca: Verifying Checksum
6df78b4411ca: Download complete
b1c09bc25311: Verifying Checksum
b1c09bc25311: Download complete
386c2e37ee48: Pull complete
0857da6a87f6: Pull complete
f8f57246dbb6: Pull complete
f1cc898bfa73: Pull complete
5f5e0e9320fb: Pull complete
e71cb2b79246: Pull complete
65b77d0e6ddf: Pull complete
32b3ac319680: Pull complete
332b4f70bda8: Pull complete
c7487749a26d: Pull complete
5f129db7df1d: Pull complete
120fe700baf0: Pull complete
3f1bc6b935d7: Pull complete
9b3cd3bec5e7: Pull complete
68870f10c39f: Pull complete
4f4fb700ef54: Pull complete
313ffe921dc9: Pull complete
6e022cac4b49: Pull complete
b6e0545365a9: Pull complete
178a2230f6bc: Pull complete
43ec319d5b4b: Pull complete
887948c2fa1d: Pull complete
fa0835f5eb56: Pull complete
b834ef866483: Pull complete
cd4567e6bde2: Pull complete
ed94b946f82a: Pull complete
3916e2f43ad3: Pull complete
c512f818c56e: Pull complete
6df78b4411ca: Pull complete
d92949f24bca: Pull complete
72569c0b1e6f: Pull complete
91f47f4eed6f: Pull complete
76d7e22f5a6c: Pull complete
39a2d3171290: Pull complete
b1c09bc25311: Pull complete
681c028ea2d0: Pull complete
62e4589769df: Pull complete
338b2ebae701: Pull complete
Digest: sha256:f7771327eb3a959fdb0fe778a3bb1b22985cb04b683952c6a4b63ad155a08b64
Status: Downloaded newer image for ocaml/opam@sha256:f7771327eb3a959fdb0fe778a3bb1b22985cb04b683952c6a4b63ad155a08b64
WARNING: The requested image's platform (linux/386) does not match the detected host platform (linux/amd64) and no specific platform was requested
2025-09-18 14:56.28 ---> saved as "2410126bd648536e6a38bb4dd4d127b56e708103e682af4c8aa1013072241b6f"

/: (shell /usr/bin/linux32 /bin/sh -c)

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-09-18 14:56.28 ---> saved as "824769264f71543e5594dd7ab66aa87e009999c4db7f315734961bb1c2cfc2b9"

/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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-09-18 14:57.05 ---> saved as "d5b1221fa1dab3930253c4e371aa99ee2938f74f1e520d8da6b0dca646ef0494"

/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.4.1
# self-upgrade         no
# system               arch=x86_32 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-09-18 14:57.05 ---> saved as "3dbc071e41fcddb85e80af17433af2846a9f31771860d0bd3aa47f9195dedc37"

/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-09-18 14:57.17 ---> saved as "6ff334498eb1142b1373c4af362bf13b52df620be786b9029759d67dd2bdb60f"

/home/opam: (copy (src .) (dst opam-repository/))
2025-09-18 14:57.29 ---> saved as "9915089b33e98d44662b88d3a5ca53debd6eeb29ddbb6d512fc5564face3f1f6"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-09-18 14:58.04 ---> saved as "4fcf22b8e9a384a9a95fae654a1ee027ee85bce356fd790640b196f32f575d34"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main i386 Packages [36.6 kB]
- Fetched 127 kB in 0s (1044 kB/s)
- Reading package lists...
2025-09-18 14:58.05 ---> saved as "94815f5bcc082e9c06a5a0e0ff70e2134d68a4da4fb7c57c5115feab701b3970"

/home/opam: (run (shell "opam pin add -k version -yn jasmin.2025.06.1 2025.06.1"))
jasmin is now pinned to version 2025.06.1
2025-09-18 14:58.05 ---> saved as "f0f0346368a45c6285950157d5cbbc59677e4a29270a196f87a5fb64eb4d5088"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall jasmin.2025.06.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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'jasmin.2025.06.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
jasmin.2025.06.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 31 packages
  - install angstrom           0.16.1             [required by jasmin]
  - install apron              v0.9.15            [required by jasmin]
  - install batteries          3.9.0              [required by jasmin]
  - install bigarray-compat    1.1.0              [required by mlgmpidl]
  - install bigstringaf        0.10.0             [required by angstrom]
  - install camlidl            1.13               [required by jasmin]
  - install camlp-streams      5.0.1              [required by batteries]
  - install cmdliner           1.3.0              [required by jasmin]
  - install conf-findutils     1                  [required by ez-conf-lib]
  - install conf-gmp           5                  [required by zarith]
  - install conf-gmp-paths     1                  [required by mlgmpidl]
  - install conf-mpfr-paths    1                  [required by mlgmpidl]
  - install conf-perl          2                  [required by apron]
  - install conf-pkg-config    4                  [required by zarith]
  - install conf-ppl           1                  [required by jasmin]
  - install csexp              1.5.2              [required by dune-configurator]
  - install dune               3.20.2             [required by jasmin]
  - install dune-configurator  3.20.2             [required by bigstringaf]
  - install ez-conf-lib        2                  [required by conf-gmp-paths, conf-mpfr-paths]
  - install jasmin             2025.06.1 (pinned)
  - install menhir             20250912           [required by jasmin]
  - install menhirCST          20250912           [required by menhir]
  - install menhirLib          20250912           [required by jasmin]
  - install menhirSdk          20250912           [required by menhir]
  - install mlgmpidl           1.3.0              [required by apron]
  - install num                1.6                [required by batteries]
  - install ocaml-syntax-shims 1.0.0              [required by angstrom]
  - install ocamlbuild         0.16.1             [required by apron]
  - install ocamlfind          1.9.8              [required by jasmin]
  - install yojson             3.0.0              [required by jasmin]
  - install zarith             1.14               [required by jasmin]

The following system packages will first need to be installed:
    libgmp-dev libmpfr-dev libppl-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" "libgmp-dev" "libmpfr-dev" "libppl-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:i386.
- (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 ... 20592 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_i386.deb ...
- Unpacking libgmpxx4ldbl:i386 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:i386.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_i386.deb ...
- Unpacking libgmp-dev:i386 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libmpfr-dev:i386.
- Preparing to unpack .../2-libmpfr-dev_4.2.2-1_i386.deb ...
- Unpacking libmpfr-dev:i386 (4.2.2-1) ...
- Selecting previously unselected package libpkgconf3:i386.
- Preparing to unpack .../3-libpkgconf3_1.8.1-4_i386.deb ...
- Unpacking libpkgconf3:i386 (1.8.1-4) ...
- Selecting previously unselected package libppl14:i386.
- Preparing to unpack .../4-libppl14_1%3a1.2-8.1+b3_i386.deb ...
- Unpacking libppl14:i386 (1:1.2-8.1+b3) ...
- Selecting previously unselected package libppl-c4:i386.
- Preparing to unpack .../5-libppl-c4_1%3a1.2-8.1+b3_i386.deb ...
- Unpacking libppl-c4:i386 (1:1.2-8.1+b3) ...
- Selecting previously unselected package libppl-dev:i386.
- Preparing to unpack .../6-libppl-dev_1%3a1.2-8.1+b3_i386.deb ...
- Unpacking libppl-dev:i386 (1:1.2-8.1+b3) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_i386.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:i386.
- Preparing to unpack .../8-pkgconf_1.8.1-4_i386.deb ...
- Unpacking pkgconf:i386 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:i386.
- Preparing to unpack .../9-pkg-config_1.8.1-4_i386.deb ...
- Unpacking pkg-config:i386 (1.8.1-4) ...
- Setting up libpkgconf3:i386 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:i386 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libppl14:i386 (1:1.2-8.1+b3) ...
- Setting up libgmp-dev:i386 (2:6.3.0+dfsg-3) ...
- Setting up libmpfr-dev:i386 (4.2.2-1) ...
- Setting up pkgconf:i386 (1.8.1-4) ...
- Setting up pkg-config:i386 (1.8.1-4) ...
- Setting up libppl-c4:i386 (1:1.2-8.1+b3) ...
- Setting up libppl-dev:i386 (1:1.2-8.1+b3) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved apron.v0.9.15  (cached)
-> retrieved batteries.3.9.0  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved camlidl.1.13  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-paths.1  (cached)
-> retrieved conf-mpfr-paths.1  (cached)
-> retrieved conf-ppl.1  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-findutils.1
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-perl.2
-> installed conf-ppl.1
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved ez-conf-lib.2  (cached)
-> retrieved jasmin.2025.06.1  (cached)
-> installed cmdliner.1.3.0
-> installed camlidl.1.13
-> installed ez-conf-lib.2
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> installed conf-gmp-paths.1
-> retrieved mlgmpidl.1.3.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> installed conf-mpfr-paths.1
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed dune.3.20.2
-> installed bigarray-compat.1.1.0
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-syntax-shims.1.0.0
-> installed yojson.3.0.0
[ERROR] The compilation of mlgmpidl.1.3.0 failed at "make".
-> installed batteries.3.9.0
-> installed dune-configurator.3.20.2
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed menhir.20250912

#=== ERROR while compiling mlgmpidl.1.3.0 =====================================#
# context              2.4.1 | linux/x86_32 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path                 ~/.opam/4.14/.opam-switch/build/mlgmpidl.1.3.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build make
# exit-code            2
# env-file             ~/.opam/log/mlgmpidl-7-c3a5f1.env
# output-file          ~/.opam/log/mlgmpidl-7-c3a5f1.out
### output ###
# tmpdir=$(mktemp -d tmp.XXXXXX);				\
# trap "rm -f -r ${tmpdir};" EXIT QUIT INT;			\
# { cp mpz.idl ${tmpdir}/mpz.idl;					\
#   /home/opam/.opam/4.14/bin/camlidl -no-include					\
# 	-D MPFR_VERSION_MAJOR=4		\
# 	-prepro cpp ${tmpdir}/mpz.idl			&&	\
#   /usr/bin/perl perlscript_c.pl < ${tmpdir}/mpz_stubs.c >mpz_caml.c &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/mpz.ml >mpz.ml &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/mpz.mli >mpz.mli; }
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpz.mli
# tmpdir=$(mktemp -d tmp.XXXXXX);				\
# trap "rm -f -r ${tmpdir};" EXIT QUIT INT;			\
# { cp mpq.idl ${tmpdir}/mpq.idl;					\
#   /home/opam/.opam/4.14/bin/camlidl -no-include					\
# 	-D MPFR_VERSION_MAJOR=4		\
# 	-prepro cpp ${tmpdir}/mpq.idl			&&	\
#   /usr/bin/perl perlscript_c.pl < ${tmpdir}/mpq_stubs.c >mpq_caml.c &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/mpq.ml >mpq.ml &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/mpq.mli >mpq.mli; }
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpq.mli
# tmpdir=$(mktemp -d tmp.XXXXXX);				\
# trap "rm -f -r ${tmpdir};" EXIT QUIT INT;			\
# { cp mpf.idl ${tmpdir}/mpf.idl;					\
#   /home/opam/.opam/4.14/bin/camlidl -no-include					\
# 	-D MPFR_VERSION_MAJOR=4		\
# 	-prepro cpp ${tmpdir}/mpf.idl			&&	\
#   /usr/bin/perl perlscript_c.pl < ${tmpdir}/mpf_stubs.c >mpf_caml.c &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/mpf.ml >mpf.ml &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/mpf.mli >mpf.mli; }
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpf.mli
# tmpdir=$(mktemp -d tmp.XXXXXX);				\
# trap "rm -f -r ${tmpdir};" EXIT QUIT INT;			\
# { cp mpfr.idl ${tmpdir}/mpfr.idl;					\
#   /home/opam/.opam/4.14/bin/camlidl -no-include					\
# 	-D MPFR_VERSION_MAJOR=4		\
# 	-prepro cpp ${tmpdir}/mpfr.idl			&&	\
#   /usr/bin/perl perlscript_c.pl < ${tmpdir}/mpfr_stubs.c >mpfr_caml.c &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/mpfr.ml >mpfr.ml &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/mpfr.mli >mpfr.mli; }
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpfr.mli
# tmpdir=$(mktemp -d tmp.XXXXXX);				\
# trap "rm -f -r ${tmpdir};" EXIT QUIT INT;			\
# { cp gmp_random.idl ${tmpdir}/gmp_random.idl;					\
#   /home/opam/.opam/4.14/bin/camlidl -no-include					\
# 	-D MPFR_VERSION_MAJOR=4		\
# 	-prepro cpp ${tmpdir}/gmp_random.idl			&&	\
#   /usr/bin/perl perlscript_c.pl < ${tmpdir}/gmp_random_stubs.c >gmp_random_caml.c &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/gmp_random.ml >gmp_random.ml &&	\
#   /usr/bin/perl perlscript_caml.pl < ${tmpdir}/gmp_random.mli >gmp_random.mli; }
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c gmp_random.mli
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpzf.mli
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpqf.mli
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpfrf.mli
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpz.ml
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpq.ml
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpf.ml
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpfr.ml
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c gmp_random.ml
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpzf.ml
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpqf.ml
# /home/opam/.opam/4.14/bin/ocamlfind ocamlc -package "bigarray-compat" -annot -g -c mpfrf.ml
# /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -package "bigarray-compat" -ccopt -U__STRICT_ANSI__ -ccopt -UNDEBUG -ccopt -O0 -ccopt -g -ccopt -Wcast-qual -ccopt -Wswitch -ccopt -Wall -ccopt -Wextra -ccopt -Wundef -ccopt -Wcast-align -ccopt -Wno-unused -ccopt -Wno-unused-parameter -ccopt -Wno-unused-function -ccopt -fPIC -ccopt -Werror-implicit-function-declaration -ccopt -Wbad-function-cast -ccopt -Wstrict-prototypes -ccopt -std=c99 -ccopt -I/usr/include/i386-linux-gnu -ccopt -I/usr/include -ccopt -I/home/opam/.opam/4.14/lib/ocaml -ccopt -I/home/opam/.opam/4.14/lib/camlidl -g -c -o mpz_caml.o mpz_caml.c
# mpz_caml.c: In function 'camlidl_mpz_mpz__export':
# mpz_caml.c:2271:26: error: passing argument 2 of '__gmpz_export' from incompatible pointer type [-Wincompatible-pointer-types]
#  2271 | _res = mpz_export (NULL, COUNT, ORDER, sizeof(intnat), ENDIAN, 0, OP);
#       |                          ^~~~~
#       |                          |
#       |                          long unsigned int *
# In file included from gmp_caml.h:15,
#                  from mpz_caml.c:21:
# /usr/include/i386-linux-gnu/gmp.h:747:42: note: expected 'size_t *' {aka 'unsigned int *'} but argument is of type 'long unsigned int *'
#   747 | __GMP_DECLSPEC void *mpz_export (void *, size_t *, int, size_t, int, size_t, mpz_srcptr);
#       |                                          ^~~~~~~~
# make: *** [Makefile:269: mpz_caml.o] Error 2



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build mlgmpidl 1.3.0
+- 
+- The following changes have been performed (the rest was aborted)
| - install angstrom           0.16.1
| - install batteries          3.9.0
| - install bigarray-compat    1.1.0
| - install bigstringaf        0.10.0
| - install camlidl            1.13
| - install camlp-streams      5.0.1
| - install cmdliner           1.3.0
| - install conf-findutils     1
| - install conf-gmp           5
| - install conf-gmp-paths     1
| - install conf-mpfr-paths    1
| - install conf-perl          2
| - install conf-pkg-config    4
| - install conf-ppl           1
| - install csexp              1.5.2
| - install dune               3.20.2
| - install dune-configurator  3.20.2
| - install ez-conf-lib        2
| - install menhir             20250912
| - install menhirCST          20250912
| - install menhirLib          20250912
| - install menhirSdk          20250912
| - install num                1.6
| - install ocaml-syntax-shims 1.0.0
| - install ocamlbuild         0.16.1
| - install ocamlfind          1.9.8
| - install yojson             3.0.0
| - install zarith             1.14
+- 

<><> conf-mpfr-paths.1 installed successfully <><><><><><><><><><><><><><><><><>
=> header file found in /usr/include
=> library file found in /usr/lib/i386-linux-gnu

<><> conf-gmp-paths.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> header file found in /usr/include/i386-linux-gnu
=> library file found in /usr/lib/i386-linux-gnu
# 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/4.14/.opam-switch/backup/state-20250918145806.export"
[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.
opam-repo-ci detected dependencies failing:  mlgmpidl.1.3.0
"/usr/bin/linux32" "/bin/sh" "-c" "opam reinstall jasmin.2025.06.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 "\"debian-13\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'jasmin.2025.06.1' && 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-09-18 14:59.47: Job failed: Failed: Build failed
2025-09-18 14:59.47: Log analysis:
2025-09-18 14:59.47: >>> 
[ERROR] The compilation of mlgmpidl.1.3.0 failed at "make".
 (score = 20)
2025-09-18 14:59.47: >>> 
# mpz_caml.c:2271:26: error: passing argument 2 of '__gmpz_export' from incompatible pointer type [-Wincompatible-pointer-types]
 (score = 30)
2025-09-18 14:59.47: >>> 
opam-repo-ci detected dependencies failing:  mlgmpidl.1.3.0
 (score = 75)
2025-09-18 14:59.47:  mlgmpidl.1.3.0 failed to build