Build:
  1. 0
2025-12-08 16:16.48: New job: test reason-react-ppx.0.13.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29001/head (874518b80fe25606a3e33aa700981f720b90c02f)
                              on ubuntu-22.04-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/29001/head" && git reset --hard 874518b8
git fetch origin master
git merge --no-edit 95f7875db7c621d309c559d9c2ba6781e43a8bb9
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:59440b767af440d0ca70443b4994e0a307f95c73f3422d16f0b3daed57649351
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 reason-react-ppx.0.13.0 0.13.0
RUN opam reinstall reason-react-ppx.0.13.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 "\"ubuntu-22.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'reason-react-ppx.0.13.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-ppx.0.13.0) || true
RUN opam reinstall --with-test --verbose reason-react-ppx.0.13.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 "\"ubuntu-22.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'reason-react-ppx.0.13.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-08 16:16.48: Using cache hint "ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:59440b767af440d0ca70443b4994e0a307f95c73f3422d16f0b3daed57649351-reason-react-ppx.0.13.0-874518b80fe25606a3e33aa700981f720b90c02f"
2025-12-08 16:16.48: Using OBuilder spec:
((from ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:59440b767af440d0ca70443b4994e0a307f95c73f3422d16f0b3daed57649351)
 (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 reason-react-ppx.0.13.0 0.13.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall reason-react-ppx.0.13.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 \"\\\"ubuntu-22.04\\\"\"; 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-ppx.0.13.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-ppx.0.13.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose reason-react-ppx.0.13.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 \"\\\"ubuntu-22.04\\\"\"; 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-ppx.0.13.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-08 16:16.48: Waiting for resource in pool OCluster
2025-12-08 16:35.28: Waiting for worker…
2025-12-08 16:39.54: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 95f7875db7 Merge pull request #29036 from MisterDA/windows-ci
Merge made by the 'ort' strategy.
 packages/melange-webapi/melange-webapi.0.21.0/opam |  2 +-
 packages/melange/melange.6.0.1-414/opam            | 42 ++++++++++++++++++++++
 packages/melange/melange.6.0.1-51/opam             | 42 ++++++++++++++++++++++
 packages/melange/melange.6.0.1-52/opam             | 42 ++++++++++++++++++++++
 packages/melange/melange.6.0.1-53/opam             | 42 ++++++++++++++++++++++
 packages/melange/melange.6.0.1-54/opam             | 42 ++++++++++++++++++++++
 .../reason-react-ppx/reason-react-ppx.0.13.0/opam  |  2 +-
 .../server-reason-react.0.2.0/opam                 |  2 +-
 .../server-reason-react.0.3.0/opam                 |  2 +-
 .../server-reason-react.0.3.1/opam                 |  4 +--
 10 files changed, 216 insertions(+), 6 deletions(-)
 create mode 100644 packages/melange/melange.6.0.1-414/opam
 create mode 100644 packages/melange/melange.6.0.1-51/opam
 create mode 100644 packages/melange/melange.6.0.1-52/opam
 create mode 100644 packages/melange/melange.6.0.1-53/opam
 create mode 100644 packages/melange/melange.6.0.1-54/opam

(from ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:59440b767af440d0ca70443b4994e0a307f95c73f3422d16f0b3daed57649351)
Unable to find image 'ocaml/opam:ubuntu-22.04-ocaml-4.14@sha256:59440b767af440d0ca70443b4994e0a307f95c73f3422d16f0b3daed57649351' locally
docker.io/ocaml/opam@sha256:59440b767af440d0ca70443b4994e0a307f95c73f3422d16f0b3daed57649351: Pulling from ocaml/opam
7e49dc6156b0: Pulling fs layer
a85ee0468aed: Pulling fs layer
c315de47cbf9: Pulling fs layer
95e72e2db4a4: Pulling fs layer
68b87b8705a0: Pulling fs layer
e7c6b52a0aff: Pulling fs layer
81e0e9f9c981: Pulling fs layer
05dc3c3ae15f: Pulling fs layer
5af51c811cd1: Pulling fs layer
da4fe59bd592: Pulling fs layer
ba3b0dc61be5: Pulling fs layer
659a0944d92a: Pulling fs layer
68b87b8705a0: Waiting
8a05c5a51b16: Pulling fs layer
c315de47cbf9: Waiting
e7c6b52a0aff: Waiting
76b466aeb127: Pulling fs layer
95e72e2db4a4: Waiting
d67d97663d6b: Pulling fs layer
81e0e9f9c981: Waiting
6fc975cca41e: Pulling fs layer
1e6dc09d6224: Pulling fs layer
da4fe59bd592: Waiting
5af51c811cd1: Waiting
05dc3c3ae15f: Waiting
659a0944d92a: Waiting
4f4fb700ef54: Pulling fs layer
8a05c5a51b16: Waiting
76b466aeb127: Waiting
1d3b50cdea50: Pulling fs layer
0f0b84758b44: Pulling fs layer
f2cc1a0710f1: Pulling fs layer
d67d97663d6b: Waiting
12faff377e45: Pulling fs layer
1e6dc09d6224: Waiting
d24d014accb8: Pulling fs layer
c8107e47ce8c: Pulling fs layer
1119833fc609: Pulling fs layer
6080220bce5a: Pulling fs layer
5a36aeb26b58: Pulling fs layer
12faff377e45: Waiting
9452d9730351: Pulling fs layer
85b38d9826ff: Pulling fs layer
4f4fb700ef54: Waiting
cbaaab6e38d6: Pulling fs layer
5a36aeb26b58: Waiting
6080220bce5a: Waiting
9452d9730351: Waiting
c0a6806aa377: Pulling fs layer
85b38d9826ff: Waiting
7191674929e8: Pulling fs layer
c0a6806aa377: Waiting
f3de6760991a: Pulling fs layer
cbaaab6e38d6: Waiting
7191674929e8: Waiting
d6c5941a1bd9: Pulling fs layer
c8107e47ce8c: Waiting
1119833fc609: Waiting
b43f4846060a: Pulling fs layer
ff1b774de354: Pulling fs layer
b066bc6373d4: Pulling fs layer
d6c5941a1bd9: Waiting
f04f4d782335: Pulling fs layer
1b53982e6e4c: Pulling fs layer
f04f4d782335: Waiting
2473dd387d84: Pulling fs layer
1256a98c80cb: Pulling fs layer
1b53982e6e4c: Waiting
ce106fc50726: Pulling fs layer
f82e987132a6: Pulling fs layer
2473dd387d84: Waiting
1256a98c80cb: Waiting
ce106fc50726: Waiting
a85ee0468aed: Verifying Checksum
a85ee0468aed: Download complete
c315de47cbf9: Download complete
7e49dc6156b0: Download complete
68b87b8705a0: Verifying Checksum
68b87b8705a0: Download complete
95e72e2db4a4: Verifying Checksum
95e72e2db4a4: Download complete
7e49dc6156b0: Pull complete
a85ee0468aed: Pull complete
c315de47cbf9: Pull complete
81e0e9f9c981: Verifying Checksum
81e0e9f9c981: Download complete
e7c6b52a0aff: Download complete
95e72e2db4a4: Pull complete
68b87b8705a0: Pull complete
05dc3c3ae15f: Download complete
5af51c811cd1: Verifying Checksum
5af51c811cd1: Download complete
da4fe59bd592: Verifying Checksum
da4fe59bd592: Download complete
ba3b0dc61be5: Verifying Checksum
ba3b0dc61be5: Download complete
659a0944d92a: Verifying Checksum
659a0944d92a: Download complete
8a05c5a51b16: Verifying Checksum
8a05c5a51b16: Download complete
76b466aeb127: Verifying Checksum
76b466aeb127: Download complete
d67d97663d6b: Download complete
6fc975cca41e: Download complete
1e6dc09d6224: Verifying Checksum
1e6dc09d6224: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
1d3b50cdea50: Verifying Checksum
1d3b50cdea50: Download complete
0f0b84758b44: Verifying Checksum
0f0b84758b44: Download complete
f2cc1a0710f1: Verifying Checksum
f2cc1a0710f1: Download complete
12faff377e45: Verifying Checksum
12faff377e45: Download complete
d24d014accb8: Verifying Checksum
d24d014accb8: Download complete
c8107e47ce8c: Verifying Checksum
c8107e47ce8c: Download complete
1119833fc609: Download complete
6080220bce5a: Verifying Checksum
6080220bce5a: Download complete
5a36aeb26b58: Verifying Checksum
5a36aeb26b58: Download complete
9452d9730351: Download complete
85b38d9826ff: Verifying Checksum
85b38d9826ff: Download complete
cbaaab6e38d6: Verifying Checksum
cbaaab6e38d6: Download complete
c0a6806aa377: Download complete
7191674929e8: Verifying Checksum
7191674929e8: Download complete
f3de6760991a: Verifying Checksum
f3de6760991a: Download complete
b43f4846060a: Verifying Checksum
b43f4846060a: Download complete
e7c6b52a0aff: Pull complete
81e0e9f9c981: Pull complete
05dc3c3ae15f: Pull complete
5af51c811cd1: Pull complete
da4fe59bd592: Pull complete
d6c5941a1bd9: Verifying Checksum
d6c5941a1bd9: Download complete
ba3b0dc61be5: Pull complete
b066bc6373d4: Verifying Checksum
b066bc6373d4: Download complete
659a0944d92a: Pull complete
f04f4d782335: Download complete
8a05c5a51b16: Pull complete
1b53982e6e4c: Verifying Checksum
1b53982e6e4c: Download complete
76b466aeb127: Pull complete
d67d97663d6b: Pull complete
6fc975cca41e: Pull complete
1e6dc09d6224: Pull complete
4f4fb700ef54: Pull complete
1d3b50cdea50: Pull complete
0f0b84758b44: Pull complete
f2cc1a0710f1: Pull complete
12faff377e45: Pull complete
d24d014accb8: Pull complete
c8107e47ce8c: Pull complete
1119833fc609: Pull complete
6080220bce5a: Pull complete
5a36aeb26b58: Pull complete
9452d9730351: Pull complete
85b38d9826ff: Pull complete
cbaaab6e38d6: Pull complete
c0a6806aa377: Pull complete
7191674929e8: Pull complete
f3de6760991a: Pull complete
2473dd387d84: Verifying Checksum
2473dd387d84: Download complete
1256a98c80cb: Verifying Checksum
1256a98c80cb: Download complete
ce106fc50726: Download complete
f82e987132a6: Download complete
ff1b774de354: Verifying Checksum
ff1b774de354: Download complete
d6c5941a1bd9: Pull complete
b43f4846060a: Pull complete
ff1b774de354: Pull complete
b066bc6373d4: Pull complete
f04f4d782335: Pull complete
1b53982e6e4c: Pull complete
2473dd387d84: Pull complete
1256a98c80cb: Pull complete
ce106fc50726: Pull complete
f82e987132a6: Pull complete
Digest: sha256:59440b767af440d0ca70443b4994e0a307f95c73f3422d16f0b3daed57649351
Status: Downloaded newer image for ocaml/opam@sha256:59440b767af440d0ca70443b4994e0a307f95c73f3422d16f0b3daed57649351
2025-12-08 16:41.50 ---> saved as "03248b153d70cc5fd232ca0045c61032e924c8422ca3d60d054124edec9fe717"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-08 16:41.51 ---> saved as "7b6ab2fb7e127ab03b05798f10f4775792842395441ae4c90f3d26d523620388"

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-08 16:42.19 ---> saved as "fbb6066b3682ffe03a92363371ea2728d2a221a965a05fe5712106e5e07fc63b"

/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=ubuntu os-version=22.04
# 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-08 16:42.20 ---> saved as "f1535a529e230b923a442cfa11fbc89e940236d117efaa386506b54448a031ab"

/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-08 16:42.27 ---> saved as "48e27a6ccf73f24ae5492ce59e0a2900cfcd800d09bf66784127a6e5b626be42"

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-08 16:42.39 ---> saved as "5d0eeeccc447096149bb012902abca0a340d0c490a617d606b2345fec3b67fe2"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-08 16:43.00 ---> saved as "1260686232165c847a86cf7a5b54223cc5b16f26ead4885afb440461ae2c55c6"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease
- Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]
- Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]
- Get:4 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1286 kB]
- Get:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]
- Get:6 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3571 kB]
- Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1598 kB]
- Fetched 6840 kB in 1s (6948 kB/s)
- Reading package lists...
- 
2025-12-08 16:43.03 ---> saved as "adb5fde2e4d734dd8e828b77902bc71a3a2994aea254f77fc5926cfccda9eac8"

