Build:
  1. 0
2026-01-12 13:20.41: New job: test diffast-core.0.1 with menhirSdk.20260112, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29211/head (81910e3197c4be3888deecd1ddc6421adfe9f560)
                              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/29211/head" && git reset --hard 81910e31
git fetch origin master
git merge --no-edit 2bf2bf6ea0c8867eede5e26c1c591999dd5a9ee1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
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 menhirSdk.20260112 20260112
RUN opam reinstall menhirSdk.20260112; \
    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" != 'menhirSdk.20260112' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall diffast-core.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'diffast-core.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test diffast-core.0.1) || true
RUN opam reinstall --with-test --verbose diffast-core.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'diffast-core.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-01-12 13:20.41: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa-menhirSdk.20260112-diffast-core.0.1-81910e3197c4be3888deecd1ddc6421adfe9f560"
2026-01-12 13:20.41: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
 (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 menhirSdk.20260112 20260112"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall menhirSdk.20260112;\
             \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\" != 'menhirSdk.20260112' && 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 diffast-core.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'diffast-core.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test diffast-core.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose diffast-core.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'diffast-core.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-12 13:20.41: Connecting to build cluster…
2026-01-12 13:20.41: Waiting for resource in pool OCluster
2026-01-13 00:16.32: Waiting for worker…
2026-01-13 00:23.12: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  87% (16760/19194)
Updating files:  88% (16891/19194)
Updating files:  89% (17083/19194)
Updating files:  90% (17275/19194)
Updating files:  91% (17467/19194)
Updating files:  92% (17659/19194)
Updating files:  93% (17851/19194)
Updating files:  94% (18043/19194)
Updating files:  95% (18235/19194)
Updating files:  96% (18427/19194)
Updating files:  97% (18619/19194)
Updating files:  98% (18811/19194)
Updating files:  99% (19003/19194)
Updating files: 100% (19194/19194)
Updating files: 100% (19194/19194), done.
HEAD is now at 2bf2bf6ea0 Merge pull request #29204 from jserot/opam-publish-rfsm.2.3
Updating 2bf2bf6ea0..81910e3197
Fast-forward
 packages/menhir/menhir.20260112/opam       | 32 ++++++++++++++++++++++++++++++
 packages/menhirCST/menhirCST.20260112/opam | 30 ++++++++++++++++++++++++++++
 packages/menhirGLR/menhirGLR.20260112/opam | 30 ++++++++++++++++++++++++++++
 packages/menhirLib/menhirLib.20260112/opam | 31 +++++++++++++++++++++++++++++
 packages/menhirSdk/menhirSdk.20260112/opam | 31 +++++++++++++++++++++++++++++
 5 files changed, 154 insertions(+)
 create mode 100644 packages/menhir/menhir.20260112/opam
 create mode 100644 packages/menhirCST/menhirCST.20260112/opam
 create mode 100644 packages/menhirGLR/menhirGLR.20260112/opam
 create mode 100644 packages/menhirLib/menhirLib.20260112/opam
 create mode 100644 packages/menhirSdk/menhirSdk.20260112/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa' locally
docker.io/ocaml/opam@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa: Pulling from ocaml/opam
281b80c799de: Already exists
ce76feb86791: Already exists
7984eb0e5b45: Already exists
56c452a960b1: Already exists
b85825bef00a: Already exists
d6ff43dfb85c: Pulling fs layer
4197ec645389: Pulling fs layer
37cac33e41ff: Pulling fs layer
4cb993fb248e: Pulling fs layer
ca442870f91f: Pulling fs layer
b1d1a2fb5f4a: Pulling fs layer
0dea577b2801: Pulling fs layer
cc10daaea4fd: Pulling fs layer
37cac33e41ff: Download complete
5f878cb1723a: Pulling fs layer
8968959fa983: Pulling fs layer
4197ec645389: Download complete
b1d1a2fb5f4a: Download complete
5bdd9b9ed0e3: Pulling fs layer
4cb993fb248e: Download complete
ca442870f91f: Download complete
55661c5b388f: Pulling fs layer
cc10daaea4fd: Download complete
0dea577b2801: Download complete
92d1dc6907bd: Pulling fs layer
8968959fa983: Download complete
5f878cb1723a: Download complete
5bdd9b9ed0e3: Download complete
7100b414728b: Pulling fs layer
55661c5b388f: Download complete
92d1dc6907bd: Download complete
a6a54ddc9818: Pulling fs layer
a920ad627810: Pulling fs layer
7100b414728b: Download complete
4f4fb700ef54: Pulling fs layer
a6a54ddc9818: Download complete
a920ad627810: Download complete
f7df7b6e19c0: Pulling fs layer
cd713d66718c: Pulling fs layer
4f4fb700ef54: Download complete
6ed45ab2af86: Pulling fs layer
f7df7b6e19c0: Download complete
40598b80a8fe: Pulling fs layer
cd713d66718c: Download complete
6ed45ab2af86: Download complete
983f7969ff00: Pulling fs layer
40ec09ee09bd: Pulling fs layer
40598b80a8fe: Download complete
76a0afa38cd9: Pulling fs layer
983f7969ff00: Download complete
1d5a564d139a: Pulling fs layer
40ec09ee09bd: Download complete
82883b85a4f0: Pulling fs layer
76a0afa38cd9: Download complete
1d8458efd73b: Pulling fs layer
1d5a564d139a: Download complete
82883b85a4f0: Download complete
2d80a9fac9ac: Pulling fs layer
1d8458efd73b: Download complete
4d69ee6ae94b: Pulling fs layer
2d80a9fac9ac: Download complete
ce8d28b713f1: Pulling fs layer
97580d938033: Pulling fs layer
4d69ee6ae94b: Download complete
da5fa40e04f8: Pulling fs layer
ce8d28b713f1: Download complete
d7a499968f64: Pulling fs layer
97580d938033: Download complete
28e5932c7c69: Pulling fs layer
da5fa40e04f8: Download complete
d7a499968f64: Download complete
81389c423fc3: Pulling fs layer
28e5932c7c69: Download complete
fd0f9d83fc4c: Pulling fs layer
81389c423fc3: Download complete
a1ba3ff55715: Pulling fs layer
8a64be1e983f: Pulling fs layer
f7b330997686: Pulling fs layer
8a64be1e983f: Waiting
f7b330997686: Waiting
a1ba3ff55715: Verifying Checksum
a1ba3ff55715: Download complete
d6ff43dfb85c: Pull complete
4197ec645389: Pull complete
8a64be1e983f: Download complete
37cac33e41ff: Pull complete
f7b330997686: Verifying Checksum
f7b330997686: Download complete
4cb993fb248e: Pull complete
ca442870f91f: Pull complete
b1d1a2fb5f4a: Pull complete
fd0f9d83fc4c: Verifying Checksum
fd0f9d83fc4c: Download complete
0dea577b2801: Pull complete
cc10daaea4fd: Pull complete
5f878cb1723a: Pull complete
8968959fa983: Pull complete
5bdd9b9ed0e3: Pull complete
55661c5b388f: Pull complete
92d1dc6907bd: Pull complete
7100b414728b: Pull complete
a6a54ddc9818: Pull complete
a920ad627810: Pull complete
4f4fb700ef54: Pull complete
f7df7b6e19c0: Pull complete
cd713d66718c: Pull complete
6ed45ab2af86: Pull complete
40598b80a8fe: Pull complete
983f7969ff00: Pull complete
40ec09ee09bd: Pull complete
76a0afa38cd9: Pull complete
1d5a564d139a: Pull complete
82883b85a4f0: Pull complete
1d8458efd73b: Pull complete
2d80a9fac9ac: Pull complete
4d69ee6ae94b: Pull complete
ce8d28b713f1: Pull complete
97580d938033: Pull complete
da5fa40e04f8: Pull complete
d7a499968f64: Pull complete
28e5932c7c69: Pull complete
81389c423fc3: Pull complete
fd0f9d83fc4c: Pull complete
a1ba3ff55715: Pull complete
8a64be1e983f: Pull complete
f7b330997686: Pull complete
Digest: sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
Status: Downloaded newer image for ocaml/opam@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
2026-01-13 00:23.18 ---> using "2ecda48447fc68e8dcd256d2898af0a11126a077e05d747a0dcdff2845100de1" 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-01-13 00:23.18 ---> using "79eb1218297339daa5e94be48ad16ae73f417b872defa106efeff5b5f3323e6e" 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-01-13 00:23.18 ---> using "bf81485066c79fc9faf7a51b95869ba9d998fe2bf3de5ff7f59b253fc915122f" 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.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
2026-01-13 00:23.18 ---> using "f7c0c02658daf7a6d6c7671a8028e0e553264100bd569724894645b7844f6d7f" 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-01-13 00:23.18 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 00:23.20 ---> using "f21b94edc635fd18e833401d1c2964a478a796c286b6d0d8471b87143e8eab45" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 00:23.20 ---> using "5d4cb0cac19fc738b78eccd2a80b3a2363dfcc70f15431320c37eca094333e7f" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [94.5 kB]
- Fetched 9996 kB in 1s (7167 kB/s)
- Reading package lists...
- 
2026-01-13 00:23.20 ---> using "bfbdab6b47a21b3e7c6a215ac0d9f049043dce0e1176027ecbcabd9e59bdce6b" from cache

/home/opam: (run (shell "opam pin add -k version -yn menhirSdk.20260112 20260112"))
menhirSdk is now pinned to version 20260112
2026-01-13 00:23.20 ---> using "2b4b055705d982835f457a3ecbf2510c3666205a149fa35ade0645a129261ad6" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2  (cached)
-> retrieved menhirSdk.20260112  (cached)
-> installed dune.3.20.2
-> installed menhirSdk.20260112
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 00:23.20 ---> using "7afadd1b1035bb5976b3384c280a17200877de2586eb7bea7f0910f054bd63f9" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall diffast-core.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'diffast-core.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
diffast-core.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 42 packages
  - install base-bytes          base     [required by csv]
  - install base64              3.5.2    [required by diffast-core]
  - install bytesrw             0.3.0    [required by diffast-misc]
  - install camlp-streams       5.0.1    [required by diffast-core]
  - install conf-gmp            5        [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec   4        [required by cryptokit]
  - install conf-pkg-config     4        [required by bytesrw]
  - install conf-zlib           1        [required by bytesrw, cryptokit]
  - install cppo                1.8.0    [required by vlt]
  - install cryptokit           1.21.1   [required by diffast-misc]
  - install csexp               1.5.2    [required by dune-private-libs]
  - install csv                 2.4      [required by diffast-core]
  - install diffast-core        0.1
  - install diffast-misc        0.1      [required by diffast-core]
  - install dune-configurator   3.20.2   [required by cryptokit]
  - install dune-private-libs   3.20.2   [required by dune-site]
  - install dune-site           3.20.2   [required by diffast-core]
  - install dyn                 3.20.2   [required by dune-private-libs]
  - install gen                 1.1      [required by sedlex]
  - install markup              1.0.3    [required by diffast-misc]
  - install menhir              20260112 [required by diffast-core]
  - install menhirCST           20260112 [required by menhir]
  - install menhirGLR           20260112 [required by menhir]
  - install menhirLib           20260112 [required by menhir]
  - install ocaml-compiler-libs v0.12.4  [required by ppxlib]
  - install ocamlbuild          0.16.1   [required by uuidm]
  - install ocamlfind           1.9.8    [required by uuidm]
  - install ordering            3.20.2   [required by dyn, stdune]
  - install pp                  2.0.0    [required by dune-private-libs]
  - install ppx_derivers        1.2.1    [required by ppxlib]
  - install ppxlib              0.37.0   [required by sedlex]
  - install sedlex              3.7      [required by diffast-core]
  - install seq                 base     [required by gen]
  - install sexplib0            v0.17.0  [required by ppxlib]
  - install stdlib-shims        0.3.0    [required by ppxlib]
  - install stdune              3.20.2   [required by dune-private-libs]
  - install topkg               1.1.1    [required by uuidm]
  - install uchar               0.0.2    [required by markup]
  - install uuidm               0.9.10   [required by diffast-core]
  - install uutf                1.0.4    [required by markup]
  - install vlt                 0.2.5    [required by diffast-core]
  - install zarith              1.14     [required by cryptokit]

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"
- 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 ... 20622 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 libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../6-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- 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 zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2  (cached)
-> retrieved bytesrw.0.3.0  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved cryptokit.1.21.1  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> retrieved csv.2.4  (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-zlib.1
-> installed base64.3.5.2
-> retrieved diffast-core.0.1, diffast-misc.0.1  (cached)
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.20.2, dune-private-libs.3.20.2, dune-site.3.20.2, dyn.3.20.2, ordering.3.20.2, stdune.3.20.2  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved markup.1.0.3  (cached)
-> retrieved menhir.20260112, menhirCST.20260112, menhirGLR.20260112, menhirLib.20260112  (cached)
-> installed ordering.3.20.2
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed menhirCST.20260112
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0  (cached)
-> installed dune-configurator.3.20.2
-> installed menhirGLR.20260112
-> installed menhirLib.20260112
-> installed pp.2.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uchar.0.0.2  (cached)
-> retrieved uuidm.0.9.10  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved vlt.0.2.5  (cached)
-> installed stdlib-shims.0.3.0
-> retrieved zarith.1.14  (cached)
-> installed sexplib0.v0.17.0
-> installed gen.1.1
-> installed dyn.3.20.2
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed uchar.0.0.2
-> installed csv.2.4
-> installed zarith.1.14
-> installed stdune.3.20.2
-> installed menhir.20260112
-> installed topkg.1.1.1
-> installed uuidm.0.9.10
-> installed uutf.1.0.4
-> installed cryptokit.1.21.1
-> installed dune-private-libs.3.20.2
-> installed bytesrw.0.3.0
-> installed markup.1.0.3
-> installed dune-site.3.20.2
-> installed ppxlib.0.37.0
-> installed vlt.0.2.5
-> installed sedlex.3.7
-> installed diffast-misc.0.1
-> installed diffast-core.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 00:30.02 ---> saved as "8cc015a26d3faaede6b9852d7224a2581093b2ac31c8b651d4b3acc1cdb10b59"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved diffast-core.0.1  (https://opam.ocaml.org/cache)
-> removed   diffast-core.0.1
-> installed diffast-core.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 00:33.32 ---> saved as "66f9e76d1e9ced4a55f2dfd749307692c46f382d26aa37d786258f9b883a08d5"

/home/opam: (run (shell  "opam reinstall --with-test --verbose diffast-core.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"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\" != 'diffast-core.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile diffast-core 0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [diffast-core.0.1: extract]
-> retrieved diffast-core.0.1  (cached)
Processing  2/4: [diffast-core: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "diffast-core" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/diffast-core.0.1)
Processing  2/4: [diffast-core: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "diffast-core" "--create-install-files" "diffast-core" (CWD=/home/opam/.opam/4.14/.opam-switch/build/diffast-core.0.1)
-> compiled  diffast-core.0.1
-> removed   diffast-core.0.1
-> installed diffast-core.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 00:39.25 ---> saved as "acb4017f861b5ff21d3c7c54d88ba2722f7623c5d7dc5e8db47fe3e8cf0a2a89"
Job succeeded
2026-01-13 00:39.40: Job succeeded