(not at the head of any monitored branch or PR)
2026-04-10 07:32.42: New job: test jasmin.2023.06.2 with camlidl.1.13-1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29653/head (b9d7118cf3faa156fd1d38b7ca78f7c13edaaaad)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29653/head" && git reset --hard b9d7118c
git fetch origin master
git merge --no-edit 89ac3ba6f35eff1809bbb75e061fb0eb1090d8ec
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 camlidl.1.13-1 1.13-1
RUN opam reinstall camlidl.1.13-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" != 'camlidl.1.13-1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall jasmin.2023.06.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'jasmin.2023.06.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 jasmin.2023.06.2) || true
RUN opam reinstall --with-test --verbose jasmin.2023.06.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'jasmin.2023.06.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 .

2026-04-10 07:32.42: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-camlidl.1.13-1-jasmin.2023.06.2-b9d7118cf3faa156fd1d38b7ca78f7c13edaaaad"
2026-04-10 07:32.42: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (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 camlidl.1.13-1 1.13-1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall camlidl.1.13-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\" != 'camlidl.1.13-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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall jasmin.2023.06.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 \"\\\"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.2023.06.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 jasmin.2023.06.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose jasmin.2023.06.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 \"\\\"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.2023.06.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-10 07:32.42: Waiting for resource in pool OCluster
2026-04-10 07:32.42: Waiting for worker…
2026-04-10 07:32.44: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 89ac3ba6f3 Merge pull request #29692 from mseri/js_of_Ocam
Merge made by the 'ort' strategy.
 packages/camlidl/camlidl.1.13-1/opam | 46 ++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 packages/camlidl/camlidl.1.13-1/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-10 07:33.21 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-10 07:33.21 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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
2026-04-10 07:33.21 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 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                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, 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.3
2026-04-10 07:33.21 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-10 07:33.21 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-10 07:33.22 ---> using "26c366327b7928d02ad2d6c52cd154ad06208002f9a39ad1c7b95961656a85d3" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-10 07:33.48 ---> saved as "2bbb99d3d4a53f857ec1d3233862c94783726d96bc1bbe2fccde0be3476019f1"

/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 amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1516 kB/s)
- Reading package lists...
- 
2026-04-10 07:33.51 ---> saved as "091add1ea9fb2bdf0545a611c1eef04d4a0d9f50a5c04b9db69874cb2a9a0346"