/home/opam: (run (shell "opam pin add -k version -yn reason-react-ppx.0.13.0 0.13.0"))
reason-react-ppx is now pinned to version 0.13.0
2025-12-08 16:43.04 ---> saved as "e89c0ce94d6e4f7e4ad9e2839999d7aee45beb647cb5e513d412e585cca8c5fe"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall reason-react-ppx.0.13.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 \"\\\"ubuntu-22.04\\\"\"; 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-ppx.0.13.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-ppx.0.13.0 is not installed. Install it? [Y/n] y
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - reason-react-ppx = 0.13.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.5.1~
    You can temporarily relax the switch invariant with `--update-invariant'
  * Missing dependency:
    - reason-react-ppx = 0.13.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.1.1~ -> ocaml-beta
    unmet availability conditions: 'enable-ocaml-beta-repository'
  * Missing dependency:
    - reason-react-ppx = 0.13.0 -> ocaml >= 5.1.0 -> ocaml-variants < 5.2.1~ -> system-msvc
    unmet availability conditions: 'os = "win32"'

No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall reason-react-ppx.0.13.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 "\"ubuntu-22.04\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'reason-react-ppx.0.13.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 20
2025-12-08 16:43.24: Job failed: Failed: Build failed
2025-12-08 16:43.24: Log analysis:
2025-12-08 16:43.24: >>> 
No solution found, exiting
 (score = 100)
2025-12-08 16:43.24: [SKIP] Package not available