Build:
  1. 0
2026-02-15 01:47.07: New job: test ppx_deriving_decoders.1.0 with containers.3.18, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29372/head (4d2bcb3a82cf60b70b732847ca48dd2f8006e94f)
                              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/29372/head" && git reset --hard 4d2bcb3a
git fetch origin master
git merge --no-edit 66fe1c299d8a0fe922268a88a05ccf4bee097900
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633
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 containers.3.18 3.18
RUN opam reinstall containers.3.18; \
    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" != 'containers.3.18' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall ppx_deriving_decoders.1.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_deriving_decoders.1.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_deriving_decoders.1.0) || true
RUN opam reinstall --with-test --verbose ppx_deriving_decoders.1.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_deriving_decoders.1.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-02-15 01:47.07: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633-containers.3.18-ppx_deriving_decoders.1.0-4d2bcb3a82cf60b70b732847ca48dd2f8006e94f"
2026-02-15 01:47.07: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
 (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 containers.3.18 3.18"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall containers.3.18;\
             \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\" != 'containers.3.18' && 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 ppx_deriving_decoders.1.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_deriving_decoders.1.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_deriving_decoders.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_deriving_decoders.1.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_deriving_decoders.1.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-02-15 01:47.07: Waiting for resource in pool OCluster
2026-02-15 01:49.09: Waiting for worker…
2026-02-15 01:52.42: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  67% (12336/18213)
Updating files:  68% (12385/18213)
Updating files:  69% (12567/18213)
Updating files:  70% (12750/18213)
Updating files:  71% (12932/18213)
Updating files:  72% (13114/18213)
Updating files:  73% (13296/18213)
Updating files:  74% (13478/18213)
Updating files:  75% (13660/18213)
Updating files:  76% (13842/18213)
Updating files:  77% (14025/18213)
Updating files:  78% (14207/18213)
Updating files:  79% (14389/18213)
Updating files:  80% (14571/18213)
Updating files:  81% (14753/18213)
Updating files:  82% (14935/18213)
Updating files:  83% (15117/18213)
Updating files:  84% (15299/18213)
Updating files:  85% (15482/18213)
Updating files:  86% (15664/18213)
Updating files:  87% (15846/18213)
Updating files:  88% (16028/18213)
Updating files:  89% (16210/18213)
Updating files:  90% (16392/18213)
Updating files:  91% (16574/18213)
Updating files:  92% (16756/18213)
Updating files:  93% (16939/18213)
Updating files:  94% (17121/18213)
Updating files:  95% (17303/18213)
Updating files:  96% (17485/18213)
Updating files:  97% (17667/18213)
Updating files:  98% (17849/18213)
Updating files:  99% (18031/18213)
Updating files: 100% (18213/18213)
Updating files: 100% (18213/18213), done.
HEAD is now at 66fe1c299d Merge pull request #29371 from edwintorok/release-lintcstubs-arity-0.5.0
Updating 66fe1c299d..4d2bcb3a82
Fast-forward
 packages/containers-data/containers-data.3.18/opam | 33 +++++++++++++++++++
 packages/containers/containers.3.18/opam           | 38 ++++++++++++++++++++++
 2 files changed, 71 insertions(+)
 create mode 100644 packages/containers-data/containers-data.3.18/opam
 create mode 100644 packages/containers/containers.3.18/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
2026-02-15 01:57.48 ---> using "d6079ab6cce1b58b34ac9b5ed11aa86b7980ab728c75f5a6ba9271e98dc1ac1c" 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-02-15 01:57.48 ---> using "3c00c47f9d923b8bd6ffb2b949e4b9efd562ec1af5385aec1656ef10f01c4450" 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-02-15 01:57.48 ---> using "a92b73fe3956045426c13ac4a0686c952a1f3abe3c88ddfc7b2f3a6ed1e46736" 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-02-15 01:57.48 ---> using "cae9d187aa902d60c82d0c2150bbd9c0de1870c923aa0b0063ad5a25247acae5" 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-02-15 01:57.48 ---> using "feb31a4f8ccbcfb9943e7338a457db5bc00688ce26b7db5634b111626cd4af24" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-15 01:57.49 ---> using "988f9feb1b705d05fb9a1d0c27fca9525644fb6cf9319c2d90be8154b44b2f66" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-15 01:57.49 ---> using "ef2f4d8cbdd736be31bbd708b348242efe5dff7931385866fd26060a659a897b" from cache

/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 [108 kB]
- Fetched 198 kB in 0s (1741 kB/s)
- Reading package lists...
- 
2026-02-15 01:57.49 ---> using "092ee74d7d2a9eca271621309dc3f83120faadc871118362a67af747f79792f5" from cache

/home/opam: (run (shell "opam pin add -k version -yn containers.3.18 3.18"))
containers is now pinned to version 3.18
2026-02-15 01:57.49 ---> using "d4099f5df4b5940fce61a9f59793ab646f8e873fab8ade586e37501e77a807df" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved containers.3.18  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved either.1.0.0  (cached)
-> installed dune.3.21.1
-> installed either.1.0.0
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.1
-> installed containers.3.18
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-15 01:57.49 ---> using "282d32f929aeba8b39430b5e81b2b3396d1bd9ce42f1b77629b20f57fba604b5" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppx_deriving_decoders.1.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_deriving_decoders.1.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_deriving_decoders.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
  - install decoders              1.0.0   [required by ppx_deriving_decoders]
  - install ocaml-compiler-libs   v0.12.4 [required by ppxlib]
  - install ppx_derivers          1.2.1   [required by ppxlib]
  - install ppx_deriving_decoders 1.0
  - install ppxlib                0.35.0  [required by ppx_deriving_decoders]
  - install sexplib0              v0.17.0 [required by ppxlib]
  - install stdlib-shims          0.3.0   [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved decoders.1.0.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving_decoders.1.0  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed decoders.1.0.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.35.0
-> installed ppx_deriving_decoders.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-15 01:58.09 ---> saved as "be8b8396aa2ffdcd92be1182f31a4a7125edca103748dd77030dcf3d3787a749"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ppx_deriving_decoders.1.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_deriving_decoders 1.0
  - recompile ppxlib                0.35.0             [uses sexplib0]
=== install 18 packages
  - install   base                  v0.16.4            [required by ppx_inline_test]
  - install   decoders-yojson       1.0.0              [required by ppx_deriving_decoders]
  - install   jane-street-headers   v0.16.0            [required by time_now]
  - install   jst-config            v0.16.0            [required by time_now]
  - install   ppx_assert            v0.16.0            [required by jst-config]
  - install   ppx_base              v0.16.0            [required by time_now]
  - install   ppx_cold              v0.16.0            [required by ppx_base]
  - install   ppx_compare           v0.16.0            [required by ppx_base]
  - install   ppx_enumerate         v0.16.0            [required by ppx_base]
  - install   ppx_globalize         v0.16.0            [required by ppx_base]
  - install   ppx_hash              v0.16.0            [required by ppx_base]
  - install   ppx_here              v0.16.0            [required by ppx_assert]
  - install   ppx_inline_test       v0.16.1            [required by ppx_deriving_decoders]
  - install   ppx_optcomp           v0.16.0            [required by time_now]
  - install   ppx_sexp_conv         v0.16.0            [required by ppx_base]
  - install   stdio                 v0.16.0            [required by ppx_optcomp]
  - install   time_now              v0.16.0            [required by ppx_inline_test]
  - install   yojson                3.0.0              [required by decoders-yojson]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4  (https://opam.ocaml.org/cache)
-> retrieved decoders-yojson.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved jst-config.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.16.0  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved ppx_base.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving_decoders.1.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_hash.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.35.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 time_now.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> removed   ppx_deriving_decoders.1.0
-> removed   ppxlib.0.35.0
-> removed   sexplib0.v0.17.0
-> installed sexplib0.v0.16.0
-> installed yojson.3.0.0
-> installed decoders-yojson.1.0.0
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_deriving_decoders.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-15 01:58.47 ---> saved as "f02a84ccabdcdf54d590c6374180a8c894d0475ba268dfde74be32dd9f27c766"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ppx_deriving_decoders.1.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_deriving_decoders.1.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_deriving_decoders 1.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [ppx_deriving_decoders.1.0: extract]
-> retrieved ppx_deriving_decoders.1.0  (cached)
Processing  2/4: [ppx_deriving_decoders: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_deriving_decoders" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ppx_deriving_decoders.1.0)
-> compiled  ppx_deriving_decoders.1.0
-> removed   ppx_deriving_decoders.1.0
-> installed ppx_deriving_decoders.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-15 01:58.53 ---> saved as "e7de00c69857a262964206044ae74427e6bad3903c85e8d791fbfe0c7a5978b9"
Job succeeded
2026-02-15 01:59.03: Job succeeded