/home/opam: (run (shell "opam pin add -k version -yn camlidl.1.13-1 1.13-1"))
camlidl is now pinned to version 1.13-1
2026-04-10 07:33.52 ---> saved as "cd2f821ab6091fb9863eca771c6a9fea291c2fc9f65c543dcdc08ad3bbbea697"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlidl.1.13-1  (cached)
-> installed camlidl.1.13-1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 07:33.59 ---> saved as "f19a7a5aa9ad82af08f1486d31e6558f76fdf60984cf3887d99b189651f2635c"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall jasmin.2023.06.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 \"\\\"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.2023.06.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
jasmin.2023.06.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 26 packages
  - install apron           v0.9.15   [required by jasmin]
  - install batteries       3.10.0    [required by jasmin]
  - install bigarray-compat 1.1.0     [required by mlgmpidl]
  - install camlp-streams   5.0.1     [required by batteries]
  - install cmdliner        2.1.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 dune            3.22.1    [required by jasmin]
  - install ez-conf-lib     2         [required by conf-gmp-paths, conf-mpfr-paths]
  - install jasmin          2023.06.2
  - install menhir          20260209  [required by jasmin]
  - install menhirCST       20260209  [required by menhir]
  - install menhirGLR       20260209  [required by menhir]
  - install menhirLib       20260209  [required by jasmin]
  - install menhirSdk       20260209  [required by menhir]
  - install mlgmpidl        1.3.0     [required by apron]
  - install num             1.6       [required by batteries]
  - 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:amd64.
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libmpfr-dev:amd64.
- Preparing to unpack .../2-libmpfr-dev_4.2.2-1_amd64.deb ...
- Unpacking libmpfr-dev:amd64 (4.2.2-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../3-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libppl14:amd64.
- Preparing to unpack .../4-libppl14_1%3a1.2-8.1+b3_amd64.deb ...
- Unpacking libppl14:amd64 (1:1.2-8.1+b3) ...
- Selecting previously unselected package libppl-c4:amd64.
- Preparing to unpack .../5-libppl-c4_1%3a1.2-8.1+b3_amd64.deb ...
- Unpacking libppl-c4:amd64 (1:1.2-8.1+b3) ...
- Selecting previously unselected package libppl-dev:amd64.
- Preparing to unpack .../6-libppl-dev_1%3a1.2-8.1+b3_amd64.deb ...
- Unpacking libppl-dev:amd64 (1:1.2-8.1+b3) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libppl14:amd64 (1:1.2-8.1+b3) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libmpfr-dev:amd64 (4.2.2-1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libppl-c4:amd64 (1:1.2-8.1+b3) ...
- Setting up libppl-dev:amd64 (1:1.2-8.1+b3) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved apron.v0.9.15  (cached)
-> retrieved batteries.3.10.0  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-paths.1  (cached)
-> retrieved conf-mpfr-paths.1  (cached)
-> retrieved conf-ppl.1  (cached)
-> installed conf-findutils.1
-> installed conf-gmp.5
-> installed conf-perl.2
-> installed conf-pkg-config.4
-> installed conf-ppl.1
-> retrieved dune.3.22.1  (cached)
-> retrieved ez-conf-lib.2  (cached)
-> installed ez-conf-lib.2
-> retrieved jasmin.2023.06.2  (cached)
-> installed conf-gmp-paths.1
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved mlgmpidl.1.3.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed cmdliner.2.1.0
-> installed conf-mpfr-paths.1
-> 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.22.1
-> installed bigarray-compat.1.1.0
-> installed camlp-streams.5.0.1
-> installed menhirCST.20260209
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> installed yojson.3.0.0
-> installed mlgmpidl.1.3.0
-> installed batteries.3.10.0
-> installed menhir.20260209
-> installed apron.v0.9.15
-> installed jasmin.2023.06.2
Done.

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

<><> conf-gmp-paths.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> header file found in /usr/include/x86_64-linux-gnu
=> library file found in /usr/lib/x86_64-linux-gnu
# To update the current shell environment, run: eval $(opam env)
2026-04-10 07:38.12 ---> saved as "f03aa58bfa659db78f7bd91e4d997745cee6da61d1f0e913f68a5944f17c3949"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved jasmin.2023.06.2  (https://opam.ocaml.org/cache)
-> removed   jasmin.2023.06.2
-> installed jasmin.2023.06.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 07:38.27 ---> saved as "fb556c28a48fd03044d970b81fa99ad93675ec663ec24850eebaee4761e83cbf"

/home/opam: (run (shell  "opam reinstall --with-test --verbose jasmin.2023.06.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 \"\\\"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.2023.06.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 jasmin 2023.06.2

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [jasmin.2023.06.2: extract]
-> retrieved jasmin.2023.06.2  (cached)
Processing  2/4: [jasmin: make compiler]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "compiler" "build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/jasmin.2023.06.2)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/jasmin.2023.06.2/compiler'
- rm -f jasminc jazz2tex
- dune build entry/jasminc.exe
- dune build entry/jazz2tex.exe
- ln -sf "_build/default/entry/jasminc.exe" jasminc
- ln -sf "_build/default/entry/jazz2tex.exe" jazz2tex
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/jasmin.2023.06.2/compiler'
-> compiled  jasmin.2023.06.2
-> removed   jasmin.2023.06.2
Processing  4/4: [jasmin: mkdir]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "mkdir" "-p" "/home/opam/.opam/4.14/bin" (CWD=/home/opam/.opam/4.14/.opam-switch/build/jasmin.2023.06.2)
Processing  4/4: [jasmin: cp]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "cp" "compiler/_build/default/entry/jasminc.exe" "/home/opam/.opam/4.14/bin/jasminc" (CWD=/home/opam/.opam/4.14/.opam-switch/build/jasmin.2023.06.2)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "cp" "compiler/_build/default/entry/jazz2tex.exe" "/home/opam/.opam/4.14/bin/jazz2tex" (CWD=/home/opam/.opam/4.14/.opam-switch/build/jasmin.2023.06.2)
Processing  4/4: [jasmin: mkdir]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "mkdir" "-p" "/home/opam/.opam/4.14/lib/jasmin/easycrypt" (CWD=/home/opam/.opam/4.14/.opam-switch/build/jasmin.2023.06.2)
Processing  4/4: [jasmin: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "sh" "-c" "cp eclib/*.ec \"/home/opam/.opam/4.14/lib/jasmin/easycrypt/\"" (CWD=/home/opam/.opam/4.14/.opam-switch/build/jasmin.2023.06.2)
-> installed jasmin.2023.06.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-10 07:38.41 ---> saved as "4689888875893a031ee4a8fdfd01c0245b2fe3ebec988be2239920ba3921ac7f"
Job succeeded
2026-04-10 07:38.46: Job succeeded