2025-11-21 15:17.27: New job: test ocaml/odoc https://github.com/ocaml/odoc.git#refs/pull/1392/head (af7dabc3422068eac96f16ea7fb40aa9a95d01a7) (linux-x86_64:opensuse-15.6-4.14_opam-2.4)Base: ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde42181110Opam project buildTo reproduce locally:git clone --recursive "https://github.com/ocaml/odoc.git" && cd "odoc" && git fetch origin "refs/pull/1392/head" && git reset --hard af7dabc3cat > Dockerfile <<'END-OF-DOCKERFILE'FROM ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde42181110# opensuse-15.6-4.14_opam-2.4USER 1000:1000ENV CLICOLOR_FORCE="1"ENV OPAMCOLOR="always"WORKDIR /srcRUN sudo ln -f /usr/bin/opam-2.4 /usr/bin/opamRUN opam init --reinit -niRUN uname -rs && opam exec -- ocaml -version && opam --versionWORKDIR /srcRUN sudo chown opam /srcRUN cd ~/opam-repository && (git cat-file -e 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -uCOPY --chown=1000:1000 sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam ./RUN opam pin add -yn sherlodoc.dev './' && \opam pin add -yn odoc.dev './' && \opam pin add -yn odoc-parser.dev './' && \opam pin add -yn odoc-md.dev './' && \opam pin add -yn odoc-driver.dev './' && \opam pin add -yn odoc-bench.dev './'RUN echo '(lang dune 3.0)' > './dune-project'ENV DEPS="alcotest.1.9.1 astring.0.8.5 b0.0.0.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.8 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.20.2 dune-configurator.3.20.2 fieldslib.v0.16.0 fmt.0.11.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-toplevel.6.2.0 jst-config.v0.16.0 logs.0.10.0 lwt.5.9.2 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.1.1 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0"ENV CI="true"ENV OCAMLCI="true"RUN opam update --depexts && opam install --cli=2.4 --depext-only -y sherlodoc.dev odoc.dev odoc-parser.dev odoc-md.dev odoc-bench.dev $DEPSRUN opam install $DEPSCOPY --chown=1000:1000 . /srcRUN opam exec -- dune build --only-packages=sherlodoc,odoc,odoc-parser,odoc-md,odoc-bench @install @check @runtest && rm -rf _buildEND-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2025-11-21 15:17.27: Using cache hint "ocaml/odoc-ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde42181110-opensuse-15.6-4.14_opam-2.4-75d59d2920fd72d4c4be82da2a13edae"2025-11-21 15:17.27: Using OBuilder spec:((from ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde42181110)(comment opensuse-15.6-4.14_opam-2.4)(user (uid 1000) (gid 1000))(env CLICOLOR_FORCE 1)(env OPAMCOLOR always)(workdir /src)(run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))(run (shell "opam init --reinit -ni"))(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))(workdir /src)(run (shell "sudo chown opam /src"))(run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "cd ~/opam-repository && (git cat-file -e 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -u"))(copy (src sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam)(dst ./))(run (network host)(shell "opam pin add -yn sherlodoc.dev './' && \\nopam pin add -yn odoc.dev './' && \\nopam pin add -yn odoc-parser.dev './' && \\nopam pin add -yn odoc-md.dev './' && \\nopam pin add -yn odoc-driver.dev './' && \\nopam pin add -yn odoc-bench.dev './'"))(run (network host)(shell "echo '(lang dune 3.0)' > './dune-project'"))(env DEPS "alcotest.1.9.1 astring.0.8.5 b0.0.0.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.8 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.20.2 dune-configurator.3.20.2 fieldslib.v0.16.0 fmt.0.11.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-toplevel.6.2.0 jst-config.v0.16.0 logs.0.10.0 lwt.5.9.2 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.1.1 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0")(env CI true)(env OCAMLCI true)(run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y sherlodoc.dev odoc.dev odoc-parser.dev odoc-md.dev odoc-bench.dev $DEPS"))(run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "opam install $DEPS"))(copy (src .) (dst /src))(run (shell "opam exec -- dune build --only-packages=sherlodoc,odoc,odoc-parser,odoc-md,odoc-bench @install @check @runtest && rm -rf _build")))2025-11-21 15:17.27: Waiting for resource in pool OCluster2025-11-21 15:17.27: Waiting for worker…2025-11-21 15:19.16: Got resource from pool OClusterBuilding on asteria.caelum.ci.devAll commits already cachedHEAD is now at af7dabc34 rename odoc.mld to index.mld(from ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde42181110)Unable to find image 'ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde42181110' locallydocker.io/ocaml/opam@sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde42181110: Pulling from ocaml/opamda93b232adde: Pulling fs layer7903a71ea157: Pulling fs layer24d4b83eee7e: Pulling fs layer7dff2e14c5bd: Pulling fs layer0f138fc8e464: Pulling fs layer7dff2e14c5bd: Waiting0f138fc8e464: Waiting24d4b83eee7e: Verifying Checksum24d4b83eee7e: Download complete7dff2e14c5bd: Verifying Checksum7dff2e14c5bd: Download complete0f138fc8e464: Verifying Checksum0f138fc8e464: Download complete7903a71ea157: Verifying Checksum7903a71ea157: Download completeda93b232adde: Verifying Checksumda93b232adde: Download completeda93b232adde: Pull complete7903a71ea157: Pull complete24d4b83eee7e: Pull complete7dff2e14c5bd: Pull complete0f138fc8e464: Pull completeDigest: sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde42181110Status: Downloaded newer image for ocaml/opam@sha256:145b96003dde434b4eda40a9de80da9499d9e91230ed0581b7715fde421811102025-11-21 15:19.26 ---> using "80b82ea15a009dbca9c242ea2b25c0270b4333c1c06866b48720d316909e6d48" from cache/: (comment opensuse-15.6-4.14_opam-2.4)/: (user (uid 1000) (gid 1000))/: (env CLICOLOR_FORCE 1)/: (env OPAMCOLOR always)/: (workdir /src)/src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))2025-11-21 15:19.26 ---> using "5e433c85339268a7c1ded19dfb8778ffc8fa649729327850212d4635f930ed42" from cache/src: (run (shell "opam init --reinit -ni"))Configuring from /home/opam/.opamrc and then 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] yFormat upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] Initialised2025-11-21 15:19.26 ---> using "b5f3edddc8bab15567decb5aac06c84669fa8595d4f0e411106e2acc2f76b8e5" from cache/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Linux 6.8.0-87-genericThe OCaml toplevel, version 4.14.22.4.12025-11-21 15:19.26 ---> using "608cedd9866c96bd21af41b8d3ca4140aab2c4b213ed403fc455d48d553d853c" from cache/src: (workdir /src)/src: (run (shell "sudo chown opam /src"))2025-11-21 15:19.26 ---> using "6be61a70a83d98e198a5673cd0e0b29b603bbdd382b8f6f2e64e51d6038774f3" from cache/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "cd ~/opam-repository && (git cat-file -e 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 || git fetch origin master) && git reset -q --hard 1ec0eeb78dfedb9d754ae7abb8baed71c715f786 && git log --no-decorate -n1 --oneline && opam update -u"))From https://github.com/ocaml/opam-repository* branch master -> FETCH_HEAD6c1b386202..ee3428377a master -> origin/master1ec0eeb78d Merge pull request #28897 from dra27/ocamlfind-msys2-cygwin<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///home/opam/opam-repositoryEverything as up-to-date as possible (run with --verbose to show unavailable upgrades).However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.4.0"), which will ask permission to downgrade or uninstall the conflicting packages.Nothing to do.# To update the current shell environment, run: eval $(opam env)2025-11-21 15:19.48 ---> saved as "f10ac0c506429eed727cfebb9746f39d46de17217ac2d0373085c419a5376952"/src: (copy (src sherlodoc.opam odoc.opam odoc-parser.opam odoc-md.opam odoc-driver.opam odoc-bench.opam)(dst ./))2025-11-21 15:19.48 ---> saved as "1768df5d1071034767683bdcf59db2992ea9d21fa724bee075a1b69c3dab2bfb"/src: (run (network host)(shell "opam pin add -yn sherlodoc.dev './' && \\nopam pin add -yn odoc.dev './' && \\nopam pin add -yn odoc-parser.dev './' && \\nopam pin add -yn odoc-md.dev './' && \\nopam pin add -yn odoc-driver.dev './' && \\nopam pin add -yn odoc-bench.dev './'"))[sherlodoc.dev] synchronised (file:///src)sherlodoc is now pinned to file:///src (version dev)[odoc.dev] synchronised (file:///src)odoc is now pinned to file:///src (version dev)[odoc-parser.dev] synchronised (file:///src)odoc-parser is now pinned to file:///src (version dev)[odoc-md.dev] synchronised (file:///src)odoc-md is now pinned to file:///src (version dev)[odoc-driver.dev] synchronised (file:///src)odoc-driver is now pinned to file:///src (version dev)[NOTE] Package odoc-bench does not exist in opam repositories registered in the current switch.[odoc-bench.dev] synchronised (file:///src)odoc-bench is now pinned to file:///src (version dev)2025-11-21 15:19.52 ---> saved as "ff79f064dff984d050b01c9f808f0095b7bc03c4bb64701edbc04da2ca4f9947"/src: (run (network host)(shell "echo '(lang dune 3.0)' > './dune-project'"))2025-11-21 15:19.52 ---> saved as "4cdc1f6056b29377e52a4510ae35f27021203274ae1ee373d38d8fa9c0867eac"/src: (env DEPS "alcotest.1.9.1 astring.0.8.5 b0.0.0.5 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigstringaf.0.10.0 bin_prot.v0.16.0 bisect_ppx.2.8.3 bos.0.2.1 brr.0.0.8 camlp-streams.5.0.1 checkseum.0.5.2 cmarkit.0.3.0 cmdliner.1.3.0 conf-jq.1 core.v0.16.2 core_kernel.v0.16.0 cppo.1.8.0 crunch.4.0.0 csexp.1.5.2 decompress.1.5.3 dune.3.20.2 dune-configurator.3.20.2 fieldslib.v0.16.0 fmt.0.11.0 fpath.0.7.3 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 js_of_ocaml-toplevel.6.2.0 jst-config.v0.16.0 logs.0.10.0 lwt.5.9.2 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 odig.0.0.9 optint.0.3.0 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_blob.0.9.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 ptime.1.2.0 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 time_now.v0.16.0 topkg.1.1.1 typerep.v0.16.0 tyxml.4.6.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0")/src: (env CI true)/src: (env OCAMLCI true)/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y sherlodoc.dev odoc.dev odoc-parser.dev odoc-md.dev odoc-bench.dev $DEPS"))+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"- Retrieving repository 'Update repository of openSUSE Backports' metadata [..- Looking for gpg keys in repository Update repository of openSUSE Backports.- gpgkey=http://download.opensuse.org/update/leap/15.6/backports/repodata/repomd.xml.key- ...- .....- ...- ....- ....- ....- ....- ......-- Warning: Digest verification failed for file '160017104c81f59a685596acbb2b6317b417939740d54444c586cf0cb7029e1b-deltainfo.xml.gz'- [/var/tmp/AP_0xcYlL4u/repodata/160017104c81f59a685596acbb2b6317b417939740d54444c586cf0cb7029e1b-deltainfo.xml.gz]-- expected 160017104c81f59a685596acbb2b6317b417939740d54444c586cf0cb7029e1b- but got 9824ea476166c3e7bb68d453bcb265b1f918e009bac98c94dc96187acba8250c-- Accepting packages with wrong checksums can lead to a corrupted system and in extreme cases even to a system compromise.-- However if you made certain that the file with checksum '9824..' is secure, correct- and should be used within this operation, enter the first 4 characters of the checksum- to unblock using this file on your own risk. Empty input will discard the file.-- Unblock or discard? [9824/...? shows all options] (discard): discard- error]- Repository 'Update repository of openSUSE Backports' is invalid.- [repo-backports-update|http://download.opensuse.org/update/leap/15.6/backports/] Failed to retrieve new repository metadata.- History:- - 160017104c81f59a685596acbb2b6317b417939740d54444c586cf0cb7029e1b-deltainfo.xml.gz has wrong checksum- Please check if the URIs defined for this repository are pointing to a valid repository.- Skipping repository 'Update repository of openSUSE Backports' because of the above error.- Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [..- Looking for gpg keys in repository Update repository with updates from SUSE Linux Enterprise 15.- gpgkey=http://download.opensuse.org/update/leap/15.6/sle/repodata/repomd.xml.key- ..- .....- ....- ....- ....- ....- .......-- Warning: Digest verification failed for file 'ebfa0f7aa8c16c599b9aa3b4feec662835d848f502f1259c836153f83b121b36-deltainfo.xml.gz'- [/var/tmp/AP_0xNwpMMb/repodata/ebfa0f7aa8c16c599b9aa3b4feec662835d848f502f1259c836153f83b121b36-deltainfo.xml.gz]-- expected ebfa0f7aa8c16c599b9aa3b4feec662835d848f502f1259c836153f83b121b36- but got 3920b4136afd4d3965cfbe90becf547d59f57328e6f0d91c151dd9c80fe1f64e-- Accepting packages with wrong checksums can lead to a corrupted system and in extreme cases even to a system compromise.-- However if you made certain that the file with checksum '3920..' is secure, correct- and should be used within this operation, enter the first 4 characters of the checksum- to unblock using this file on your own risk. Empty input will discard the file.-- Unblock or discard? [3920/...? shows all options] (discard): discard- error]- Repository 'Update repository with updates from SUSE Linux Enterprise 15' is invalid.- [repo-sle-update|http://download.opensuse.org/update/leap/15.6/sle/] Failed to retrieve new repository metadata.- History:- - ebfa0f7aa8c16c599b9aa3b4feec662835d848f502f1259c836153f83b121b36-deltainfo.xml.gz has wrong checksum- Please check if the URIs defined for this repository are pointing to a valid repository.- Skipping repository 'Update repository with updates from SUSE Linux Enterprise 15' because of the above error.- Retrieving repository 'Main Update Repository' metadata [.- .- Looking for gpg keys in repository Main Update Repository.- gpgkey=http://download.opensuse.org/update/leap/15.6/oss/repodata/repomd.xml.key- ......- ....- ....- ....- .......- .......-- Warning: Digest verification failed for file '619f17e009c9032b919f749f906ddb01fccb7cd9f2da8e4ca7c451156b0a0fd8-primary.xml.gz'- [/var/tmp/AP_0xMNEjI8/repodata/619f17e009c9032b919f749f906ddb01fccb7cd9f2da8e4ca7c451156b0a0fd8-primary.xml.gz]-- expected 619f17e009c9032b919f749f906ddb01fccb7cd9f2da8e4ca7c451156b0a0fd8- but got 4f452cc5aa74d72c9f56ebddf0306eb75e805b46aa785a655ea6bd0230b5cb18-- Accepting packages with wrong checksums can lead to a corrupted system and in extreme cases even to a system compromise.-- However if you made certain that the file with checksum '4f45..' is secure, correct- and should be used within this operation, enter the first 4 characters of the checksum- to unblock using this file on your own risk. Empty input will discard the file.-- Unblock or discard? [4f45/...? shows all options] (discard): discard- error]- Repository 'Main Update Repository' is invalid.- [repo-update|http://download.opensuse.org/update/leap/15.6/oss/] Failed to retrieve new repository metadata.- History:- - 619f17e009c9032b919f749f906ddb01fccb7cd9f2da8e4ca7c451156b0a0fd8-primary.xml.gz has wrong checksum- Please check if the URIs defined for this repository are pointing to a valid repository.- Skipping repository 'Main Update Repository' because of the above error.- Repository 'Update Repository (Non-Oss)' is up to date.- Repository 'Non-OSS Repository' is up to date.- Repository 'Main Repository' is up to date.- Some of the repositories have not been refreshed because of an error.Fatal error: System package update failed with exit code 4 at command:sudo zypper --non-interactive refresh"/usr/bin/env" "bash" "-c" "opam update --depexts && opam install --cli=2.4 --depext-only -y sherlodoc.dev odoc.dev odoc-parser.dev odoc-md.dev odoc-bench.dev $DEPS" failed with exit status 992025-11-21 15:20.13: Job failed: Failed: Build failed