(for PR #28866)
2025-11-10 14:55.19: New job: test melange-atdgen-codec-runtime.3.0.1 with melange.6.0.0-414, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28866/head (780331e30462ca6bc8d8e82d472fe1019e01770d)
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/28866/head" && git reset --hard 780331e3
git fetch origin master
git merge --no-edit 21f97b2e6d7c617fc0a79cc8e59b2e10690960e1
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:00ac8d2b32d98ee2c476e540a2ee462e24f50f003f31c05c8e412147e16c039e
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 melange.6.0.0-414 6.0.0-414
RUN opam reinstall melange.6.0.0-414; \
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" != 'melange.6.0.0-414' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall melange-atdgen-codec-runtime.3.0.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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'melange-atdgen-codec-runtime.3.0.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 melange-atdgen-codec-runtime.3.0.1) || true
RUN opam reinstall --with-test --verbose melange-atdgen-codec-runtime.3.0.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-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'melange-atdgen-codec-runtime.3.0.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-11-10 14:55.19: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:00ac8d2b32d98ee2c476e540a2ee462e24f50f003f31c05c8e412147e16c039e-melange.6.0.0-414-melange-atdgen-codec-runtime.3.0.1-780331e30462ca6bc8d8e82d472fe1019e01770d"
2025-11-10 14:55.19: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:00ac8d2b32d98ee2c476e540a2ee462e24f50f003f31c05c8e412147e16c039e)
(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 melange.6.0.0-414 6.0.0-414"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall melange.6.0.0-414;\
\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\" != 'melange.6.0.0-414' && 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 melange-atdgen-codec-runtime.3.0.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-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\" != 'melange-atdgen-codec-runtime.3.0.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 melange-atdgen-codec-runtime.3.0.1) || true"))
(run (shell "opam reinstall --with-test --verbose melange-atdgen-codec-runtime.3.0.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-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\" != 'melange-atdgen-codec-runtime.3.0.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-11-10 14:55.19: Waiting for resource in pool OCluster
2025-11-10 17:47.33: Waiting for worker…
2025-11-10 17:51.21: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 21f97b2e6d Merge pull request #28836 from dbuenzli/b0-publish-bytesrw.0.3.0
Updating 21f97b2e6d..780331e304
Fast-forward
packages/melange/melange.6.0.0-414/opam | 41 +++++++++++++++++++++++++++++++++
packages/melange/melange.6.0.0-51/opam | 41 +++++++++++++++++++++++++++++++++
packages/melange/melange.6.0.0-52/opam | 41 +++++++++++++++++++++++++++++++++
packages/melange/melange.6.0.0-53/opam | 41 +++++++++++++++++++++++++++++++++
packages/melange/melange.6.0.0-54/opam | 41 +++++++++++++++++++++++++++++++++
5 files changed, 205 insertions(+)
create mode 100644 packages/melange/melange.6.0.0-414/opam
create mode 100644 packages/melange/melange.6.0.0-51/opam
create mode 100644 packages/melange/melange.6.0.0-52/opam
create mode 100644 packages/melange/melange.6.0.0-53/opam
create mode 100644 packages/melange/melange.6.0.0-54/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:00ac8d2b32d98ee2c476e540a2ee462e24f50f003f31c05c8e412147e16c039e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:00ac8d2b32d98ee2c476e540a2ee462e24f50f003f31c05c8e412147e16c039e' locally
docker.io/ocaml/opam@sha256:00ac8d2b32d98ee2c476e540a2ee462e24f50f003f31c05c8e412147e16c039e: Pulling from ocaml/opam
13cc39f8244a: Already exists
b27d53669817: Already exists
062c909e206e: Already exists
265baae72087: Already exists
b6b7b385247c: Already exists
bfb7bf5b7c6d: Already exists
b18c76fc18f2: Already exists
6bdbb37ee35f: Already exists
84035aa4da2d: Already exists
0c3307e14207: Already exists
30b92d637d72: Already exists
991b07583706: Already exists
e1d7a79a1495: Already exists
6b08d63c6214: Already exists
4c7236344711: Already exists
12506f41e8b0: Already exists
12506f41e8b0: Already exists
2330d596aec1: Already exists
a48299f5ec62: Already exists
04618a577568: Already exists
8c4b002d072b: Already exists
4f4fb700ef54: Already exists
ff68f05e2976: Already exists
d5543b560a3e: Already exists
4a9030bbb1ef: Already exists
c59b3bec3411: Already exists
85a7c9be9495: Already exists
dbc6bd8f2e44: Already exists
6680a5133ca2: Already exists
470c0056084c: Already exists
6b9af56b67cf: Already exists
c572cde25fb3: Already exists
033b2d405acf: Already exists
663cc5b3d424: Already exists
840bbd47fded: Already exists
fb8f644ba010: Already exists
66735543f230: Already exists
7896354b8c11: Already exists
a0063722d8c2: Already exists
7018e4a5881b: Already exists
68cdbf191334: Pulling fs layer
32f4eb11e5dc: Pulling fs layer
eeb0425dd47f: Pulling fs layer
12428cddc61a: Pulling fs layer
32f4eb11e5dc: Verifying Checksum
32f4eb11e5dc: Download complete
eeb0425dd47f: Verifying Checksum
eeb0425dd47f: Download complete
12428cddc61a: Verifying Checksum
12428cddc61a: Download complete
68cdbf191334: Verifying Checksum
68cdbf191334: Download complete
68cdbf191334: Pull complete
32f4eb11e5dc: Pull complete
eeb0425dd47f: Pull complete
12428cddc61a: Pull complete
Digest: sha256:00ac8d2b32d98ee2c476e540a2ee462e24f50f003f31c05c8e412147e16c039e
Status: Downloaded newer image for ocaml/opam@sha256:00ac8d2b32d98ee2c476e540a2ee462e24f50f003f31c05c8e412147e16c039e
2025-11-10 17:51.24 ---> using "0a7782df646ba17c4c91deb7545267f63c19555df9b225a0640862ce540c1383" 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-11-10 17:51.24 ---> using "e3cc97f3c946abac4036e9918a15af8cd2359775cb282137405852a83e5e4ac5" 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-11-10 17:51.24 ---> using "b3771c9b2a97061bcd39a540eb46c8c9391a701a6a2417777709d0e8bcafecec" 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~alpha1
# 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 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-11-10 17:51.24 ---> using "8b9250364ffb330fc85473d01676fcba0e45f4a15f62098ec06ae23bfca0fd04" 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-11-10 17:51.24 ---> using "324936077a47671067794cc83def947ee8a01c92aab91da2d8bb3576676449b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-10 17:51.26 ---> saved as "04fbdeaa80a4eab9831af0e70efb640bca43c35dfbbd96694995424396aa490b"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-10 17:51.46 ---> saved as "492cf70bdcbace31fbeefee66836ce06c500e3d53f4fbd4136368df54a7fe13d"
/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]
- Fetched 90.7 kB in 0s (859 kB/s)
- Reading package lists...
2025-11-10 17:51.48 ---> saved as "d22f0cd5b367cfb9287c1d9bb9dde4d4608206ad7883edc3b254b074658c6225"
/home/opam: (run (shell "opam pin add -k version -yn melange.6.0.0-414 6.0.0-414"))
melange is now pinned to version 6.0.0-414
2025-11-10 17:51.49 ---> saved as "1d5090d0c69a4d3af535a1dd85be0a4f979af6933a874629bd1b4af68f850ec6"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall melange.6.0.0-414;\
\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\" != 'melange.6.0.0-414' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
melange.6.0.0-414 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
- install cmdliner 2.0.0 [required by melange]
- install cppo 1.8.0 [required by melange]
- install dune 3.20.2 [required by melange]
- install dune-build-info 3.20.2 [required by melange]
- install melange 6.0.0-414 (pinned)
- install menhir 20250912 [required by melange]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir]
- install menhirSdk 20250912 [required by menhir]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by melange]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.0.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved dune.3.20.2, dune-build-info.3.20.2 (cached)
-> retrieved melange.6.0.0-414 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> installed cmdliner.2.0.0
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.20.2
-> installed cppo.1.8.0
-> installed menhirCST.20250912
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed sexplib0.v0.17.0
-> installed dune-build-info.3.20.2
-> installed ocaml-compiler-libs.v0.12.4
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed melange.6.0.0-414
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 17:52.56 ---> saved as "891321ddb67327004dbfa57e166585e7d25b5fae777faa806fa09765f4ebe498"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall melange-atdgen-codec-runtime.3.0.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-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\" != 'melange-atdgen-codec-runtime.3.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
melange-atdgen-codec-runtime.3.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
- install atd 2.16.0 [required by melange-atdgen-codec-runtime]
- install atdgen 2.16.0 [required by melange-atdgen-codec-runtime]
- install atdgen-runtime 2.16.0 [required by atdgen]
- install biniou 1.2.2 [required by atdgen]
- install camlp-streams 5.0.1 [required by biniou]
- install easy-format 1.3.4 [required by atd]
- install melange-atdgen-codec-runtime 3.0.1
- install melange-json 2.0.0 [required by melange-atdgen-codec-runtime]
- install re 1.14.0 [required by atd, atdgen]
- install seq base [required by yojson]
- install yojson 2.2.2 [required by atd, atdgen]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved atd.2.16.0, atdgen.2.16.0, atdgen-runtime.2.16.0 (cached)
-> retrieved biniou.1.2.2 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved easy-format.1.3.4 (cached)
-> retrieved melange-atdgen-codec-runtime.3.0.1 (https://opam.ocaml.org/cache)
-> retrieved melange-json.2.0.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved yojson.2.2.2 (cached)
-> installed camlp-streams.5.0.1
-> installed easy-format.1.3.4
-> installed biniou.1.2.2
-> installed re.1.14.0
-> installed yojson.2.2.2
-> installed atdgen-runtime.2.16.0
-> installed melange-json.2.0.0
-> installed atd.2.16.0
-> installed atdgen.2.16.0
-> installed melange-atdgen-codec-runtime.3.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-10 17:53.08 ---> saved as "9ece706ec1ab5da347c797046eaaf1bfa494beb089c3e73e1e45ab7da7c1fd4c"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test melange-atdgen-codec-runtime.3.0.1) || true"))
* Missing dependency:
- melange-atdgen-codec-runtime >= 3.0.1 -> opam-check-npm-deps
unmet availability conditions, e.g. 'opam-version >= "2.4" & opam-version < "2.5"'
No solution found, exiting
2025-11-10 17:53.14 ---> saved as "b49127eb770c89309e64bb8691198296ac5c76f864041a860f6b0141c3d0c4b9"
/home/opam: (run (shell "opam reinstall --with-test --verbose melange-atdgen-codec-runtime.3.0.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-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\" != 'melange-atdgen-codec-runtime.3.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
* Missing dependency:
- melange-atdgen-codec-runtime >= 3.0.1 -> opam-check-npm-deps
unmet availability conditions, e.g. 'opam-version >= "2.4" & opam-version < "2.5"'
No solution found, exiting
'opam reinstall --with-test --verbose melange-atdgen-codec-runtime.3.0.1' failed.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose melange-atdgen-codec-runtime.3.0.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-13\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'melange-atdgen-codec-runtime.3.0.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-11-10 17:53.38: Job failed: Failed: Build failed
2025-11-10 17:53.38: Log analysis:
2025-11-10 17:53.38: >>>
No solution found, exiting
(score = 100)
2025-11-10 17:53.38: >>>
No solution found, exiting
(score = 100)
2025-11-10 17:53.38: [SKIP] Package not available