(not at the head of any monitored branch or PR)
2026-05-06 16:08.21: New job: test mfat.0.0.1~beta1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29866/head (6d7e98a672c81f54f403d7276f03661f81f096ec)
                              on debian-13-ocaml-5.4-afl/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/29866/head" && git reset --hard 6d7e98a6
git fetch origin master
git merge --no-edit 14640dc0cb5ad592a5350f7e5ba29e794675f078
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4-afl@sha256:81389f0ee2bccdf962c57049b003500bb15a9611d8fe9a252195fe0c53d75813
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 mfat.0.0.1~beta1 0.0.1~beta1
RUN opam reinstall mfat.0.0.1~beta1; \
    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" != 'mfat.0.0.1~beta1' && 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 mfat.0.0.1~beta1) || true
RUN opam reinstall --with-test --verbose mfat.0.0.1~beta1; \
    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" != 'mfat.0.0.1~beta1' && 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-05-06 16:08.21: Using cache hint "ocaml/opam:debian-13-ocaml-5.4-afl@sha256:81389f0ee2bccdf962c57049b003500bb15a9611d8fe9a252195fe0c53d75813-mfat.0.0.1~beta1-6d7e98a672c81f54f403d7276f03661f81f096ec"
2026-05-06 16:08.21: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4-afl@sha256:81389f0ee2bccdf962c57049b003500bb15a9611d8fe9a252195fe0c53d75813)
 (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 mfat.0.0.1~beta1 0.0.1~beta1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall mfat.0.0.1~beta1;\
             \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\" != 'mfat.0.0.1~beta1' && 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 mfat.0.0.1~beta1) || true"))
 (run (shell  "opam reinstall --with-test --verbose mfat.0.0.1~beta1;\
             \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\" != 'mfat.0.0.1~beta1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-05-06 16:08.21: Waiting for resource in pool OCluster
2026-05-06 16:08.22: Waiting for worker…
2026-05-06 16:08.22: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 14640dc0cb Merge pull request #29859 from dinosaure/release-httpcats-v0.3.0
Updating 14640dc0cb..6d7e98a672
Fast-forward
 packages/mfat/mfat.0.0.1~beta1/opam | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 packages/mfat/mfat.0.0.1~beta1/opam

(from ocaml/opam:debian-13-ocaml-5.4-afl@sha256:81389f0ee2bccdf962c57049b003500bb15a9611d8fe9a252195fe0c53d75813)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4-afl@sha256:81389f0ee2bccdf962c57049b003500bb15a9611d8fe9a252195fe0c53d75813' locally
docker.io/ocaml/opam@sha256:81389f0ee2bccdf962c57049b003500bb15a9611d8fe9a252195fe0c53d75813: Pulling from ocaml/opam
3b32e3bb7338: Already exists
0a2047d92c36: Already exists
6468c8739f79: Already exists
dc1c52e586c3: Already exists
62b886ae38ec: Already exists
c217a15c852c: Already exists
1631c3f40e56: Already exists
fec1b7aa2529: Already exists
46c2f2e52299: Already exists
dfd625f9488b: Already exists
a92b2bbc3601: Already exists
21b06961f9ce: Already exists
56ea7bb8517a: Already exists
f88fa5fac715: Already exists
ef860ccaf48a: Already exists
7299894d19a3: Already exists
cfd8a5bbbbad: Already exists
458be87cd8e2: Already exists
d25c8303c40a: Already exists
0dd0c180412f: Already exists
3cce6b8d3022: Already exists
48811119dc00: Already exists
4f4fb700ef54: Already exists
9274adcd9010: Already exists
d7f1811cc461: Already exists
9883b0c98d0f: Already exists
9be0dcfb3ea0: Already exists
b64ebb6ea54f: Already exists
7f7a3980142e: Already exists
c4dd42c2d373: Already exists
bd37488f4682: Already exists
efaea8bd3292: Already exists
d08303018370: Already exists
ccb64fc6d165: Already exists
df5461936c45: Already exists
4ad6d8be4e6f: Already exists
ad49b5bd4234: Already exists
3cca9ef56161: Already exists
4917de64b7d3: Already exists
0ce36fc523dd: Already exists
ec347e98f03b: Already exists
5cbe452374d7: Pulling fs layer
47be56644d63: Pulling fs layer
6b525ee5d518: Pulling fs layer
22bc640b9103: Pulling fs layer
6a8a0be27a99: Pulling fs layer
c0a0a00f2e07: Pulling fs layer
78a7c17a49eb: Pulling fs layer
22bc640b9103: Waiting
6a8a0be27a99: Waiting
c0a0a00f2e07: Waiting
78a7c17a49eb: Waiting
6b525ee5d518: Verifying Checksum
6b525ee5d518: Download complete
5cbe452374d7: Download complete
47be56644d63: Download complete
5cbe452374d7: Pull complete
47be56644d63: Pull complete
6b525ee5d518: Pull complete
6a8a0be27a99: Download complete
c0a0a00f2e07: Verifying Checksum
c0a0a00f2e07: Download complete
78a7c17a49eb: Verifying Checksum
78a7c17a49eb: Download complete
22bc640b9103: Verifying Checksum
22bc640b9103: Download complete
22bc640b9103: Pull complete
6a8a0be27a99: Pull complete
c0a0a00f2e07: Pull complete
78a7c17a49eb: Pull complete
Digest: sha256:81389f0ee2bccdf962c57049b003500bb15a9611d8fe9a252195fe0c53d75813
Status: Downloaded newer image for ocaml/opam@sha256:81389f0ee2bccdf962c57049b003500bb15a9611d8fe9a252195fe0c53d75813
2026-05-06 16:08.50 ---> using "acaae621115dd6e3feafbae3ac1b36f1e4c5e50add9d90d2363cbcfd30060989" 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-05-06 16:08.50 ---> using "f56d0de7d45bc083014140090b5bc795ef81f80deff4ddb138358f366b1e9c52" 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
2026-05-06 16:08.50 ---> using "ff4645dacda1d124fc3eb77f7ae7f9c38f055b20e11c665d31ea8687347022da" 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.1
# 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       5.4
# invariant            ["ocaml-variants" {= "5.4.1+options"}]
# compiler-packages    ocaml-compiler.5.4.1, ocaml-option-afl.1, ocaml-options-only-afl.1, ocaml-variants.5.4.1+options
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1+options+afl
2026-05-06 16:08.50 ---> using "f0c221e964c28d48bd1de2de4ec5faad0f9c04e34a76cb536ff71611b8272f10" 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-05-06 16:08.50 ---> using "2bc06a857c744c09b6a0f71ee16ecb428e55ff1adda65656f6f31591b04b9cd1" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-05-06 16:08.58 ---> saved as "6471ca4e5f1a7f368b13efbdb21233076a17c8986ac85077ad9e66e2b554c936"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-05-06 16:09.15 ---> saved as "09ddeb247263dc71dfbfebccfbe2ce7bd5ca09d8f58205c86bb089e1caca012f"

/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]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [132 kB]
- Fetched 222 kB in 1s (384 kB/s)
- Reading package lists...
- 
2026-05-06 16:09.17 ---> saved as "7ba92c17b0ba0acb7db113f72a974bf2f6223f8068ae328f1b85eb690e11db7d"

/home/opam: (run (shell "opam pin add -k version -yn mfat.0.0.1~beta1 0.0.1~beta1"))
mfat is now pinned to version 0.0.1~beta1
2026-05-06 16:09.17 ---> saved as "ddeccd8274e2469af1efb7f9171cddf05d81d9f17908bb71660db04c912de526"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mfat.0.0.1~beta1;\
                        \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\" != 'mfat.0.0.1~beta1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
mfat.0.0.1~beta1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
  - install astring    0.8.5                [required by fpath]
  - install bstr       0.0.4                [required by mfat]
  - install cachet     0.0.4                [required by mfat]
  - install cmdliner   2.1.1                [required by mfat]
  - install dune       3.23.0               [required by bstr, cachet]
  - install fmt        0.11.0               [required by mfat]
  - install fpath      0.7.3                [required by mfat]
  - install logs       0.10.0               [required by mfat]
  - install mfat       0.0.1~beta1 (pinned)
  - install ocamlbuild 0.16.1               [required by fpath, fmt, logs]
  - install ocamlfind  1.9.8                [required by fpath, fmt, logs]
  - install topkg      1.1.1                [required by fpath, fmt, logs]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved bstr.0.0.4  (cached)
-> retrieved cachet.0.0.4  (cached)
-> retrieved cmdliner.2.1.1  (cached)
-> retrieved dune.3.23.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved mfat.0.0.1~beta1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed cmdliner.2.1.1
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed dune.3.23.0
-> installed bstr.0.0.4
-> installed cachet.0.0.4
-> installed mfat.0.0.1~beta1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-06 16:09.53 ---> saved as "bbdfe4c9b2c424760ffd07592a4318fc0bfa462918d7efd023da7d3b68935b15"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test mfat.0.0.1~beta1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile mfat               0.0.1~beta1 (pinned)
=== install 5 packages
  - install   alcotest           1.9.1                [required by mfat]
  - install   ocaml-syntax-shims 1.0.0                [required by alcotest]
  - install   re                 1.14.0               [required by alcotest]
  - install   stdlib-shims       0.3.0                [required by alcotest]
  - install   uutf               1.0.4                [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed uutf.1.0.4
-> removed   mfat.0.0.1~beta1
-> installed re.1.14.0
-> installed alcotest.1.9.1
-> installed mfat.0.0.1~beta1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-06 16:10.01 ---> saved as "e3bb015a1d8d14a2d4cbdba6f71b9485061eab4fb59ff5735d08d2f6e1551fd2"

/home/opam: (run (shell  "opam reinstall --with-test --verbose mfat.0.0.1~beta1;\
                        \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\" != 'mfat.0.0.1~beta1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile mfat 0.0.1~beta1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [mfat: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mfat" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mfat.0.0.1~beta1)
Processing  2/4: [mfat: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mfat" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mfat.0.0.1~beta1)
- (cd _build/default/test && ./test.exe)
- Testing `mfat'.
- This run has ID `RDI6NXP2'.
- 
-   [OK]          file          0   write and read.
-   [OK]          file          1   read_lines.
-   [OK]          file          2   write_lines.
-   [OK]          file          3   fold_lines.
-   [OK]          file          4   exists.
-   [OK]          file          5   must_exist.
-   [OK]          file          6   delete.
-   [OK]          file          7   delete nonexistent.
-   [OK]          dir           0   create.
-   [OK]          dir           1   create already exists.
-   [OK]          dir           2   create with path.
-   [OK]          dir           3   create no path.
-   [OK]          dir           4   must_exist.
-   [OK]          dir           5   contents.
-   [OK]          dir           6   contents rel.
-   [OK]          dir           7   delete.
-   [OK]          dir           8   delete recurse.
-   [OK]          dir           9   fold_contents.
-   [OK]          path          0   exists.
-   [OK]          path          1   delete.
-   [OK]          path          2   stat.
-   [OK]          path          3   root.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/mfat.0.0.1~beta1/_build/default/test/_build/_tests/mfat'.
- Test Successful in 0.010s. 22 tests run.
-> compiled  mfat.0.0.1~beta1
-> removed   mfat.0.0.1~beta1
-> installed mfat.0.0.1~beta1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-06 16:10.06 ---> saved as "a90c8f63a31cf1e521b3781ae18be25b7e3767f9d173d44828e6f1b194201ce4"
Job succeeded
2026-05-06 16:10.13: Job succeeded