(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 archlinux-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:archlinux-ocaml-4.14@sha256:a174ef305e2610f38b393c09b86be0598f4d62f8b5e4eb2dac62c54f0c18f927
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 "\"archlinux\""; 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 "\"archlinux\""; 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:archlinux-ocaml-4.14@sha256:a174ef305e2610f38b393c09b86be0598f4d62f8b5e4eb2dac62c54f0c18f927-mazeppa.0.7.0-82718aa4d0314edf474f766eab06cd08356de60a"
2025-11-22 12:50.33: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:a174ef305e2610f38b393c09b86be0598f4d62f8b5e4eb2dac62c54f0c18f927)
 (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 \"\\\"archlinux\\\"\"; 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 \"\\\"archlinux\\\"\"; 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:archlinux-ocaml-4.14@sha256:a174ef305e2610f38b393c09b86be0598f4d62f8b5e4eb2dac62c54f0c18f927)
Unable to find image 'ocaml/opam:archlinux-ocaml-4.14@sha256:a174ef305e2610f38b393c09b86be0598f4d62f8b5e4eb2dac62c54f0c18f927' locally
docker.io/ocaml/opam@sha256:a174ef305e2610f38b393c09b86be0598f4d62f8b5e4eb2dac62c54f0c18f927: Pulling from ocaml/opam
a59b1e251b85: Already exists
849b0775ea0f: Already exists
9d20c098ec76: Already exists
06eb9f7865f2: Already exists
c240908bead2: Already exists
1ecf1bb05538: Already exists
ed893cc754b7: Already exists
edacf2579914: Already exists
05c577939763: Already exists
583b51fbf299: Already exists
93941e83ef11: Already exists
c16c3d773579: Already exists
5f811b21fff9: Already exists
5f811b21fff9: Already exists
4f4fb700ef54: Already exists
079b0e47ce4f: Already exists
ce2e84e72d72: Already exists
10b521b79bd6: Already exists
3e10dc4113ce: Already exists
b2e520c76c52: Already exists
740d688cb1be: Already exists
14fb4d790872: Already exists
7741c41d6787: Already exists
2e2b91596327: Already exists
6d301563c4ef: Already exists
78423a7a0169: Already exists
d41865134301: Already exists
bfd3a4affd37: Already exists
4e4e6c768da4: Already exists
fb0b33a736f3: Already exists
b3b704dc3ba3: Already exists
c536b8b79ec5: Already exists
324175cbd0cb: Already exists
c3eeb7d91d5a: Pulling fs layer
ab5508a4201c: Pulling fs layer
2ebf58dbc0eb: Pulling fs layer
c3eeb7d91d5a: Waiting
ab5508a4201c: Waiting
3c1ef89afb0b: Pulling fs layer
2ebf58dbc0eb: Waiting
3c1ef89afb0b: Waiting
ab5508a4201c: Verifying Checksum
ab5508a4201c: Download complete
2ebf58dbc0eb: Download complete
3c1ef89afb0b: Download complete
c3eeb7d91d5a: Verifying Checksum
c3eeb7d91d5a: Download complete
c3eeb7d91d5a: Pull complete
ab5508a4201c: Pull complete
2ebf58dbc0eb: Pull complete
3c1ef89afb0b: Pull complete
Digest: sha256:a174ef305e2610f38b393c09b86be0598f4d62f8b5e4eb2dac62c54f0c18f927
Status: Downloaded newer image for ocaml/opam@sha256:a174ef305e2610f38b393c09b86be0598f4d62f8b5e4eb2dac62c54f0c18f927
2025-11-22 12:54.09 ---> saved as "090c97830be215c43351a7fad440cdae545c8ea3e17a0eed27c6a3040bc5b896"

/: (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.10 ---> saved as "6f4e4397a4484fba7e135c2d741ad3b35d3c67041dae41c025508b092769f9d6"

/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:54.34 ---> saved as "c1dba5131d892a2d72414e54826bc3f05ed2e393b4877cb5611bb927911e391a"

/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~beta1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=arch os-version=20251019.0.436919
# 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:54.35 ---> saved as "a274a19bc5673cefc429723e704e972a1c99813cc60fce4a34dfa4612eeac171"

/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:54.45 ---> saved as "acad22e44f054d7705dbefe9eea97ab505a18bb96c1fc73a970e4502f3a94496"

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-22 12:54.56 ---> saved as "2db7b213d07da87fd4b0190a92282f2ca35179f5b169adc52242c39a83c5d5a5"

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
-  core downloading...
-  extra downloading...
2025-11-22 12:55.16 ---> saved as "ad64f9925225865d9869eaa94b5f1f841c1e4b12ab39f56395caf6bcfb2e45de"

/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.17 ---> saved as "b781f726c85ceee7a7ddcbb7d40b3eccfffdee4a672f702bea6e36d0f2064c31"

/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 \"\\\"archlinux\\\"\"; 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
  ∗ alcotest                 1.9.1          [required by mazeppa]
  ∗ astring                  0.8.5          [required by alcotest]
  ∗ base                     v0.16.4        [required by ppx_yojson_conv]
  ∗ bisect_ppx               2.8.3          [required by mazeppa]
  ∗ checked_oint             1.0.0          [required by mazeppa]
  ∗ clap                     0.3.0          [required by mazeppa]
  ∗ cmdliner                 1.3.0          [required by alcotest, bisect_ppx]
  ∗ color                    0.2.0          [required by spectrum]
  ∗ conf-libpcre             2              [required by pcre]
  ∗ conf-pkg-config          4              [required by conf-libpcre]
  ∗ cppo                     1.8.0          [required by ppx_deriving]
  ∗ csexp                    1.5.2          [required by dune-configurator]
  ∗ cstruct                  6.2.0          [required by hex]
  ∗ dune                     3.20.2         [required by mazeppa]
  ∗ dune-compiledb           0.6.0          [required by pcre]
  ∗ dune-configurator        3.20.2         [required by pcre]
  ∗ ezjsonm                  1.3.0          [required by dune-compiledb]
  ∗ fmt                      0.11.0         [required by alcotest]
  ∗ fpath                    0.7.3          [required by dune-compiledb]
  ∗ gen                      1.1            [required by sedlex]
  ∗ gg                       1.0.0          [required by color]
  ∗ hex                      1.5.0          [required by ezjsonm]
  ∗ jsonm                    1.0.2          [required by ezjsonm]
  ∗ mazeppa                  0.7.0 (pinned)
  ∗ menhir                   20250912       [required by mazeppa]
  ∗ menhirCST                20250912       [required by menhir]
  ∗ menhirLib                20250912       [required by menhir]
  ∗ menhirSdk                20250912       [required by menhir]
  ∗ num                      1.6            [required by sexplib]
  ∗ ocaml-compiler-libs      v0.12.4        [required by ppxlib]
  ∗ ocaml-syntax-shims       1.0.0          [required by alcotest]
  ∗ ocamlbuild               0.16.1         [required by fmt, astring, uutf]
  ∗ ocamlfind                1.9.8          [required by uutf, astring, fmt, ppx_deriving]
  ∗ ocamlgraph               2.2.0          [required by opam-core]
  ∗ octavius                 1.2.2          [required by ppx_js_style]
  ∗ opam-core                2.1.6          [required by opam-format]
  ∗ opam-file-format         2.2.0          [required by opam-format]
  ∗ opam-format              2.1.6          [required by opam-repository]
  ∗ opam-repository          2.1.6          [required by opam-state]
  ∗ opam-state               2.1.6          [required by spectrum]
  ∗ parsexp                  v0.16.0        [required by sexplib]
  ∗ pcre                     8.0.5          [required by spectrum]
  ∗ pprint                   20230830       [required by mazeppa]
  ∗ ppx_blob                 0.9.0          [required by mazeppa]
  ∗ ppx_derivers             1.2.1          [required by ppxlib, ppx_deriving]
  ∗ ppx_deriving             6.0.3          [required by mazeppa]
  ∗ ppx_enumerate            v0.16.0        [required by checked_oint]
  ∗ ppx_js_style             v0.16.0        [required by ppx_yojson_conv]
  ∗ ppx_string_interpolation 1.1.0          [required by mazeppa]
  ∗ ppx_yojson_conv          v0.16.0        [required by mazeppa]
  ∗ ppx_yojson_conv_lib      v0.16.0        [required by ppx_yojson_conv]
  ∗ ppxlib                   0.35.0         [required by ppx_string_interpolation, bisect_ppx, ppx_blob, ppx_yojson_conv]
  ∗ re                       1.14.0         [required by alcotest]
  ∗ sedlex                   3.7            [required by ppx_string_interpolation]
  ∗ seq                      base           [required by gen]
  ∗ sexplib                  v0.16.0        [required by dune-compiledb]
  ∗ sexplib0                 v0.16.0        [required by ppxlib]
  ∗ spectrum                 0.6.0          [required by mazeppa]
  ∗ stdlib-shims             0.3.0          [required by alcotest]
  ∗ topkg                    1.1.1          [required by fmt, astring, uutf]
  ∗ uutf                     1.0.4          [required by alcotest]
  ∗ yojson                   3.0.0          [required by ppx_yojson_conv_lib]

The following system packages will first need to be installed:
    pcre pkgconf

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
  2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "pcre" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
- 
- Package (23)                  Old Version                 New Version                  Net Change  Download Size
- 
- core/archlinux-keyring        20251027-3                  20251116-1                     0.00 MiB       1.19 MiB
- core/binutils                 2.45+r29+g2b2e51a31ec7-1    2.45.1-1                       0.01 MiB       7.80 MiB
- core/ca-certificates-mozilla  3.117-1                     3.118.1-1                     -0.02 MiB       0.39 MiB
- core/coreutils                9.8-2                       9.9-1                         10.42 MiB       2.78 MiB
- core/curl                     8.17.0-1                    8.17.0-2                       0.00 MiB       1.21 MiB
- core/e2fsprogs                1.47.3-1                    1.47.3-2                       0.00 MiB       1.24 MiB
- core/gcc                      15.2.1+r22+gc4e96a094636-1  15.2.1+r301+gf24307422d1d-1    0.31 MiB      54.08 MiB
- core/gcc-libs                 15.2.1+r22+gc4e96a094636-1  15.2.1+r301+gf24307422d1d-1    0.00 MiB      35.98 MiB
- extra/git                     2.51.2-2                    2.52.0-1                       0.37 MiB       6.82 MiB
- core/glib2                    2.86.1-1                    2.86.2-1                       0.00 MiB       4.93 MiB
- core/glibc                    2.42+r17+gd7274d718e6f-1    2.42+r33+gde1fe81f4714-1      -0.01 MiB      10.15 MiB
- core/iana-etc                 20251030-1                  20251114-1                     0.00 MiB       0.39 MiB
- core/icu                      76.1-1                      78.1-1                         1.47 MiB      11.71 MiB
- core/libarchive               3.8.2-1                     3.8.3-1                        0.00 MiB       0.55 MiB
- core/libxcrypt                4.5.0-1                     4.5.2-1                        0.00 MiB       0.09 MiB
- core/libxml2                  2.15.1-1                    2.15.1-4                       0.00 MiB       0.75 MiB
- core/linux-api-headers        6.16-2                      6.17-1                         0.05 MiB       1.46 MiB
- core/nano                     8.6-1                       8.7-1                          0.01 MiB       0.59 MiB
- core/systemd                  258.1-1                     258.2-2                        0.01 MiB       9.23 MiB
- core/systemd-libs             258.1-1                     258.2-2                        0.00 MiB       1.24 MiB
- core/systemd-sysvcompat       258.1-1                     258.2-2                        0.00 MiB       0.01 MiB
- core/pcre                                                 8.45-4                         3.50 MiB       0.98 MiB
- core/pkgconf                                              2.5.1-1                        0.20 MiB       0.07 MiB
- 
- Total Download Size:   153.62 MiB
- Total Installed Size:  657.69 MiB
- Net Upgrade Size:       16.33 MiB
- 
- :: Proceed with installation? [Y/n] 
- :: Retrieving packages...
-  gcc-15.2.1+r301+gf24307422d1d-1-x86_64 downloading...
-  gcc-libs-15.2.1+r301+gf24307422d1d-1-x86_64 downloading...
-  icu-78.1-1-x86_64 downloading...
-  glibc-2.42+r33+gde1fe81f4714-1-x86_64 downloading...
-  systemd-258.2-2-x86_64 downloading...
-  binutils-2.45.1-1-x86_64 downloading...
-  git-2.52.0-1-x86_64 downloading...
-  glib2-2.86.2-1-x86_64 downloading...
-  coreutils-9.9-1-x86_64 downloading...
-  linux-api-headers-6.17-1-x86_64 downloading...
-  systemd-libs-258.2-2-x86_64 downloading...
-  e2fsprogs-1.47.3-2-x86_64 downloading...
-  curl-8.17.0-2-x86_64 downloading...
-  archlinux-keyring-20251116-1-any downloading...
-  pcre-8.45-4-x86_64 downloading...
-  libxml2-2.15.1-4-x86_64 downloading...
-  nano-8.7-1-x86_64 downloading...
-  libarchive-3.8.3-1-x86_64 downloading...
-  iana-etc-20251114-1-any downloading...
-  ca-certificates-mozilla-3.118.1-1-x86_64 downloading...
-  libxcrypt-4.5.2-1-x86_64 downloading...
-  pkgconf-2.5.1-1-x86_64 downloading...
-  systemd-sysvcompat-258.2-2-x86_64 downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading linux-api-headers...
- upgrading iana-etc...
- upgrading glibc...
- Generating locales...
- Generation complete.
- upgrading gcc-libs...
- installing pcre...
- installing pkgconf...
- upgrading libxcrypt...
- upgrading systemd-libs...
- upgrading e2fsprogs...
- upgrading coreutils...
- upgrading ca-certificates-mozilla...
- upgrading curl...
- upgrading icu...
- upgrading libxml2...
- upgrading libarchive...
- upgrading systemd...
- upgrading glib2...
- upgrading archlinux-keyring...
- ==> ERROR: There is no secret key available to sign with.
- ==> Use 'pacman-key --init' to generate a default secret key.
- error: command failed to execute correctly
- upgrading binutils...
- upgrading gcc...
- upgrading git...
- upgrading nano...
- upgrading systemd-sysvcompat...
- :: Running post-transaction hooks...
- ( 1/12) Creating system user accounts...
- ( 2/12) Updating journal message catalog...
- ( 3/12) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
-   Skipped: Current root is not booted.
- ( 4/12) Reloading user manager configuration...
- Failed to check for chroot() environment: Permission denied
-   Skipped: Current root is not booted.
- ( 5/12) Updating udev hardware database...
- ( 6/12) Restarting marked services...
- Failed to check for chroot() environment: Permission denied
-   Skipped: Current root is not booted.
- ( 7/12) Applying kernel sysctl settings...
- Failed to check for chroot() environment: Permission denied
-   Skipped: Current root is not booted.
- ( 8/12) Creating temporary files...
- /usr/lib/tmpfiles.d/journal-nocow.conf:26: Failed to resolve specifier: uninitialized /etc/ detected, skipping.
- All rules containing unresolvable specifiers will be skipped.
- ( 9/12) Reloading device manager configuration...
- Failed to check for chroot() environment: Permission denied
-   Skipped: Current root is not booted.
- (10/12) Arming ConditionNeedsUpdate...
- (11/12) Rebuilding certificate stores...
- (12/12) Reloading system bus configuration...
- Failed to check for chroot() environment: Permission denied
-   Skipped: Current root is not booted.

<><> 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
⬇ retrieved cstruct.6.2.0  (cached)
∗ installed conf-libpcre.2
⬇ 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 jsonm.1.0.2
∗ installed gg.1.0.0
∗ installed fpath.0.7.3
∗ 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 yojson.3.0.0
∗ installed ocamlgraph.2.2.0
∗ installed hex.1.5.0
∗ installed ppx_yojson_conv_lib.v0.16.0
∗ installed ezjsonm.1.3.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 ppx_yojson_conv.v0.16.0
∗ installed checked_oint.1.0.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:56.37 ---> saved as "9bf7dd54c7d9eeb00e866bf772c9c2b817e0ca5fdb23990a619389afd2a061c1"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test mazeppa.0.7.0) || true"))
The following actions will be performed:
=== recompile 1 package
  ↻ 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:56.45 ---> saved as "522c1c8c5bf285f39706491e95252516534df616d1597128af3ef1f662bbd6fc"

/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 \"\\\"archlinux\\\"\"; 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
  ↻ 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 `8ACMRVLE'.
- 
-   [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.124s. 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:56.52 ---> saved as "1519f0464a755c7e30f3b447d1438c3f3dc8c2ff53d6fe5e86cab4dbf9bdafa5"
Job succeeded
2025-11-22 12:56.58: Job succeeded