Build:
  1. 0
2026-04-19 13:13.01: New job: test ppx_mixins.0.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29746/head (b0dcf137e9a27881d944e3ac0360da3abb65f709)
                              on debian-13-ocaml-4.14-nnpchecker/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/29746/head" && git reset --hard b0dcf137
git fetch origin master
git merge --no-edit 29b1043ad6a55500530069ce844bbbf554eef87e
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:fde4b0aa882f73d5fd290e327fb16170eb931bbb7fd66ff3c2f5087fc135f386
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 ppx_mixins.0.2.0 0.2.0
RUN opam reinstall ppx_mixins.0.2.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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_mixins.0.2.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 ppx_mixins.0.2.0) || true
RUN opam reinstall --with-test --verbose ppx_mixins.0.2.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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppx_mixins.0.2.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 .

2026-04-19 13:13.01: Using cache hint "ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:fde4b0aa882f73d5fd290e327fb16170eb931bbb7fd66ff3c2f5087fc135f386-ppx_mixins.0.2.0-b0dcf137e9a27881d944e3ac0360da3abb65f709"
2026-04-19 13:13.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:fde4b0aa882f73d5fd290e327fb16170eb931bbb7fd66ff3c2f5087fc135f386)
 (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 ppx_mixins.0.2.0 0.2.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppx_mixins.0.2.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-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\" != 'ppx_mixins.0.2.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 ppx_mixins.0.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_mixins.0.2.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-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\" != 'ppx_mixins.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-19 13:13.01: Waiting for resource in pool OCluster
2026-04-19 13:13.02: Waiting for worker…
2026-04-19 13:13.03: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
HEAD is now at 29b1043ad6 Merge pull request #29741 from soteria-tools/release-ppx_mixins-v0.1
Updating 29b1043ad6..b0dcf137e9
Fast-forward
 packages/ppx_mixins/ppx_mixins.0.2.0/opam | 43 +++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 packages/ppx_mixins/ppx_mixins.0.2.0/opam

(from ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:fde4b0aa882f73d5fd290e327fb16170eb931bbb7fd66ff3c2f5087fc135f386)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14-nnpchecker@sha256:fde4b0aa882f73d5fd290e327fb16170eb931bbb7fd66ff3c2f5087fc135f386' locally
docker.io/ocaml/opam@sha256:fde4b0aa882f73d5fd290e327fb16170eb931bbb7fd66ff3c2f5087fc135f386: Pulling from ocaml/opam
a7730063fcfe: Already exists
1a27fd2181de: Already exists
c29591c91388: Already exists
356a64daa753: Already exists
ac02f8f2062b: Already exists
aaa2f390e4c8: Already exists
b668811757f6: Already exists
32fd4e1a774f: Already exists
b1d486fb8fdf: Already exists
cf8a2024f299: Already exists
8c4a5dac67c3: Already exists
6adfe24d7b40: Already exists
dccd6e3c0589: Already exists
2ee4bcb55cd4: Already exists
2dc3b58478d7: Already exists
daf15e5c44c6: Already exists
564e978a8088: Already exists
564e978a8088: Already exists
25a652a8c456: Already exists
b3bfea7bff3f: Already exists
a00f2937f570: Already exists
78bd1737ebff: Already exists
4f4fb700ef54: Already exists
4291a055edd7: Already exists
3c2b2836d59a: Already exists
7b3e96544a52: Already exists
c72503effb14: Already exists
bca08df11a10: Already exists
2ab0829b2daf: Already exists
1d246d4da211: Already exists
a09cb4870027: Already exists
2ce07b4fe7c0: Already exists
6b96f28d505e: Already exists
b6ad36bba9bf: Already exists
56d62791a0f9: Already exists
4d60780055d1: Already exists
43f57a7c44cb: Already exists
f21057dc4e85: Already exists
e0d2ca1300ed: Already exists
9da2f7598f8e: Already exists
cb569bb28593: Already exists
74617c16be11: Pulling fs layer
8dc494db84af: Pulling fs layer
74617c16be11: Waiting
02c478cac052: Pulling fs layer
8dc494db84af: Waiting
3224d192f3fb: Pulling fs layer
02c478cac052: Waiting
3224d192f3fb: Waiting
8dc494db84af: Download complete
02c478cac052: Download complete
3224d192f3fb: Verifying Checksum
3224d192f3fb: Download complete
74617c16be11: Verifying Checksum
74617c16be11: Download complete
74617c16be11: Pull complete
8dc494db84af: Pull complete
02c478cac052: Pull complete
3224d192f3fb: Pull complete
Digest: sha256:fde4b0aa882f73d5fd290e327fb16170eb931bbb7fd66ff3c2f5087fc135f386
Status: Downloaded newer image for ocaml/opam@sha256:fde4b0aa882f73d5fd290e327fb16170eb931bbb7fd66ff3c2f5087fc135f386
2026-04-19 13:14.06 ---> using "e9743739143dad27427231eade69908057be0c238a89262dd67c158e6122e1ca" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-19 13:14.06 ---> using "7d59e2aa5880dc4a6b09f99dd478f8e85d9053693a5d32e807d9ad94e5ea5962" 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.

Continue? [Y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-19 13:14.06 ---> using "5c945b6d146acafcdfa70b395ebb1b697156ebeffdde34e62fc052ff64b8dabb" 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-options-only-nnpchecker"]
# compiler-packages    ocaml-option-nnpchecker.1, ocaml-options-only-nnpchecker.1, ocaml-variants.4.14.3+options
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3+options
2026-04-19 13:14.06 ---> using "0b7de5edad89d784571f8cb6e0a0dfa76b0cb1abfd45220ac6de99b11cdae54a" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-19 13:14.06 ---> using "9483fd8c65ec7d03e79bebb0434043b10efe75d6d402660a562ea4da348d186c" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-19 13:14.13 ---> saved as "0fa608430b29221e8843151027f425da4206f70278b818740a90d4d30a008c85"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)

default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2026-04-19 13:14.34 ---> saved as "4783d412f0167a0e4ac41cb06f482f74e71cecd5da439e09403960f3091c65ba"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [124 kB]
- Fetched 215 kB in 0s (1600 kB/s)
- Reading package lists...
- 
2026-04-19 13:14.35 ---> saved as "d052703723ce6d3619b0b53fcaebc950c89428412acf396a1d89c5da0e05f9ee"

/home/opam: (run (shell "opam pin add -k version -yn ppx_mixins.0.2.0 0.2.0"))
ppx_mixins is now pinned to version 0.2.0
2026-04-19 13:14.36 ---> saved as "38d5843273879f7bb414d75c54500dfcdd0bda0e5e35caa1dd06924eaece7506"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppx_mixins.0.2.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-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\" != 'ppx_mixins.0.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ppx_mixins.0.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
  - install dune                3.22.2         [required by ppx_mixins]
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppx_mixins          0.2.0 (pinned)
  - install ppxlib              0.38.0         [required by ppx_mixins]
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install stdlib-shims        0.3.0          [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_mixins.0.2.0  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.22.2
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.38.0
-> installed ppx_mixins.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-19 13:15.34 ---> saved as "cefe288e3beee10ebf93d6f4bd4b593ae5a08fd3fe93d97ced127aac3d285e9a"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ppx_mixins.0.2.0) || true"))
The following actions will be performed:
=== downgrade 1 package
  - downgrade sexplib0          v0.17.0 to v0.16.0 [required by base]
=== recompile 2 packages
  - recompile ppx_mixins        0.2.0 (pinned)
  - recompile ppxlib            0.38.0             [uses sexplib0]
=== install 27 packages
  - install   astring           0.8.5              [required by ocamlformat-lib]
  - install   base              v0.16.4            [required by ocamlformat-lib]
  - install   camlp-streams     5.0.1              [required by ocamlformat-lib]
  - install   cmdliner          2.1.0              [required by ocamlformat]
  - install   csexp             1.5.2              [required by ocamlformat]
  - install   dune-build-info   3.22.2             [required by ocamlformat-lib]
  - install   dune-configurator 3.22.2             [required by base]
  - install   either            1.0.0              [required by ocamlformat-lib]
  - install   fix               20250919           [required by ocamlformat-lib]
  - install   fpath             0.7.3              [required by ocamlformat-lib]
  - install   menhir            20260209           [required by ocamlformat-lib]
  - install   menhirCST         20260209           [required by menhir]
  - install   menhirGLR         20260209           [required by menhir]
  - install   menhirLib         20260209           [required by ocamlformat-lib]
  - install   menhirSdk         20260209           [required by ocamlformat-lib]
  - install   ocaml-version     4.0.4              [required by ocamlformat-lib]
  - install   ocamlbuild        0.16.1             [required by fpath, astring, uuseg]
  - install   ocamlfind         1.9.8              [required by ocp-indent, astring, fpath, uuseg]
  - install   ocamlformat       0.29.0             [required by ppx_mixins]
  - install   ocamlformat-lib   0.29.0             [required by ocamlformat]
  - install   ocp-indent        1.9.0              [required by ocamlformat-lib]
  - install   re                1.14.0             [required by ocamlformat]
  - install   stdio             v0.16.0            [required by ocamlformat-lib]
  - install   topkg             1.1.1              [required by fpath, astring, uuseg]
  - install   uucp              17.0.0             [required by uuseg]
  - install   uuseg             17.0.0             [required by ocamlformat-lib]
  - install   uutf              1.0.4              [required by ocamlformat-lib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved base.v0.16.4  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> retrieved dune-build-info.3.22.2, dune-configurator.3.22.2  (https://opam.ocaml.org/cache)
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved fix.20250919  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed dune-build-info.3.22.2
-> installed dune-configurator.3.22.2
-> installed either.1.0.0
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (https://opam.ocaml.org/cache)
-> installed fix.20250919
-> installed menhirCST.20260209
-> retrieved ocaml-version.4.0.4  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed ocaml-version.4.0.4
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> installed menhirSdk.20260209
-> retrieved ocamlformat.0.29.0, ocamlformat-lib.0.29.0  (https://opam.ocaml.org/cache)
-> retrieved ocp-indent.1.9.0  (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.38.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uucp.17.0.0  (https://opam.ocaml.org/cache)
-> retrieved uuseg.17.0.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocamlfind.1.9.8
-> installed re.1.14.0
-> installed ocp-indent.1.9.0
-> removed   ppx_mixins.0.2.0
-> removed   ppxlib.0.38.0
-> removed   sexplib0.v0.17.0
-> installed ocamlbuild.0.16.1
-> installed sexplib0.v0.16.0
-> installed menhir.20260209
-> installed topkg.1.1.1
-> installed base.v0.16.4
-> installed uutf.1.0.4
-> installed astring.0.8.5
-> installed stdio.v0.16.0
-> installed fpath.0.7.3
-> installed ppxlib.0.38.0
-> installed uucp.17.0.0
-> installed uuseg.17.0.0
-> installed ocamlformat-lib.0.29.0
-> installed ocamlformat.0.29.0
-> installed ppx_mixins.0.2.0
Done.

<><> ocp-indent.1.9.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:

   * for Emacs, add these lines to ~/.emacs:
     (add-to-list 'load-path "/home/opam/.opam/4.14/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/home/opam/.opam/4.14/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2026-04-19 13:17.02 ---> saved as "c843e9a5bde1178c860e8041e88e8c7ebe631bfa4177bbea0834571d7767e8a9"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ppx_mixins.0.2.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-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\" != 'ppx_mixins.0.2.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 ppx_mixins 0.2.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ppx_mixins: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_mixins" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ppx_mixins.0.2.0)
- (cd _build/default/tests && ./test_ppx_mixins.exe)
- All tests passed.
-> compiled  ppx_mixins.0.2.0
-> removed   ppx_mixins.0.2.0
-> installed ppx_mixins.0.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-19 13:17.10 ---> saved as "2c9ccc4f434d426df869cf4380f9d3f3018e2c0f8a4b4b5f917f879880718fb3"
Job succeeded
2026-04-19 13:17.15: Job succeeded