(not at the head of any monitored branch or PR)
2025-09-30 11:35.51: New job: test ppx_yojson.1.3.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28610/head (307bd6a7d04a5f700ad8eb00752262d926973378)
                              on debian-13-ocaml-5.2/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/28610/head" && git reset --hard 307bd6a7
git fetch origin master
git merge --no-edit dfe27d924d3f2d9d3045aa994e54a6172a669ecb
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.2@sha256:984d9490e0a1ce0f5250b287a3e18d57c5d896c2798cdb35bfdcd62bbcc563d0
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_yojson.1.3.0 1.3.0
RUN opam reinstall ppx_yojson.1.3.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_yojson.1.3.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_yojson.1.3.0) || true
RUN opam reinstall --with-test --verbose ppx_yojson.1.3.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_yojson.1.3.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-09-30 11:35.51: Using cache hint "ocaml/opam:debian-13-ocaml-5.2@sha256:984d9490e0a1ce0f5250b287a3e18d57c5d896c2798cdb35bfdcd62bbcc563d0-ppx_yojson.1.3.0-307bd6a7d04a5f700ad8eb00752262d926973378"
2025-09-30 11:35.51: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.2@sha256:984d9490e0a1ce0f5250b287a3e18d57c5d896c2798cdb35bfdcd62bbcc563d0)
 (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_yojson.1.3.0 1.3.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppx_yojson.1.3.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_yojson.1.3.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_yojson.1.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_yojson.1.3.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_yojson.1.3.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-09-30 11:35.51: Waiting for resource in pool OCluster
2025-09-30 11:35.52: Waiting for worker…
2025-09-30 11:35.52: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at dfe27d924d Merge pull request #28613 from kit-ty-kate/opam-2.4-stable-patch
Merge made by the 'ort' strategy.
 packages/ppx_yojson/ppx_yojson.1.3.0/opam      |  2 +-
 packages/ppxlib-tools/ppxlib-tools.0.36.2/opam | 46 ++++++++++++++++++
 packages/ppxlib/ppxlib.0.36.2/opam             | 64 ++++++++++++++++++++++++++
 3 files changed, 111 insertions(+), 1 deletion(-)
 create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.36.2/opam
 create mode 100644 packages/ppxlib/ppxlib.0.36.2/opam

(from ocaml/opam:debian-13-ocaml-5.2@sha256:984d9490e0a1ce0f5250b287a3e18d57c5d896c2798cdb35bfdcd62bbcc563d0)
2025-09-30 11:36.14 ---> using "9548e78a507c80b995a7fc0f058a6e164acbd87e20aba9687b0e7efc1668edfe" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-09-30 11:36.14 ---> using "bf2619f008f61607e86f8a2e63f90983d3417aba804a66784645692e06793dd6" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-09-30 11:36.30 ---> saved as "0bcacb54dce009256ed34b21cbe959ca5933b23646152d9452a8ca5e7a1a15d1"

/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=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.2
# invariant            ["ocaml-base-compiler" {= "5.2.1"}]
# compiler-packages    ocaml-base-compiler.5.2.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.2/lib/ocaml/stublibs:/home/opam/.opam/5.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.2.1
2025-09-30 11:36.31 ---> saved as "ad7c1a94a314bf8da1e649ab9881486571321d65540c4aca6c9e91ce361ce6a0"

/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-09-30 11:36.41 ---> saved as "6e881b2d6dd115a796f68470d31455303809a601ae15f8f36c2f849e9239426a"

/home/opam: (copy (src .) (dst opam-repository/))
2025-09-30 11:36.50 ---> saved as "b679aeaa3d2685e9f18e4a5b90579f70514303987e59b220a6ffc26d5bda9afa"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-09-30 11:37.13 ---> saved as "28dfc81c5b9996d62312117530635d0bf733105e03540a46f10b39089f946959"

/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 [47.7 kB]
- Fetched 138 kB in 0s (1532 kB/s)
- Reading package lists...
2025-09-30 11:37.14 ---> saved as "0d1bf2e5b01f1a2e7deaa89ccb8d8e15264a7378c7f6c4abba5ce4192a6d582c"

/home/opam: (run (shell "opam pin add -k version -yn ppx_yojson.1.3.0 1.3.0"))
ppx_yojson is now pinned to version 1.3.0
2025-09-30 11:37.14 ---> saved as "70d89d72d9407d5f2644ee5473e990d33ce7d66da89e42b5d17e4747f743d8f6"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppx_yojson.1.3.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_yojson.1.3.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_yojson.1.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
  - install dune                3.20.2         [required by ppx_yojson]
  - install ocaml-compiler-libs v0.17.0        [required by ppxlib]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppx_yojson          1.3.0 (pinned)
  - install ppxlib              0.36.2         [required by ppx_yojson]
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install stdlib-shims        0.3.0          [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_yojson.1.3.0  (cached)
-> retrieved ppxlib.0.36.2  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.20.2
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppxlib.0.36.2
-> installed ppx_yojson.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-30 11:37.47 ---> saved as "4f9ecdfdbbeb552901695b47940061f8ad3c97bd7b0ebdf8f6814757a88dfe63"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ppx_yojson.1.3.0) || true"))
The following actions will be performed:
=== downgrade 1 package
  - downgrade ppxlib             0.36.2 to 0.36.0 [required by ppx_yojson]
=== recompile 1 package
  - recompile ppx_yojson         1.3.0 (pinned)
=== install 15 packages
  - install   alcotest           1.9.0            [required by ppx_yojson]
  - install   astring            0.8.5            [required by alcotest]
  - install   cmdliner           1.3.0            [required by alcotest]
  - install   cstruct            6.2.0            [required by hex]
  - install   ezjsonm            1.3.0            [required by ppx_yojson]
  - install   fmt                0.11.0           [required by alcotest]
  - install   hex                1.5.0            [required by ezjsonm]
  - install   jsonm              1.0.2            [required by ezjsonm]
  - install   ocaml-syntax-shims 1.0.0            [required by alcotest]
  - install   ocamlbuild         0.16.1           [required by uutf, astring, fmt, jsonm]
  - install   ocamlfind          1.9.8            [required by uutf, astring, fmt, jsonm]
  - install   re                 1.14.0           [required by alcotest]
  - install   topkg              1.1.0            [required by uutf, astring, fmt, jsonm]
  - install   uutf               1.0.4            [required by alcotest, ezjsonm]
  - install   yojson             3.0.0            [required by ppx_yojson]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0  (https://opam.ocaml.org/cache)
-> retrieved ezjsonm.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved hex.1.5.0  (https://opam.ocaml.org/cache)
-> retrieved jsonm.1.0.2  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.36.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved topkg.1.1.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> installed cmdliner.1.3.0
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> removed   ppx_yojson.1.3.0
-> removed   ppxlib.0.36.2
-> installed ppxlib.0.36.0
-> installed jsonm.1.0.2
-> installed alcotest.1.9.0
-> installed ezjsonm.1.3.0
-> installed ppx_yojson.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-30 11:38.08 ---> saved as "dd1defcc2408c5f4a0dd6a48ad1dc2acf5384e8124a40c05cb0629644ae90278"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ppx_yojson.1.3.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_yojson.1.3.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_yojson 1.3.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ppx_yojson: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_yojson" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.2/.opam-switch/build/ppx_yojson.1.3.0)
- (cd _build/default/test/lib && ./test_ppx_yojson_lib.exe -e)
- Testing `ppx_yojson_lib'.
- This run has ID `M24JCO83'.
- 
-   [OK]          Integer_const          0   is_binary: "0b1".
-   [OK]          Integer_const          1   is_binary: "0B1".
-   [OK]          Integer_const          2   is_binary: "123".
-   [OK]          Integer_const          3   is_octal: "0o1".
-   [OK]          Integer_const          4   is_octal: "0O1".
-   [OK]          Integer_const          5   is_octal: "123".
-   [OK]          Integer_const          6   is_hexadecimal: "0x1".
-   [OK]          Integer_const          7   is_hexadecimal: "0X1".
-   [OK]          Integer_const          8   is_hexadecimal: "123".
-   [OK]          Utils                  0   remove: Empty.
-   [OK]          Utils                  1   remove: First.
-   [OK]          Utils                  2   remove: Last.
-   [OK]          Utils                  3   remove: Some.
-   [OK]          Utils                  4   permutations: Empty.
-   [OK]          Utils                  5   permutations: One.
-   [OK]          Utils                  6   permutations: Two.
-   [OK]          Utils                  7   permutations: Three.
- 
- Full test results in `~/.opam/5.2/.opam-switch/build/ppx_yojson.1.3.0/_build/default/test/lib/_build/_tests/ppx_yojson_lib'.
- Test Successful in 0.001s. 17 tests run.
-> compiled  ppx_yojson.1.3.0
-> removed   ppx_yojson.1.3.0
-> installed ppx_yojson.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-30 11:38.13 ---> saved as "b47940977dfc709f55e9214a3459e143f7c3a4b276ca9ac6107f7b47aebbe45d"
Job succeeded
2025-09-30 11:38.22: Job succeeded