(not at the head of any monitored branch or PR)
2025-11-22 12:50.33: New job: test mazeppa.0.7.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28949/head (82718aa4d0314edf474f766eab06cd08356de60a)
                              on debian-11-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/28949/head" && git reset --hard 82718aa4
git fetch origin master
git merge --no-edit ee3428377a13c3c9716b6f791c33441cfb542498
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-11-ocaml-4.14@sha256:7bffcc3ba0fd02980056568d6646a4e9de35cb38f7d8c56b5d78e0b57fd164a0
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 mazeppa.0.7.0 0.7.0
RUN opam reinstall mazeppa.0.7.0; \
    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-11\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mazeppa.0.7.0' && 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 mazeppa.0.7.0) || true
RUN opam reinstall --with-test --verbose mazeppa.0.7.0; \
    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-11\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mazeppa.0.7.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2025-11-22 12:50.33: Using cache hint "ocaml/opam:debian-11-ocaml-4.14@sha256:7bffcc3ba0fd02980056568d6646a4e9de35cb38f7d8c56b5d78e0b57fd164a0-mazeppa.0.7.0-82718aa4d0314edf474f766eab06cd08356de60a"
2025-11-22 12:50.33: Using OBuilder spec:
((from ocaml/opam:debian-11-ocaml-4.14@sha256:7bffcc3ba0fd02980056568d6646a4e9de35cb38f7d8c56b5d78e0b57fd164a0)
 (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 mazeppa.0.7.0 0.7.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall mazeppa.0.7.0;\
             \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-11\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'mazeppa.0.7.0' && 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 mazeppa.0.7.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose mazeppa.0.7.0;\
             \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-11\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'mazeppa.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-11-22 12:50.33: Waiting for resource in pool OCluster
2025-11-22 12:50.34: Waiting for worker…
2025-11-22 12:50.36: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at ee3428377a Merge pull request #28925 from edwintorok/rocky
Updating ee3428377a..82718aa4d0
Fast-forward
 packages/mazeppa/mazeppa.0.7.0/opam | 48 +++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 packages/mazeppa/mazeppa.0.7.0/opam

(from ocaml/opam:debian-11-ocaml-4.14@sha256:7bffcc3ba0fd02980056568d6646a4e9de35cb38f7d8c56b5d78e0b57fd164a0)
Unable to find image 'ocaml/opam:debian-11-ocaml-4.14@sha256:7bffcc3ba0fd02980056568d6646a4e9de35cb38f7d8c56b5d78e0b57fd164a0' locally
docker.io/ocaml/opam@sha256:7bffcc3ba0fd02980056568d6646a4e9de35cb38f7d8c56b5d78e0b57fd164a0: Pulling from ocaml/opam
10ffc47270cd: Pulling fs layer
fb7b830f9273: Pulling fs layer
db942f4be956: Pulling fs layer
19400b3dc631: Pulling fs layer
64f26db5ab23: Pulling fs layer
fb7b830f9273: Download complete
db942f4be956: Download complete
a1c9988984c5: Pulling fs layer
19400b3dc631: Download complete
64f26db5ab23: Download complete
08134c884d95: Pulling fs layer
d1ec0d1e3240: Pulling fs layer
90c2d895970e: Pulling fs layer
8a294d84df78: Pulling fs layer
08134c884d95: Download complete
d1ec0d1e3240: Download complete
53e49dc18b62: Pulling fs layer
90c2d895970e: Download complete
ed6ea05fd481: Pulling fs layer
8a294d84df78: Download complete
53e49dc18b62: Download complete
17371f125731: Pulling fs layer
3d160e85c6c6: Pulling fs layer
ed6ea05fd481: Download complete
17371f125731: Waiting
61ce1ac71611: Pulling fs layer
e84500fcc1c1: Pulling fs layer
bcea18a91a53: Pulling fs layer
fdc0d4722fb4: Pulling fs layer
61ce1ac71611: Waiting
3d160e85c6c6: Waiting
e84500fcc1c1: Waiting
bcea18a91a53: Waiting
6f6958135bde: Pulling fs layer
fdc0d4722fb4: Waiting
dfbbf0c6781a: Pulling fs layer
6f6958135bde: Waiting
434a6c33856d: Pulling fs layer
4f4fb700ef54: Pulling fs layer
dfbbf0c6781a: Waiting
b0e6f10fa166: Pulling fs layer
434a6c33856d: Waiting
8fcbf5d66f12: Pulling fs layer
4f4fb700ef54: Waiting
b0e6f10fa166: Waiting
d2cf4ff8199b: Pulling fs layer
2c358a573c1b: Pulling fs layer
8fcbf5d66f12: Waiting
d2cf4ff8199b: Waiting
dc436ad3c00e: Pulling fs layer
2c358a573c1b: Waiting
34d141d6d28b: Pulling fs layer
dc436ad3c00e: Waiting
8ac1bb77fbba: Pulling fs layer
34d141d6d28b: Waiting
abdcdd6d2cb0: Pulling fs layer
f85a0321d1a8: Pulling fs layer
8ac1bb77fbba: Waiting
abdcdd6d2cb0: Waiting
010e00c2825c: Pulling fs layer
5186f23c4361: Pulling fs layer
f85a0321d1a8: Waiting
099f1f64ca72: Pulling fs layer
c7e32cba45d7: Pulling fs layer
010e00c2825c: Waiting
f3c6018f02aa: Pulling fs layer
5186f23c4361: Waiting
099f1f64ca72: Waiting
c7e32cba45d7: Waiting
75da8a49b929: Pulling fs layer
b01e17816af1: Pulling fs layer
403392b3b6d9: Pulling fs layer
f3c6018f02aa: Waiting
c07ccaf50151: Pulling fs layer
75da8a49b929: Waiting
f7cc390f7953: Pulling fs layer
403392b3b6d9: Waiting
b01e17816af1: Waiting
c07ccaf50151: Waiting
3e5352b8aae9: Pulling fs layer
f7cc390f7953: Waiting
b54d546867a3: Pulling fs layer
3e5352b8aae9: Waiting
4730fc905870: Pulling fs layer
4730fc905870: Waiting
17371f125731: Verifying Checksum
17371f125731: Download complete
3d160e85c6c6: Verifying Checksum
3d160e85c6c6: Download complete
61ce1ac71611: Verifying Checksum
61ce1ac71611: Download complete
e84500fcc1c1: Verifying Checksum
e84500fcc1c1: Download complete
bcea18a91a53: Download complete
fdc0d4722fb4: Download complete
10ffc47270cd: Verifying Checksum
10ffc47270cd: Download complete
6f6958135bde: Verifying Checksum
6f6958135bde: Download complete
dfbbf0c6781a: Verifying Checksum
dfbbf0c6781a: Download complete
434a6c33856d: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
b0e6f10fa166: Verifying Checksum
b0e6f10fa166: Download complete
d2cf4ff8199b: Verifying Checksum
d2cf4ff8199b: Download complete
2c358a573c1b: Verifying Checksum
2c358a573c1b: Download complete
8fcbf5d66f12: Verifying Checksum
8fcbf5d66f12: Download complete
dc436ad3c00e: Verifying Checksum
dc436ad3c00e: Download complete
34d141d6d28b: Verifying Checksum
34d141d6d28b: Download complete
8ac1bb77fbba: Download complete
abdcdd6d2cb0: Verifying Checksum
abdcdd6d2cb0: Download complete
010e00c2825c: Download complete
f85a0321d1a8: Verifying Checksum
f85a0321d1a8: Download complete
5186f23c4361: Verifying Checksum
5186f23c4361: Download complete
099f1f64ca72: Download complete
f3c6018f02aa: Verifying Checksum
f3c6018f02aa: Download complete
10ffc47270cd: Pull complete
fb7b830f9273: Pull complete
db942f4be956: Pull complete
19400b3dc631: Pull complete
64f26db5ab23: Pull complete
75da8a49b929: Verifying Checksum
75da8a49b929: Download complete
a1c9988984c5: Verifying Checksum
a1c9988984c5: Download complete
b01e17816af1: Verifying Checksum
b01e17816af1: Download complete
403392b3b6d9: Download complete
c07ccaf50151: Download complete
a1c9988984c5: Pull complete
08134c884d95: Pull complete
d1ec0d1e3240: Pull complete
90c2d895970e: Pull complete
8a294d84df78: Pull complete
53e49dc18b62: Pull complete
ed6ea05fd481: Pull complete
17371f125731: Pull complete
3d160e85c6c6: Pull complete
61ce1ac71611: Pull complete
e84500fcc1c1: Pull complete
bcea18a91a53: Pull complete
fdc0d4722fb4: Pull complete
6f6958135bde: Pull complete
dfbbf0c6781a: Pull complete
434a6c33856d: Pull complete
4f4fb700ef54: Pull complete
b0e6f10fa166: Pull complete
8fcbf5d66f12: Pull complete
d2cf4ff8199b: Pull complete
2c358a573c1b: Pull complete
dc436ad3c00e: Pull complete
34d141d6d28b: Pull complete
8ac1bb77fbba: Pull complete
abdcdd6d2cb0: Pull complete
f85a0321d1a8: Pull complete
010e00c2825c: Pull complete
5186f23c4361: Pull complete
099f1f64ca72: Pull complete
c7e32cba45d7: Verifying Checksum
c7e32cba45d7: Download complete
3e5352b8aae9: Download complete
b54d546867a3: Verifying Checksum
b54d546867a3: Download complete
4730fc905870: Download complete
f7cc390f7953: Download complete
c7e32cba45d7: Pull complete
f3c6018f02aa: Pull complete
75da8a49b929: Pull complete
b01e17816af1: Pull complete
403392b3b6d9: Pull complete
c07ccaf50151: Pull complete
f7cc390f7953: Pull complete
3e5352b8aae9: Pull complete
b54d546867a3: Pull complete
4730fc905870: Pull complete
Digest: sha256:7bffcc3ba0fd02980056568d6646a4e9de35cb38f7d8c56b5d78e0b57fd164a0
Status: Downloaded newer image for ocaml/opam@sha256:7bffcc3ba0fd02980056568d6646a4e9de35cb38f7d8c56b5d78e0b57fd164a0
2025-11-22 12:54.49 ---> saved as "87bec96382efdc69070142af069b0b4ad66f4e1cfa550ad42c058b3ec8ccfd9a"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-22 12:54.49 ---> saved as "f2d657cf0f35cc8e8768a479bdaea5151a2ff672f45248142288ef8112e529ea"

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-22 12:55.15 ---> saved as "b0943e0df85c4fab0f29b6637dd3630c6bbaf68174fad2b2aaac44cfadb868a4"

/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_64 os=linux os-distribution=debian os-version=11
# 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
2025-11-22 12:55.16 ---> saved as "8b0e6990391f9598ed98da32a2c9be3282aa219a59f420b0fd2940a85cdd3cdd"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-11-22 12:55.26 ---> saved as "53f5db46fe620438f8be3d4a9706e8699ddff08fea24e5cd19789a1defe94d5c"

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-22 12:55.33 ---> saved as "8c72f894ee56d7a6d591f4981c09a131796b86dcb87e57cc4e81499db366a147"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-22 12:55.50 ---> saved as "be8cd07a7154012e2253891f0e959edbe90d3ec3fdbfed110ad35aa32d9fa74e"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bullseye InRelease
- Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [27.2 kB]
- Hit:3 http://deb.debian.org/debian bullseye-updates InRelease
- Get:4 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [424 kB]
- Fetched 451 kB in 0s (1023 kB/s)
- Reading package lists...
- 
2025-11-22 12:55.51 ---> saved as "92a55499306247497a6bddc4eb446f46a0e59b8a8589739f1043c84913bb6575"

/home/opam: (run (shell "opam pin add -k version -yn mazeppa.0.7.0 0.7.0"))
mazeppa is now pinned to version 0.7.0
2025-11-22 12:55.52 ---> saved as "fd35a6f8b24e09230aa5e3f3ebfac05451b48149f956476900d6beced8676cf0"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mazeppa.0.7.0;\
                        \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-11\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'mazeppa.0.7.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
mazeppa.0.7.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 62 packages
  - install alcotest                 1.9.1          [required by mazeppa]
  - install astring                  0.8.5          [required by alcotest]
  - install base                     v0.16.4        [required by ppx_yojson_conv]
  - install bisect_ppx               2.8.3          [required by mazeppa]
  - install checked_oint             1.0.0          [required by mazeppa]
  - install clap                     0.3.0          [required by mazeppa]
  - install cmdliner                 1.3.0          [required by alcotest, bisect_ppx]
  - install color                    0.2.0          [required by spectrum]
  - install conf-libpcre             2              [required by pcre]
  - install conf-pkg-config          4              [required by conf-libpcre]
  - install cppo                     1.8.0          [required by ppx_deriving]
  - install csexp                    1.5.2          [required by dune-configurator]
  - install cstruct                  6.2.0          [required by hex]
  - install dune                     3.20.2         [required by mazeppa]
  - install dune-compiledb           0.6.0          [required by pcre]
  - install dune-configurator        3.20.2         [required by pcre]
  - install ezjsonm                  1.3.0          [required by dune-compiledb]
  - install fmt                      0.11.0         [required by alcotest]
  - install fpath                    0.7.3          [required by dune-compiledb]
  - install gen                      1.1            [required by sedlex]
  - install gg                       1.0.0          [required by color]
  - install hex                      1.5.0          [required by ezjsonm]
  - install jsonm                    1.0.2          [required by ezjsonm]
  - install mazeppa                  0.7.0 (pinned)
  - install menhir                   20250912       [required by mazeppa]
  - install menhirCST                20250912       [required by menhir]
  - install menhirLib                20250912       [required by menhir]
  - install menhirSdk                20250912       [required by menhir]
  - install num                      1.6            [required by sexplib]
  - install ocaml-compiler-libs      v0.12.4        [required by ppxlib]
  - install ocaml-syntax-shims       1.0.0          [required by alcotest]
  - install ocamlbuild               0.16.1         [required by fmt, astring, uutf]
  - install ocamlfind                1.9.8          [required by uutf, astring, fmt, ppx_deriving]
  - install ocamlgraph               2.2.0          [required by opam-core]
  - install octavius                 1.2.2          [required by ppx_js_style]
  - install opam-core                2.1.6          [required by opam-format]
  - install opam-file-format         2.2.0          [required by opam-format]
  - install opam-format              2.1.6          [required by opam-repository]
  - install opam-repository          2.1.6          [required by opam-state]
  - install opam-state               2.1.6          [required by spectrum]
  - install parsexp                  v0.16.0        [required by sexplib]
  - install pcre                     8.0.5          [required by spectrum]
  - install pprint                   20230830       [required by mazeppa]
  - install ppx_blob                 0.9.0          [required by mazeppa]
  - install ppx_derivers             1.2.1          [required by ppxlib, ppx_deriving]
  - install ppx_deriving             6.0.3          [required by mazeppa]
  - install ppx_enumerate            v0.16.0        [required by checked_oint]
  - install ppx_js_style             v0.16.0        [required by ppx_yojson_conv]
  - install ppx_string_interpolation 1.1.0          [required by mazeppa]
  - install ppx_yojson_conv          v0.16.0        [required by mazeppa]
  - install ppx_yojson_conv_lib      v0.16.0        [required by ppx_yojson_conv]
  - install ppxlib                   0.35.0         [required by ppx_string_interpolation, bisect_ppx, ppx_blob, ppx_yojson_conv]
  - install re                       1.14.0         [required by alcotest]
  - install sedlex                   3.7            [required by ppx_string_interpolation]
  - install seq                      base           [required by gen]
  - install sexplib                  v0.16.0        [required by dune-compiledb]
  - install sexplib0                 v0.16.0        [required by ppxlib]
  - install spectrum                 0.6.0          [required by mazeppa]
  - install stdlib-shims             0.3.0          [required by alcotest]
  - install topkg                    1.1.1          [required by fmt, astring, uutf]
  - install uutf                     1.0.4          [required by alcotest]
  - install yojson                   3.0.0          [required by ppx_yojson_conv_lib]

The following system packages will first need to be installed:
    libpcre3-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" "libpcre3-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libglib2.0-0: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 ... 18342 files and directories currently installed.)
- Preparing to unpack .../00-libglib2.0-0_2.66.8-1+deb11u6_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.66.8-1+deb11u6) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../01-libglib2.0-data_2.66.8-1+deb11u6_all.deb ...
- Unpacking libglib2.0-data (2.66.8-1+deb11u6) ...
- Selecting previously unselected package libicu67:amd64.
- Preparing to unpack .../02-libicu67_67.1-7+deb11u1_amd64.deb ...
- Unpacking libicu67:amd64 (67.1-7+deb11u1) ...
- Selecting previously unselected package libpcre16-3:amd64.
- Preparing to unpack .../03-libpcre16-3_2%3a8.39-13_amd64.deb ...
- Unpacking libpcre16-3:amd64 (2:8.39-13) ...
- Selecting previously unselected package libpcre32-3:amd64.
- Preparing to unpack .../04-libpcre32-3_2%3a8.39-13_amd64.deb ...
- Unpacking libpcre32-3:amd64 (2:8.39-13) ...
- Selecting previously unselected package libpcrecpp0v5:amd64.
- Preparing to unpack .../05-libpcrecpp0v5_2%3a8.39-13_amd64.deb ...
- Unpacking libpcrecpp0v5:amd64 (2:8.39-13) ...
- Selecting previously unselected package libpcre3-dev:amd64.
- Preparing to unpack .../06-libpcre3-dev_2%3a8.39-13_amd64.deb ...
- Unpacking libpcre3-dev:amd64 (2:8.39-13) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../07-libxml2_2.9.10+dfsg-6.7+deb11u9_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u9) ...
- Selecting previously unselected package pkg-config.
- Preparing to unpack .../08-pkg-config_0.29.2-1_amd64.deb ...
- Unpacking pkg-config (0.29.2-1) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../09-shared-mime-info_2.0-1_amd64.deb ...
- Unpacking shared-mime-info (2.0-1) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../10-xdg-user-dirs_0.17-2_amd64.deb ...
- Unpacking xdg-user-dirs (0.17-2) ...
- Setting up libpcrecpp0v5:amd64 (2:8.39-13) ...
- Setting up libpcre16-3:amd64 (2:8.39-13) ...
- Setting up libicu67:amd64 (67.1-7+deb11u1) ...
- Setting up xdg-user-dirs (0.17-2) ...
- Setting up libglib2.0-0:amd64 (2.66.8-1+deb11u6) ...
- No schema files found: doing nothing.
- Setting up libglib2.0-data (2.66.8-1+deb11u6) ...
- Setting up libpcre32-3:amd64 (2:8.39-13) ...
- Setting up pkg-config (0.29.2-1) ...
- Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u9) ...
- Setting up libpcre3-dev:amd64 (2:8.39-13) ...
- Setting up shared-mime-info (2.0-1) ...
- Processing triggers for libc-bin (2.31-13+deb11u13) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved bisect_ppx.2.8.3  (cached)
-> retrieved checked_oint.1.0.0  (cached)
-> retrieved clap.0.3.0  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved color.0.2.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-libpcre.2
-> retrieved cstruct.6.2.0  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved gg.1.0.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> installed cmdliner.1.3.0
-> retrieved mazeppa.0.7.0  (https://github.com/hirrolot/mazeppa/releases/download/v0.7.0/mazeppa-0.7.0.tar.gz)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved opam-core.2.1.6, opam-format.2.1.6, opam-repository.2.1.6, opam-state.2.1.6  (cached)
-> retrieved opam-file-format.2.2.0  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved pcre.8.0.5  (cached)
-> retrieved pprint.20230830  (cached)
-> retrieved ppx_blob.0.9.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> retrieved ppx_js_style.v0.16.0  (cached)
-> retrieved ppx_string_interpolation.1.1.0  (cached)
-> retrieved ppx_yojson_conv.v0.16.0  (cached)
-> retrieved ppx_yojson_conv_lib.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved spectrum.0.6.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed jsonm.1.0.2
-> installed gg.1.0.0
-> installed dune.3.20.2
-> installed clap.0.3.0
-> installed color.0.2.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed cstruct.6.2.0
-> installed gen.1.1
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed octavius.1.2.2
-> installed pprint.20230830
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed ocamlgraph.2.2.0
-> installed yojson.3.0.0
-> installed hex.1.5.0
-> installed ezjsonm.1.3.0
-> installed ppx_yojson_conv_lib.v0.16.0
-> installed alcotest.1.9.1
-> installed parsexp.v0.16.0
-> installed dune-configurator.3.20.2
-> installed sexplib.v0.16.0
-> installed dune-compiledb.0.6.0
-> installed pcre.8.0.5
-> installed opam-core.2.1.6
-> installed base.v0.16.4
-> installed menhir.20250912
-> installed opam-file-format.2.2.0
-> installed ppxlib.0.35.0
-> installed ppx_blob.0.9.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_js_style.v0.16.0
-> installed bisect_ppx.2.8.3
-> installed ppx_deriving.6.0.3
-> installed sedlex.3.7
-> installed opam-format.2.1.6
-> installed checked_oint.1.0.0
-> installed ppx_yojson_conv.v0.16.0
-> installed ppx_string_interpolation.1.1.0
-> installed opam-repository.2.1.6
-> installed opam-state.2.1.6
-> installed spectrum.0.6.0
-> installed mazeppa.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-22 12:57.03 ---> saved as "1335b1bc0c26a41a5a2e2788a27ccff38a183aba5af15918d44e10453fc2453b"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   mazeppa.0.7.0
-> installed mazeppa.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-22 12:57.10 ---> saved as "87ba1f1ff08535f313a43388ef0926ead2a2b1f22c497e23b46ccfac06723f18"

/home/opam: (run (shell  "opam reinstall --with-test --verbose mazeppa.0.7.0;\
                        \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-11\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'mazeppa.0.7.0' && 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 mazeppa 0.7.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [mazeppa: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mazeppa" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mazeppa.0.7.0)
- (cd _build/default/test && ./test_mazeppa.exe)
- Testing `Mazeppa'.
- This run has ID `KLW87YNI'.
- 
-   [OK]          Print constants                     0   Tests.
-   [OK]          Term classification                 0   Tests.
-   [OK]          Term redex signatures               0   Tests.
-   [OK]          Term substitution                   0   Tests.
-   [OK]          Term instances                      0   Tests.
-   [OK]          Term renamings                      0   Tests.
-   [OK]          MSG                                 0   Tests.
-   [OK]          Homeomorphic embedding              0   Tests.
-   [OK]          Raw program errors                  0   Tests.
-   [OK]          Supercompilation                    0   Tests.
-   [OK]          Freshen variables                   0   Tests.
-   [OK]          Freshen variables in rules          0   Tests.
-   [OK]          Evaluation                          0   Tests.
-   [OK]          Evaluation errors                   0   Tests.
-   [OK]          Lazy evaluation                     0   Tests.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/mazeppa.0.7.0/_build/default/test/_build/_tests/Mazeppa'.
- Test Successful in 0.159s. 15 tests run.
-> compiled  mazeppa.0.7.0
-> removed   mazeppa.0.7.0
-> installed mazeppa.0.7.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-22 12:57.18 ---> saved as "72e050b2f599f2c8b603062254d97b15bf197215989ed9f7dfcd0cab634569bb"
Job succeeded
2025-11-22 12:57.26: Job succeeded