Build:
  1. 0
2026-01-22 21:52.32: New job: test intel_hex.0.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29266/head (ae1e7f899409044c5ce16095c05689b61dacec3c)
                              on debian-unstable-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/29266/head" && git reset --hard ae1e7f89
git fetch origin master
git merge --no-edit 69f4d66596cd0a420dffdd43036a9eeb0b410d84
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234
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 intel_hex.0.2 0.2
RUN opam reinstall intel_hex.0.2; \
    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-unstable\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'intel_hex.0.2' && 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 intel_hex.0.2) || true
RUN opam reinstall --with-test --verbose intel_hex.0.2; \
    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-unstable\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'intel_hex.0.2' && 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 .

2026-01-22 21:52.32: Using cache hint "ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234-intel_hex.0.2-ae1e7f899409044c5ce16095c05689b61dacec3c"
2026-01-22 21:52.32: Using OBuilder spec:
((from ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234)
 (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 intel_hex.0.2 0.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall intel_hex.0.2;\
             \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-unstable\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'intel_hex.0.2' && 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 intel_hex.0.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose intel_hex.0.2;\
             \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-unstable\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'intel_hex.0.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-22 21:52.32: Waiting for resource in pool OCluster
2026-01-23 07:37.51: Waiting for worker…
2026-01-23 07:42.43: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 69f4d66596 Merge pull request #29159 from tbrk/release-ortools-9.14.0
Updating 69f4d66596..ae1e7f8994
Fast-forward
 packages/intel_hex/intel_hex.0.1/opam |  1 +
 packages/intel_hex/intel_hex.0.2/opam | 37 +++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)
 create mode 100644 packages/intel_hex/intel_hex.0.2/opam

(from ocaml/opam:debian-unstable-ocaml-4.14@sha256:877f401ba4bf492d9b9b852542d7ba21baebf850b4d7bfed2a458934758d9234)
2026-01-23 07:42.46 ---> using "b462075ce39918979f5d46f895062d08f07edac802eb7daefb45e42c925c98e1" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-23 07:42.46 ---> using "581c964e68c07fbeb1f65d54c65a2fefdf27a535243971df4ba8254b219fcf7b" 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ocaml-patches-overlay] synchronised from git+https://github.com/ocurrent/opam-repository#patches
[default] Initialised
2026-01-23 07:42.46 ---> using "77050ad4c9fedcd0e4b840e14b66917d7fd59a01e5f2df0c5664cff5ff69a076" 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=unknown
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         2 (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
2026-01-23 07:42.46 ---> using "95b194353f2b76e23e866c97fa41c13f8a7e60efd815b1ffe956cfbdb2b002ed" 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/"))
2026-01-23 07:42.46 ---> using "655981729f8b0b2c5918f390c11cf134c3350c092adcd061f27cdcc6a70bfe21" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-23 07:42.52 ---> saved as "1deff8aae69640166d6aeccd3ff23c8426cc79b59a19a1dd77831f5013400c21"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-23 07:43.11 ---> saved as "efc151ecc7704f4e623b692d9fc857e3de710c58017654b37deba8fc387de95e"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian unstable InRelease [187 kB]
- Get:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-01-23-0216.34-F-2026-01-16-2009.15.pdiff [943 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-01-23-0216.34-F-2026-01-16-2009.15.pdiff [943 kB]
- Fetched 1194 kB in 2s (787 kB/s)
- Reading package lists...
- 
2026-01-23 07:43.13 ---> saved as "48083ea18726391e2da3cee715a347d42b26cc7114d6b178936dd6b48ed3e9d2"

/home/opam: (run (shell "opam pin add -k version -yn intel_hex.0.2 0.2"))
intel_hex is now pinned to version 0.2
2026-01-23 07:43.14 ---> saved as "0afba409f85632706786ff895c57acdd1030947b485b27b2a04367d8cd579729"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall intel_hex.0.2;\
                        \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-unstable\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'intel_hex.0.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
intel_hex.0.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 2 packages
  - recompile ocaml       4.14.2       [upstream or system changes]
  - recompile opam-depext 1.2.3        [uses ocaml]
=== install 7 packages
  - install   cstruct     6.2.0        [required by intel_hex]
  - install   dune        3.21.0       [required by intel_hex]
  - install   fmt         0.11.0       [required by cstruct]
  - install   intel_hex   0.2 (pinned)
  - install   ocamlbuild  0.16.1       [required by fmt]
  - install   ocamlfind   1.9.8        [required by fmt]
  - install   topkg       1.1.1        [required by fmt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cstruct.6.2.0  (cached)
-> retrieved dune.3.21.0  (cached)
-> retrieved fmt.0.11.0  (cached)
[ERROR] Failed to get sources of intel_hex.0.2: Bad checksum
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   opam-depext.1.2.3
-> removed   ocaml.4.14.2
-> installed ocaml.4.14.2
-> retrieved topkg.1.1.1  (cached)
-> installed opam-depext.1.2.3
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed dune.3.21.0
-> installed cstruct.6.2.0

#=== ERROR while fetching sources for intel_hex.0.2 ===========================#
OpamSolution.Fetch_fail("https://github.com/dx3mod/intel_hex/archive/refs/tags/0.2.tar.gz (Bad checksum, expected md5=d41d8cd98f00b204e9800998ecf8427e)")


<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - fetch intel_hex 0.2
+- 
+- The following changes have been performed
| - recompile ocaml       4.14.2
| - recompile opam-depext 1.2.3
| - install   cstruct     6.2.0
| - install   dune        3.21.0
| - install   fmt         0.11.0
| - install   ocamlbuild  0.16.1
| - install   ocamlfind   1.9.8
| - install   topkg       1.1.1
+- 

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260123074315.export"
"/usr/bin/env" "bash" "-c" "opam reinstall intel_hex.0.2;
        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-unstable\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'intel_hex.0.2' && 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
2026-01-23 07:43.49: Job failed: Failed: Build failed
2026-01-23 07:43.49: Log analysis:
2026-01-23 07:43.49: >>> 
[ERROR] Failed to get sources of intel_hex.0.2: Bad checksum
 (score = 25)
2026-01-23 07:43.49: Failed to get sources of intel_hex.0.2: Bad checksum