(not at the head of any monitored branch or PR)
2025-12-11 02:48.34: New job: test reason-react.0.11.0 with dune.3.21.0~alpha3, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29070/head (a95df9014bc79103fde668cf2adbe6680fd2f9cf)
                              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/29070/head" && git reset --hard a95df901
git fetch origin master
git merge --no-edit 810e1f14b7fa6411c66a3549f4c2aff47c52fc36
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
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 dune.3.21.0~alpha3 3.21.0~alpha3
RUN opam reinstall dune.3.21.0~alpha3; \
    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" != 'dune.3.21.0~alpha3' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall reason-react.0.11.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" != 'reason-react.0.11.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 reason-react.0.11.0) || true
RUN opam reinstall --with-test --verbose reason-react.0.11.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" != 'reason-react.0.11.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-12-11 02:48.34: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune.3.21.0~alpha3-reason-react.0.11.0-a95df9014bc79103fde668cf2adbe6680fd2f9cf"
2025-12-11 02:48.34: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
 (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 dune.3.21.0~alpha3 3.21.0~alpha3"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.21.0~alpha3;\
             \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\" != 'dune.3.21.0~alpha3' && 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 reason-react.0.11.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\" != 'reason-react.0.11.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 reason-react.0.11.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose reason-react.0.11.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\" != 'reason-react.0.11.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-12-11 02:48.34: Waiting for resource in pool OCluster
2025-12-11 15:54.32: Waiting for worker…
2025-12-11 15:56.39: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  95% (18174/19017)
Updating files:  96% (18257/19017)
Updating files:  97% (18447/19017)
Updating files:  98% (18637/19017)
Updating files:  99% (18827/19017)
Updating files: 100% (19017/19017)
Updating files: 100% (19017/19017), done.
HEAD is now at 810e1f14b7 Merge pull request #29066 from gares/release-elpi-v3.4.4
Updating 810e1f14b7..a95df9014b
Fast-forward
 .../chrome-trace/chrome-trace.3.21.0~alpha3/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.21.0~alpha3/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.21.0~alpha3/opam             | 47 ++++++++++++++
 .../dune-configurator.3.21.0~alpha3/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0~alpha3/opam    | 44 +++++++++++++
 .../dune-private-libs.3.21.0~alpha3/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam      | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0~alpha3/opam    | 39 +++++++++++
 packages/dune/dune.3.21.0~alpha3/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0~alpha3/opam                | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0~alpha3/opam            | 40 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.21.0~alpha3/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.21.0~alpha3/opam          | 48 ++++++++++++++
 .../top-closure/top-closure.3.21.0~alpha3/opam     | 39 +++++++++++
 packages/xdg/xdg.3.21.0~alpha3/opam                | 41 ++++++++++++
 17 files changed, 787 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha3/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha3/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha3/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha3/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha3/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha3/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0~alpha3/opam
 create mode 100644 packages/dune/dune.3.21.0~alpha3/opam
 create mode 100644 packages/dyn/dyn.3.21.0~alpha3/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0~alpha3/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam
 create mode 100644 packages/ordering/ordering.3.21.0~alpha3/opam
 create mode 100644 packages/stdune/stdune.3.21.0~alpha3/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0~alpha3/opam
 create mode 100644 packages/xdg/xdg.3.21.0~alpha3/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
2025-12-11 15:56.50 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" 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-12-11 15:56.50 ---> using "4c0c738834a7be54719ab9b07c911eba51e45ad4298c42597f7d3da72b1c15d4" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
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.

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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-11 15:56.50 ---> using "8bb6d27bb5f7ebe9771219e3ecd730184d5e10ab877134c11c12ee3b1a6d3b96" 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
2025-12-11 15:56.50 ---> using "35019bd57e8933485bd938828fe288c3674216a4757e13b1dac8ce6b21035ac2" 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/"))
2025-12-11 15:56.50 ---> using "e09ab9992a764acab15da9cff99e3d4d978b8a77f33714cc5d19d16d3539eb49" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-11 15:56.51 ---> using "8f784899c04798d44128ca0480da55c2b9cf6d274974843ef0505a70d687f2db" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-11 15:56.51 ---> using "2b089ce953d9701360553588b495e1bed1b68a44304bde1817c2d61d9d0cfb13" 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 [82.1 kB]
- Fetched 173 kB in 0s (1458 kB/s)
- Reading package lists...
- 
2025-12-11 15:56.51 ---> using "66aa292a4a8c262cd0de67bf9051bc0bb23ef81009eeb9a242c201bbf02a4d3c" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0~alpha3 3.21.0~alpha3"))
dune is now pinned to version 3.21.0~alpha3
2025-12-11 15:56.51 ---> using "9570d75aed3642c1ef0c12e0ad97a3baf2325ffdc6e45d8a3264e824ac334df7" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0~alpha3  (cached)
-> installed dune.3.21.0~alpha3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 15:56.51 ---> using "48cb7e11edf550584d15e9c5e0a730dadf8a3f762cd720f2410f845b4ecb32e4" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall reason-react.0.11.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\" != 'reason-react.0.11.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
reason-react.0.11.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 20 packages
  - install base64              3.5.2         [required by melange]
  - install cmdliner            2.1.0         [required by melange]
  - install cppo                1.8.0         [required by melange]
  - install dune-build-info     3.21.0~alpha3 [required by melange, reason]
  - install fix                 20250919      [required by reason]
  - install melange             1.0.0         [required by reason-react]
  - install menhir              20250912      [required by melange, reason]
  - install menhirCST           20250912      [required by menhir]
  - install menhirLib           20250912      [required by menhir]
  - install menhirSdk           20250912      [required by menhir]
  - install merlin-extend       0.6.2         [required by reason]
  - install ocaml-compiler-libs v0.12.4       [required by ppxlib]
  - install ocamlfind           1.9.8         [required by reason]
  - install ppx_derivers        1.2.1         [required by reason]
  - install ppxlib              0.35.0        [required by reactjs-jsx-ppx, melange, reason]
  - install reactjs-jsx-ppx     1.0.0         [required by reason-react]
  - install reason              3.9.0         [required by reason-react]
  - install reason-react        0.11.0
  - install sexplib0            v0.17.0       [required by ppxlib]
  - install stdlib-shims        0.3.0         [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed base64.3.5.2
-> retrieved dune-build-info.3.21.0~alpha3  (cached)
-> installed cppo.1.8.0
-> retrieved fix.20250919  (cached)
-> installed cmdliner.2.1.0
-> installed dune-build-info.3.21.0~alpha3
-> installed fix.20250919
-> retrieved melange.1.0.0, reactjs-jsx-ppx.1.0.0  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved merlin-extend.0.6.2  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> installed menhirCST.20250912
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> installed ppx_derivers.1.2.1
-> installed merlin-extend.0.6.2
-> retrieved ppxlib.0.35.0  (cached)
-> installed menhirSdk.20250912
-> retrieved reason.3.9.0  (cached)
-> installed menhirLib.20250912
-> retrieved reason-react.0.11.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed ocamlfind.1.9.8
-> installed menhir.20250912
-> installed ppxlib.0.35.0
-> installed reactjs-jsx-ppx.1.0.0
-> installed reason.3.9.0
-> installed melange.1.0.0
-> installed reason-react.0.11.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 15:58.02 ---> saved as "22c45015db965b38a5ff128853263bced4a908bbf6c33af8fc622e9414228203"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test reason-react.0.11.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile reason-react        0.11.0
=== install 25 packages
  - install   astring             0.8.5         [required by ocaml-lsp-server]
  - install   camlp-streams       5.0.1         [required by ocaml-lsp-server]
  - install   chrome-trace        3.21.0~alpha3 [required by ocaml-lsp-server]
  - install   csexp               1.5.2         [required by ocaml-lsp-server]
  - install   dune-rpc            3.21.0~alpha3 [required by ocaml-lsp-server]
  - install   dyn                 3.21.0~alpha3 [required by ocaml-lsp-server]
  - install   fiber               3.7.0         [required by ocaml-lsp-server]
  - install   fs-io               3.21.0~alpha3 [required by stdune]
  - install   merlin-lib          4.16-414      [required by ocaml-lsp-server]
  - install   ocaml-lsp-server    1.17.0        [required by reason-react]
  - install   ocamlbuild          0.16.1        [required by astring, uutf]
  - install   ocamlc-loc          3.21.0~alpha3 [required by ocaml-lsp-server]
  - install   ocamlformat-rpc-lib 0.28.1        [required by ocaml-lsp-server]
  - install   ordering            3.21.0~alpha3 [required by ocaml-lsp-server]
  - install   pp                  2.0.0         [required by ocaml-lsp-server]
  - install   ppx_yojson_conv_lib v0.16.0       [required by ocaml-lsp-server]
  - install   re                  1.14.0        [required by ocaml-lsp-server]
  - install   seq                 base          [required by yojson]
  - install   spawn               v0.17.0       [required by ocaml-lsp-server]
  - install   stdune              3.21.0~alpha3 [required by ocaml-lsp-server]
  - install   top-closure         3.21.0~alpha3 [required by stdune]
  - install   topkg               1.1.1         [required by astring, uutf]
  - install   uutf                1.0.4         [required by ocaml-lsp-server]
  - install   xdg                 3.21.0~alpha3 [required by ocaml-lsp-server]
  - install   yojson              2.2.2         [required by ocaml-lsp-server]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved chrome-trace.3.21.0~alpha3, dune-rpc.3.21.0~alpha3, dyn.3.21.0~alpha3, fs-io.3.21.0~alpha3, ocamlc-loc.3.21.0~alpha3, ordering.3.21.0~alpha3, stdune.3.21.0~alpha3, top-closure.3.21.0~alpha3, xdg.3.21.0~alpha3  (https://github.com/ocaml/dune/releases/download/3.21.0_alpha3/dune-3.21.0.alpha3.tbz)
-> installed fs-io.3.21.0~alpha3
-> installed top-closure.3.21.0~alpha3
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> retrieved fiber.3.7.0  (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved merlin-lib.4.16-414  (https://opam.ocaml.org/cache)
-> installed chrome-trace.3.21.0~alpha3
-> installed ordering.3.21.0~alpha3
-> installed xdg.3.21.0~alpha3
-> retrieved ocaml-lsp-server.1.17.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlformat-rpc-lib.0.28.1  (https://opam.ocaml.org/cache)
-> retrieved pp.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_yojson_conv_lib.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> installed pp.2.0.0
-> installed ocamlformat-rpc-lib.0.28.1
-> retrieved reason-react.0.11.0  (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved spawn.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> retrieved yojson.2.2.2  (https://opam.ocaml.org/cache)
-> installed spawn.v0.17.0
-> installed dyn.3.21.0~alpha3
-> removed   reason-react.0.11.0
-> installed ocamlbuild.0.16.1
-> installed yojson.2.2.2
-> installed ppx_yojson_conv_lib.v0.16.0
-> installed ocamlc-loc.3.21.0~alpha3
-> installed stdune.3.21.0~alpha3
-> installed topkg.1.1.1
-> installed merlin-lib.4.16-414
-> installed fiber.3.7.0
-> installed uutf.1.0.4
-> installed astring.0.8.5
-> installed dune-rpc.3.21.0~alpha3
-> installed ocaml-lsp-server.1.17.0
-> installed reason-react.0.11.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 15:59.25 ---> saved as "fa9a915906f074ffa7300081d93fdbf4606b151449e33c137e14be08b75f505b"

/home/opam: (run (shell  "opam reinstall --with-test --verbose reason-react.0.11.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\" != 'reason-react.0.11.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:
=== downgrade 1 package
  - downgrade sexplib0          v0.17.0 to v0.16.0    [required by base]
=== recompile 5 packages
  - recompile melange           1.0.0                 [uses ppxlib]
  - recompile ppxlib            0.35.0                [uses sexplib0]
  - recompile reactjs-jsx-ppx   1.0.0                 [uses ppxlib]
  - recompile reason            3.9.0                 [uses ppxlib]
  - recompile reason-react      0.11.0
=== upgrade 2 packages
  - upgrade   merlin-lib        4.16-414 to 4.19-414  [required by ocaml-lsp-server]
  - upgrade   ocaml-lsp-server  1.17.0 to 1.21.0-4.14 [required by reason-react]
=== install 4 packages
  - install   base              v0.16.4               [required by ocaml-lsp-server]
  - install   dune-configurator 3.21.0~alpha3         [required by base]
  - install   jsonrpc           1.21.0-4.14           [required by ocaml-lsp-server]
  - install   lsp               1.21.0-4.14           [required by ocaml-lsp-server]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/41: [base.v0.16.4: dl]
Processing  1/41: [base.v0.16.4: http]
[ERROR] Failed to get sources of base.v0.16.4: curl failed
Processing  2/41: [dune-configurator.3.21.0~alpha3: extract]
-> retrieved dune-configurator.3.21.0~alpha3  (cached)
Processing  3/41: [jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14: dl]
Processing  4/41: [jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14: dl] [dune-configurator: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "-rf" "vendor/csexp" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dune-configurator.3.21.0~alpha3)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "-rf" "vendor/pp" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dune-configurator.3.21.0~alpha3)
Processing  4/41: [jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14: dl] [dune-configurator: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dune-configurator" "-j" "71" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dune-configurator.3.21.0~alpha3)
-> compiled  dune-configurator.3.21.0~alpha3
Processing  4/41: [jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14: dl]
-> installed dune-configurator.3.21.0~alpha3
Processing  5/41: [jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14: dl]
Processing  5/41: [jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14: http]
[ERROR] Failed to get sources of jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14 (https://github.com/ocaml/ocaml-lsp/releases/download/1.21.0-4.14/lsp-1.21.0-4.14.tbz): curl failed
Processing  6/41: [melange.1.0.0, reactjs-jsx-ppx.1.0.0: dl]
Processing  7/41: [melange.1.0.0, reactjs-jsx-ppx.1.0.0: dl]
Processing  8/41: [melange.1.0.0, reactjs-jsx-ppx.1.0.0: dl]
Processing  9/41: [melange.1.0.0, reactjs-jsx-ppx.1.0.0: dl]
Processing 10/41: [melange.1.0.0, reactjs-jsx-ppx.1.0.0: dl]
Processing 10/41: [melange.1.0.0, reactjs-jsx-ppx.1.0.0: http]
[ERROR] Failed to get sources of melange.1.0.0, reactjs-jsx-ppx.1.0.0 (https://github.com/melange-re/melange/releases/download/1.0.0/melange-1.0.0.tbz): curl failed
Processing 11/41: [merlin-lib.4.19-414: dl]
Processing 11/41: [merlin-lib.4.19-414: http]
[ERROR] Failed to get sources of merlin-lib.4.19-414: curl failed
Processing 12/41: [ppxlib.0.35.0: dl]
Processing 13/41: [ppxlib.0.35.0: dl]
Processing 13/41: [ppxlib.0.35.0: http]
[ERROR] Failed to get sources of ppxlib.0.35.0: curl failed
Processing 14/41: [reason.3.9.0: dl]
Processing 14/41: [reason.3.9.0: http]
[ERROR] Failed to get sources of reason.3.9.0: curl failed
Processing 15/41: [reason-react.0.11.0: extract]
-> retrieved reason-react.0.11.0  (cached)
Processing 16/41: [sexplib0.v0.16.0: dl]
Processing 16/41: [sexplib0.v0.16.0: http]
[ERROR] Failed to get sources of sexplib0.v0.16.0: curl failed

#=== ERROR while fetching sources for sexplib0.v0.16.0 ========================#
OpamSolution.Fetch_fail("https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-939e77/sexplib0-v0.16.0.tar.gz.part -- https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz\" exited with code 6)")

#=== ERROR while fetching sources for reason.3.9.0 ============================#
OpamSolution.Fetch_fail("https://github.com/reasonml/reason/releases/download/3.9.0/reason-3.9.0.tbz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-e2a49e/reason-3.9.0.tbz.part -- https://github.com/reasonml/reason/releases/download/3.9.0/reason-3.9.0.tbz\" exited with code 6)")

#=== ERROR while fetching sources for ppxlib.0.35.0 ===========================#
OpamSolution.Fetch_fail("https://github.com/ocaml-ppx/ppxlib/releases/download/0.35.0/ppxlib-0.35.0.tbz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-b977ef/ppxlib-0.35.0.tbz.part -- https://github.com/ocaml-ppx/ppxlib/releases/download/0.35.0/ppxlib-0.35.0.tbz\" exited with code 6)")

#=== ERROR while fetching sources for merlin-lib.4.19-414 =====================#
OpamSolution.Fetch_fail("https://github.com/ocaml/merlin/releases/download/v4.19-414/merlin-4.19-414.tbz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-27a523/merlin-4.19-414.tbz.part -- https://github.com/ocaml/merlin/releases/download/v4.19-414/merlin-4.19-414.tbz\" exited with code 6)")

#=== ERROR while fetching sources for melange.1.0.0 and reactjs-jsx-ppx.1.0.0 =#
OpamSolution.Fetch_fail("https://github.com/melange-re/melange/releases/download/1.0.0/melange-1.0.0.tbz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-3c0473/melange-1.0.0.tbz.part -- https://github.com/melange-re/melange/releases/download/1.0.0/melange-1.0.0.tbz\" exited with code 6)")

#=== ERROR while fetching sources for jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14 and ocaml-lsp-server.1.21.0-4.14 
OpamSolution.Fetch_fail("https://github.com/ocaml/ocaml-lsp/releases/download/1.21.0-4.14/lsp-1.21.0-4.14.tbz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-7279a5/lsp-1.21.0-4.14.tbz.part -- https://github.com/ocaml/ocaml-lsp/releases/download/1.21.0-4.14/lsp-1.21.0-4.14.tbz\" exited with code 6)")

#=== ERROR while fetching sources for base.v0.16.4 ============================#
OpamSolution.Fetch_fail("https://github.com/janestreet/base/archive/refs/tags/v0.16.4.tar.gz (curl failed: \"/usr/bin/curl --write-out %{http_code}\\\\n --retry 3 --retry-delay 2 --user-agent opam/2.5.0 -L -o /tmp/opam-7-efd439/v0.16.4.tar.gz.part -- https://github.com/janestreet/base/archive/refs/tags/v0.16.4.tar.gz\" exited with code 6)")


The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20251211155926.export"

<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions were aborted
| - remove    merlin-lib       4.16-414
| - remove    ocaml-lsp-server 1.17.0
| - remove    sexplib0         v0.17.0
| - recompile reason-react     0.11.0
+- 
+- The following actions failed
| - fetch base                                                               v0.16.4
| - fetch jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14 
| - fetch melange.1.0.0, reactjs-jsx-ppx.1.0.0                               
| - fetch merlin-lib                                                         4.19-414
| - fetch ppxlib                                                             0.35.0
| - fetch reason                                                             3.9.0
| - fetch sexplib0                                                           v0.16.0
+- 
+- The following changes have been performed (the rest was aborted)
| - install dune-configurator 3.21.0~alpha3
+- 
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose reason-react.0.11.0' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose reason-react.0.11.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" != 'reason-react.0.11.0' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 40
2025-12-11 16:01.17: Job failed: Failed: Build failed
2025-12-11 16:01.17: Log analysis:
2025-12-11 16:01.17: >>> 
[ERROR] Failed to get sources of base.v0.16.4: curl failed
 (score = 25)
2025-12-11 16:01.17: >>> 
[ERROR] Failed to get sources of jsonrpc.1.21.0-4.14, lsp.1.21.0-4.14, ocaml-lsp-server.1.21.0-4.14 (https://github.com/ocaml/ocaml-lsp/releases/download/1.21.0-4.14/lsp-1.21.0-4.14.tbz): curl failed
 (score = 25)
2025-12-11 16:01.17: >>> 
[ERROR] Failed to get sources of melange.1.0.0, reactjs-jsx-ppx.1.0.0 (https://github.com/melange-re/melange/releases/download/1.0.0/melange-1.0.0.tbz): curl failed
 (score = 25)
2025-12-11 16:01.17: >>> 
[ERROR] Failed to get sources of merlin-lib.4.19-414: curl failed
 (score = 25)
2025-12-11 16:01.17: >>> 
[ERROR] Failed to get sources of ppxlib.0.35.0: curl failed
 (score = 25)
2025-12-11 16:01.17: >>> 
[ERROR] Failed to get sources of reason.3.9.0: curl failed
 (score = 25)
2025-12-11 16:01.17: >>> 
[ERROR] Failed to get sources of sexplib0.v0.16.0: curl failed
 (score = 25)
2025-12-11 16:01.17: Failed to get sources of base.v0.16.4: curl failed