Build:
  1. 0
2026-01-27 19:21.39: New job: test dream-html.3.0.1 with mirage-runtime.4.7.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29297/head (bec96dd4b29b0e3eb148af9966895e70442e68e2)
                              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/29297/head" && git reset --hard bec96dd4
git fetch origin master
git merge --no-edit 88150787b3c9df767fd8dadf5d416641f8ee58f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
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 mirage-runtime.4.7.0 4.7.0
RUN opam reinstall mirage-runtime.4.7.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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mirage-runtime.4.7.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall dream-html.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" != 'dream-html.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 dream-html.3.0.1) || true
RUN opam reinstall --with-test --verbose dream-html.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" != 'dream-html.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 .

2026-01-27 19:21.39: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012-mirage-runtime.4.7.0-dream-html.3.0.1-bec96dd4b29b0e3eb148af9966895e70442e68e2"
2026-01-27 19:21.39: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012)
 (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 mirage-runtime.4.7.0 4.7.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall mirage-runtime.4.7.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 \"\\\"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\" != 'mirage-runtime.4.7.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dream-html.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\" != 'dream-html.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 dream-html.3.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose dream-html.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\" != 'dream-html.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"))
)

2026-01-27 19:21.39: Waiting for resource in pool OCluster
2026-01-27 19:34.32: Waiting for worker…
2026-01-27 19:35.03: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
error: unable to create file .github/workflows/unlabel.yml: No space left on device
error: unable to create file .github/workflows/windows.yml: No space left on device
error: unable to create file .gitignore: No space left on device
error: unable to create file governance/README.md: No space left on device
error: unable to create file governance/policies/README.md: No space left on device
error: unable to create file packages/0install-gtk/0install-gtk.2.18/opam: No space left on device
error: unable to create file packages/0install/0install.2.16/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.7/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8.1/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8.2/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8.3/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8.4/opam: No space left on device
error: unable to create file packages/ANSITerminal/ANSITerminal.0.8.5/opam: No space left on device
error: unable to create file packages/FPauth-core/FPauth-core.1.0.0/opam: No space left on device
error: unable to create file packages/FPauth-responses/FPauth-responses.1.0.0/opam: No space left on device
error: unable to create file packages/FPauth-strategies/FPauth-strategies.1.0.0/opam: No space left on device
error: unable to create file packages/FPauth/FPauth.1.0.0/opam: No space left on device
error: unable to create file packages/FrontC/FrontC.3.4.1/opam: No space left on device
error: unable to create file packages/FrontC/FrontC.3.4.3-1/opam: No space left on device
error: unable to create file packages/FrontC/FrontC.4.0.0/opam: No space left on device
error: unable to create file packages/GT/GT.0.4.2/opam: No space left on device
error: unable to create file packages/GT/GT.0.5.0/opam: No space left on device
error: unable to create file packages/GT/GT.0.5.1/opam: No space left on device
error: unable to create file packages/GuaCaml/GuaCaml.0.05/opam: No space left on device
error: unable to create file packages/ISO3166/ISO3166.0.1.0/opam: No space left on device
error: unable to create file packages/ISO8601/ISO8601.0.2.0/opam: No space left on device
error: unable to create file packages/ISO8601/ISO8601.0.2.2/opam: No space left on device
error: unable to create file packages/ISO8601/ISO8601.0.2.4/opam: No space left on device
error: unable to create file packages/ISO8601/ISO8601.0.2.5/opam: No space left on device
error: unable to create file packages/MlFront_Cli/MlFront_Cli.2.3.1/opam: No space left on device
error: unable to create file packages/MlFront_Config/MlFront_Config.2.4.2.30/opam: No space left on device
error: unable to create file packages/MlFront_Core/MlFront_Core.2.3.0/opam: No space left on device
error: unable to create file packages/MlFront_Errors/MlFront_Errors.2.3.1/opam: No space left on device
error: unable to create file packages/MlFront_Logs/MlFront_Logs.2.3.1/opam: No space left on device
error: unable to create file packages/MlFront_Logs/MlFront_Logs.2.4.2.30/opam: No space left on device
error: unable to create file packages/MlFront_Thunk/MlFront_Thunk.2.4.2.30/opam: No space left on device
error: unable to create file packages/MlFront_ZipFile/MlFront_ZipFile.2.3.0/opam: No space left on device
error: unable to create file packages/OCADml/OCADml.0.1.0/opam: No space left on device
error: unable to create file packages/OCADml/OCADml.0.1.1/opam: No space left on device
error: unable to create file packages/OCanren-ppx/OCanren-ppx.0.3.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.1.1.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.2.0.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.2.1.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.2.1.1/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.2.3.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.3.0.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.4.1.0/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.4.1.3/opam: No space left on device
error: unable to create file packages/SZXX/SZXX.4.2.0/opam: No space left on device
error: unable to create file packages/Snowflake/Snowflake.0.01/opam: No space left on device
error: unable to create file packages/Snowflake/Snowflake.0.02.01/opam: No space left on device
error: unable to create file packages/Snowflake/Snowflake.0.02.02/opam: No space left on device
error: unable to create file packages/Snowflake/Snowflake.0.02/opam: No space left on device
error: unable to create file packages/aacplus/aacplus.0.2.2/opam: No space left on device
error: unable to create file packages/aarch64-esperanto/aarch64-esperanto.0.0.5/opam: No space left on device
error: unable to create file packages/aarch64-esperanto/aarch64-esperanto.0.0.6/opam: No space left on device
error: unable to create file packages/absolute/absolute.0.1/opam: No space left on device
error: unable to create file packages/accessor_async/accessor_async.v0.14.0/opam: No space left on device
error: unable to create file packages/accessor_async/accessor_async.v0.14.1/opam: No space left on device
error: unable to create file packages/accessor_async/accessor_async.v0.15.0/opam: No space left on device
error: unable to create file packages/accessor_async/accessor_async.v0.16.0/opam: No space left on device
error: unable to create file packages/accessor_core/accessor_core.v0.16.0/opam: No space left on device
error: unable to create file packages/accessor_core/accessor_core.v0.17.0/opam: No space left on device
error: unable to create file packages/acgtk/acgtk.1.5.3/opam: No space left on device
error: unable to create file packages/acgtk/acgtk.2.1.0/opam: No space left on device
error: unable to create file packages/acgtk/acgtk.2.2.0/opam: No space left on device
error: unable to create file packages/aches/aches.1.0.0/opam: No space left on device
error: unable to create file packages/aches/aches.1.1.0/opam: No space left on device
error: unable to create file packages/afl-persistent/afl-persistent.1.4/opam: No space left on device
error: unable to create file packages/aifad/aifad.2.2.2/opam: No space left on device
error: unable to create file packages/aifad/aifad.2.3.0/opam: No space left on device
error: unable to create file packages/aifad/aifad.2.3.2/opam: No space left on device
error: unable to create file packages/aio/aio.0.0.3/opam: No space left on device
error: unable to create file packages/alba/alba.0.4.2/opam: No space left on device
fatal: Could not reset index file to revision '88150787b3c9df767fd8dadf5d416641f8ee58f8'.
git-reset failed with exit-code 128
2026-01-27 19:35.15: Job failed: Failed: Build failed