- github
- ocaml
- opam-repository
- b8482e
- compilers,5.3,fix.20250428,revdeps,server-reason-react.0.3.1
(not at the head of any monitored branch or PR)
2025-04-28 07:00.47: New job: test server-reason-react.0.3.1 with fix.20250428, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/27825/head (b8482e7a395625c45612d9e07cccca429838a385)
on debian-12-ocaml-5.3/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/27825/head" && git reset --hard b8482e7a
git fetch origin master
git merge --no-edit 8106bcf57fc33218275bbf0d02e725f4e9fcd0f6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:446565e696f67badd64a9da6b737f870b0646ce996df2a2c2915be2fffa3d1cb
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 fix.20250428 20250428
RUN opam reinstall fix.20250428; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'fix.20250428' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall server-reason-react.0.3.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'server-reason-react.0.3.1' && 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 server-reason-react.0.3.1) || true
RUN opam reinstall --with-test --verbose server-reason-react.0.3.1; \
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-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'server-reason-react.0.3.1' && 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-04-28 07:00.47: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:446565e696f67badd64a9da6b737f870b0646ce996df2a2c2915be2fffa3d1cb-fix.20250428-server-reason-react.0.3.1-b8482e7a395625c45612d9e07cccca429838a385"
2025-04-28 07:00.47: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:446565e696f67badd64a9da6b737f870b0646ce996df2a2c2915be2fffa3d1cb)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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 fix.20250428 20250428"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall fix.20250428;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'fix.20250428' && 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 server-reason-react.0.3.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'server-reason-react.0.3.1' && 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 server-reason-react.0.3.1) || true"))
(run (shell "opam reinstall --with-test --verbose server-reason-react.0.3.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'server-reason-react.0.3.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-04-28 07:00.47: Waiting for resource in pool OCluster
2025-04-28 07:00.47: Waiting for worker…
2025-04-28 07:00.47: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 8106bcf57f Merge pull request #27808 from Octachron/Ocaml_5.4.0_branching
Updating 8106bcf57f..b8482e7a39
Fast-forward
packages/fix/fix.20250428/opam | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 packages/fix/fix.20250428/opam
(from ocaml/opam:debian-12-ocaml-5.3@sha256:446565e696f67badd64a9da6b737f870b0646ce996df2a2c2915be2fffa3d1cb)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:446565e696f67badd64a9da6b737f870b0646ce996df2a2c2915be2fffa3d1cb' locally
docker.io/ocaml/opam@sha256:446565e696f67badd64a9da6b737f870b0646ce996df2a2c2915be2fffa3d1cb: Pulling from ocaml/opam
31ebcad2cdb3: Pulling fs layer
31ebcad2cdb3: Download complete
31ebcad2cdb3: Pull complete
Digest: sha256:446565e696f67badd64a9da6b737f870b0646ce996df2a2c2915be2fffa3d1cb
Status: Downloaded newer image for ocaml/opam@sha256:446565e696f67badd64a9da6b737f870b0646ce996df2a2c2915be2fffa3d1cb
2025-04-28 07:04.38 ---> saved as "4deaef3dcbe19696a2c1ff021867d35e9bd9df8acd600dbdfe827c4802d9df72"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-04-28 07:04.38 ---> saved as "5bc3a5ac966797f05acb63cf8a868ea8f8a5af7da9dc9f0cdf201a7dffe47f4a"
/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 development 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 39 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=39 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-04-28 07:05.12 ---> saved as "519143208fe9b95bbdf1271ef0813cf297d6df84c1f36be2545aff020efbfc68"
/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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# 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 5.3
# invariant ["ocaml-base-compiler" {>= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-04-28 07:05.13 ---> saved as "f0ceb0a7ff44df29b048ad36ff102f24b775a618137b7fc0f1c6d4a834a42bcf"
/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-04-28 07:05.22 ---> saved as "e71d8f0af51c88524fc20df7d4240d3a19b7dde3ec0bcb69a75abb2930384db6"
/home/opam: (copy (src .) (dst opam-repository/))
2025-04-28 07:05.38 ---> saved as "9c7fa9da5a6927b1de7b65b6feb47d0b603483d79f6dffbccbe3b6d261e3539c"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-28 07:06.00 ---> saved as "38746d06e4a0bb91beef1eeb014ac2635ea01a9fa9cdefa365525ca0bb3f64de"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [258 kB]
- Fetched 361 kB in 0s (1024 kB/s)
- Reading package lists...
-
2025-04-28 07:06.01 ---> saved as "d0febdbc125ef272a9a44fcec2d33ee05a6982f1ae61d60169477837ba1496fc"
/home/opam: (run (shell "opam pin add -k version -yn fix.20250428 20250428"))
fix is now pinned to version 20250428
2025-04-28 07:06.02 ---> saved as "9333c55abcd816548b41e0c1322cb4f84bdb73c9af07782f562c947d4675c612"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall fix.20250428;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'fix.20250428' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
fix.20250428 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 2 packages
- install dune 3.18.1 [required by fix]
- install fix 20250428 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.18.1 (cached)
-> retrieved fix.20250428 (cached)
-> installed dune.3.18.1
-> installed fix.20250428
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-28 07:06.34 ---> saved as "e1eb96ed92bf68b82738190d752a8c7f8379a2d15207ffe55f2602b0148864a2"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall server-reason-react.0.3.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'server-reason-react.0.3.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
server-reason-react.0.3.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 34 packages
- install angstrom 0.16.1 [required by uri]
- install base-bytes base [required by ocplib-endian]
- install bigarray-compat 1.1.0 [required by ctypes]
- install bigstringaf 0.10.0 [required by angstrom]
- install cmdliner 1.3.0 [required by melange]
- install cppo 1.8.0 [required by lwt, melange]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.23.0 [required by quickjs]
- install dune-build-info 3.18.1 [required by melange]
- install dune-configurator 3.18.1 [required by lwt]
- install integers 0.7.0 [required by server-reason-react]
- install lwt 5.9.1 [required by server-reason-react]
- install lwt_ppx 5.9.1 [required by server-reason-react]
- install melange 5.1.0-53 [required by server-reason-react]
- install menhir 20240715 [required by melange]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by menhir]
- install menhirSdk 20240715 [required by menhir]
- install merlin-extend 0.6.2 [required by reason]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by angstrom]
- install ocamlfind 1.9.8 [required by reason]
- install ocplib-endian 1.2 [required by lwt]
- install ppx_derivers 1.2.1 [required by ppxlib, reason]
- install ppxlib 0.35.0 [required by server-reason-react]
- install promise 1.1.2 [required by server-reason-react]
- install quickjs 0.1.2 [required by server-reason-react]
- install reason 3.15.0 [required by server-reason-react]
- install result 1.5 [required by promise]
- install server-reason-react 0.3.1
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by integers]
- install stringext 1.6.0 [required by uri]
- install uri 4.4.0 [required by server-reason-react]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.23.0 (cached)
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> retrieved dune-build-info.3.18.1, dune-configurator.3.18.1 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved lwt.5.9.1, lwt_ppx.5.9.1 (cached)
-> installed cmdliner.1.3.0
-> installed cppo.1.8.0
-> installed dune-build-info.3.18.1
-> retrieved melange.5.1.0-53 (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached)
-> installed dune-configurator.3.18.1
-> retrieved merlin-extend.0.6.2 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-syntax-shims.1.0.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> installed menhirCST.20240715
-> retrieved ppxlib.0.35.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved promise.1.1.2 (cached)
-> installed merlin-extend.0.6.2
-> retrieved quickjs.0.1.2 (cached)
-> installed bigstringaf.0.10.0
-> installed menhirSdk.20240715
-> retrieved reason.3.15.0 (cached)
-> installed menhirLib.20240715
-> retrieved result.1.5 (cached)
-> retrieved server-reason-react.0.3.1 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved stringext.1.6.0 (cached)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved uri.4.4.0 (cached)
-> installed result.1.5
-> installed ocaml-compiler-libs.v0.17.0
-> installed stringext.1.6.0
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed angstrom.0.16.1
-> installed integers.0.7.0
-> installed uri.4.4.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed ctypes.0.23.0
-> installed lwt.5.9.1
-> installed quickjs.0.1.2
-> installed menhir.20240715
-> installed ppxlib.0.35.0
-> installed lwt_ppx.5.9.1
-> installed reason.3.15.0
-> installed promise.1.1.2
-> installed melange.5.1.0-53
-> installed server-reason-react.0.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-28 07:08.47 ---> saved as "7c1f5d48d666c9d8fc24c45c975f53a810cf8ff87410f637b063277b3ee744bc"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test server-reason-react.0.3.1) || true"))
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.3.0
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> dkml-base-compiler
You can temporarily relax the switch invariant with `--update-invariant'
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.3.0
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-variants
* Missing dependency:
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-base-compiler (<= 3.07+1 | = 3.07+2 | = 3.08.0 | = 3.08.1 | = 3.08.2 | = 3.08.3 | = 3.08.4 | = 3.09.0) | ocaml-system (<= 3.07+1 | = 3.07+2 | >= 3.08.0) | ocaml-variants < 3.09.1~
not available because the package is pinned to version 5.3.0
unmet availability conditions, e.g. 'sys-ocaml-version = "5.3.0" & (os != "win32" | sys-ocaml-libc = "msvc")'
no matching version
* Missing dependency:
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-variants -> xenbigarray
unknown package
* Missing dependency:
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-variants -> ocaml-beta
unmet availability conditions: 'enable-ocaml-beta-repository'
* Missing dependency:
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-variants -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
2025-04-28 07:09.19 ---> saved as "3744188f64a4dc2444351ef086625c91140d2c1a6b96ae14328d0e013e504dac"
/home/opam: (run (shell "opam reinstall --with-test --verbose server-reason-react.0.3.1;\
\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-12\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'server-reason-react.0.3.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.3.0
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> dkml-base-compiler
You can temporarily relax the switch invariant with `--update-invariant'
* Incompatible packages:
- (invariant) -> ocaml-base-compiler >= 5.3.0
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-variants
* Missing dependency:
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-base-compiler (<= 3.07+1 | = 3.07+2 | = 3.08.0 | = 3.08.1 | = 3.08.2 | = 3.08.3 | = 3.08.4 | = 3.09.0) | ocaml-system (<= 3.07+1 | = 3.07+2 | >= 3.08.0) | ocaml-variants < 3.09.1~
not available because the package is pinned to version 5.3.0
unmet availability conditions, e.g. 'sys-ocaml-version = "5.3.0" & (os != "win32" | sys-ocaml-libc = "msvc")'
no matching version
* Missing dependency:
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-variants -> xenbigarray
unknown package
* Missing dependency:
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-variants -> ocaml-beta
unmet availability conditions: 'enable-ocaml-beta-repository'
* Missing dependency:
- server-reason-react >= 0.3.1 -> ocamlformat = 0.26.1 -> ocaml < 5.2 -> ocaml-variants -> system-msvc
unmet availability conditions: 'os = "win32"'
No solution found, exiting
'opam reinstall --with-test --verbose server-reason-react.0.3.1' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose server-reason-react.0.3.1;
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-12\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'server-reason-react.0.3.1' && 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-04-28 07:09.55: Job failed: Failed: Build failed
2025-04-28 07:09.55: Log analysis:
2025-04-28 07:09.55: >>>
No solution found, exiting
(score = 100)
2025-04-28 07:09.55: >>>
No solution found, exiting
(score = 100)
2025-04-28 07:09.55: [SKIP] Package not available