(not at the head of any monitored branch or PR)
2025-03-13 14:03.19: New job: test index.1.3.3 with ocamlfind.1.9.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27618/head (817e2bca6bb374fd7865253f73a8e26703930da1)
                              on debian-12-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/27618/head" && git reset --hard 817e2bca
git fetch origin master
git merge --no-edit 906fb78ee221e4b7676dcd2285fb6d40cbdc59f2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:a6696fcec2a7196cd06fe5e601406bdcfa34a6483ab7cf7de982ae17ea6a55f0
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 ocamlfind.1.9.5 1.9.5
RUN opam reinstall ocamlfind.1.9.5; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocamlfind.1.9.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall index.1.3.3; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'index.1.3.3' && 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 index.1.3.3) || true
RUN opam reinstall --with-test --verbose index.1.3.3; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'index.1.3.3' && 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-03-13 14:03.19: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:a6696fcec2a7196cd06fe5e601406bdcfa34a6483ab7cf7de982ae17ea6a55f0-ocamlfind.1.9.5-index.1.3.3-817e2bca6bb374fd7865253f73a8e26703930da1"
2025-03-13 14:03.19: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:a6696fcec2a7196cd06fe5e601406bdcfa34a6483ab7cf7de982ae17ea6a55f0)
 (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 ocamlfind.1.9.5 1.9.5"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocamlfind.1.9.5;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocamlfind.1.9.5' && 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 index.1.3.3;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'index.1.3.3' && 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 index.1.3.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose index.1.3.3;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'index.1.3.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-03-13 14:03.19: Waiting for resource in pool OCluster
2025-03-13 15:51.14: Waiting for worker…
2025-03-13 15:54.26: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
Updating files:  96% (21852/22644)
Updating files:  97% (21965/22644)
Updating files:  98% (22192/22644)
Updating files:  99% (22418/22644)
Updating files: 100% (22644/22644)
Updating files: 100% (22644/22644), done.
HEAD is now at 906fb78ee2 Merge pull request #27594 from mbarbin/dunolint
Merge made by the 'ort' strategy.
 packages/ocamlfind/ocamlfind.1.9.5/opam | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(from ocaml/opam:debian-12-ocaml-4.14@sha256:a6696fcec2a7196cd06fe5e601406bdcfa34a6483ab7cf7de982ae17ea6a55f0)
2025-03-13 15:54.37 ---> using "80fd7825ce1a116f8797a39876773ae08c12e9665497e2c87a54f899dfa0710c" 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-03-13 15:54.37 ---> using "2f79bcf5e8f633cc179931f47e4478f88e9aac17cfe5e7e859dc3cb46b8830f1" 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 development 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 39 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=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-13 15:54.37 ---> using "b247a5363e2b7a112eea930be80a14ef0483774222bc0faa32ee684629fac6c3" 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.4.0~alpha1~dev (f1cf50f2711981a605f81a80c68b73774d5841ff)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (local), 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-03-13 15:54.37 ---> using "738df2896a32e42d0ddd19b6bae8aa0827576b126c1f6655d8ccff0fff105b1f" 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-03-13 15:54.37 ---> using "d13c11b5fb48861869fac18fc65afc4519c0bda8c165f31f60c9096ea7040513" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-03-13 15:54.39 ---> using "bf79031c9bde6b510b33ce29f6f54899aa875129bab60295e83b13d67edc0d4d" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-13 15:54.39 ---> using "a2e88cbe0b8a7983007a53c9f3785bd4f6c313608e2f040410ae1adfd1aa1c51" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [246 kB]
- Fetched 349 kB in 0s (854 kB/s)
- Reading package lists...
2025-03-13 15:54.39 ---> using "b6d64f2b040376d9535f173f2507aad0eda5e91c35cf0f083ee33d2526295e11" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocamlfind.1.9.5 1.9.5"))
ocamlfind is now pinned to version 1.9.5
2025-03-13 15:54.39 ---> using "009ab918fd26c27a6c93e6f8752ede71f76268f6829f5c7f9a198e42a4b1a46e" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocamlfind.1.9.5;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocamlfind.1.9.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocamlfind.1.9.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install ocamlfind 1.9.5 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.5  (cached)
-> installed ocamlfind.1.9.5
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 15:54.39 ---> using "9a4f255864aea1b3bda3c7df8691aa25275d99cf83df4ca5890ba22397e225e6" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall index.1.3.3;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'index.1.3.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
index.1.3.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 25 packages
  - install base64              3.5.1   [required by repr]
  - install cmdliner            1.3.0   [required by index]
  - install cppo                1.8.0   [required by ppx_deriving]
  - install dune                3.17.2  [required by index]
  - install either              1.0.0   [required by repr]
  - install fmt                 0.10.0  [required by index]
  - install index               1.3.3
  - install jsonm               1.0.2   [required by index]
  - install logs                0.7.0   [required by index]
  - install mtime               1.3.0   [required by index]
  - install ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install ocamlbuild          0.16.1  [required by logs, fmt, jsonm, mtime]
  - install optint              0.3.0   [required by repr]
  - install ppx_derivers        1.2.1   [required by ppx_deriving]
  - install ppx_deriving        6.0.3   [required by ppx_repr]
  - install ppx_repr            0.7.0   [required by index]
  - install ppxlib              0.35.0  [required by ppx_repr]
  - install progress            0.1.1   [required by index]
  - install repr                0.7.0   [required by index]
  - install semaphore-compat    1.0.2   [required by index]
  - install sexplib0            v0.17.0 [required by ppxlib]
  - install stdlib-shims        0.3.0   [required by index]
  - install terminal_size       0.2.0   [required by progress]
  - install topkg               1.0.8   [required by logs, fmt, jsonm, mtime]
  - install uutf                1.0.4   [required by jsonm]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved dune.3.17.2  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved fmt.0.10.0  (cached)
-> retrieved index.1.3.3  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved mtime.1.3.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed cmdliner.1.3.0
-> retrieved optint.0.3.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_repr.0.7.0, repr.0.7.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved progress.0.1.1  (cached)
-> retrieved semaphore-compat.1.0.2  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved terminal_size.0.2.0  (cached)
-> retrieved topkg.1.0.8  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.8
-> installed uutf.1.0.4
-> installed mtime.1.3.0
-> installed fmt.0.10.0
-> installed jsonm.1.0.2
-> installed logs.0.7.0
-> installed dune.3.17.2
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed terminal_size.0.2.0
-> installed either.1.0.0
-> installed optint.0.3.0
-> installed semaphore-compat.1.0.2
-> installed base64.3.5.1
-> installed sexplib0.v0.17.0
-> installed progress.0.1.1
-> installed ocaml-compiler-libs.v0.12.4
-> installed cppo.1.8.0
-> installed repr.0.7.0
-> installed ppxlib.0.35.0
-> installed ppx_deriving.6.0.3
-> installed ppx_repr.0.7.0
-> installed index.1.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 15:55.30 ---> saved as "17cfc120ef549661b290d7539f78db50f9877c4ff6869c36b41101b4c9383224"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test index.1.3.3) || true"))
The following actions will be performed:
=== downgrade 3 packages
  - downgrade cmdliner           1.3.0 to 1.0.4  [required by index]
  - downgrade fmt                0.10.0 to 0.9.0 [required by index]
  - downgrade uutf               1.0.4 to 1.0.3  [uses cmdliner]
=== recompile 5 packages
  - recompile index              1.3.3
  - recompile jsonm              1.0.2           [uses uutf]
  - recompile logs               0.7.0           [uses cmdliner]
  - recompile ppx_repr           0.7.0           [uses fmt]
  - recompile repr               0.7.0           [uses fmt]
=== install 9 packages
  - install   afl-persistent     1.4             [required by crowbar]
  - install   alcotest           1.5.0           [required by index]
  - install   astring            0.8.5           [required by alcotest]
  - install   base-bytes         base            [required by ocplib-endian]
  - install   crowbar            0.2             [required by index]
  - install   ocaml-syntax-shims 1.0.0           [required by alcotest]
  - install   ocplib-endian      1.2             [required by crowbar]
  - install   re                 1.12.0          [required by index]
  - install   seq                base            [required by re]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.4  (https://github.com/stedolan/ocaml-afl-persistent/archive/refs/tags/v1.4.tar.gz)
-> installed afl-persistent.1.4
-> retrieved alcotest.1.5.0  (https://github.com/mirage/alcotest/releases/download/1.5.0/alcotest-js-1.5.0.tbz)
-> retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> installed base-bytes.base
-> retrieved cmdliner.1.0.4  (http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.4.tbz)
-> retrieved crowbar.0.2  (https://github.com/stedolan/crowbar/archive/v0.2.tar.gz)
-> retrieved fmt.0.9.0  (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> retrieved index.1.3.3  (https://github.com/mirage/index/releases/download/1.3.3/index-1.3.3.tbz)
-> retrieved jsonm.1.0.2  (https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz)
-> installed astring.0.8.5
-> retrieved logs.0.7.0  (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> retrieved ocaml-syntax-shims.1.0.0  (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved ocplib-endian.1.2  (https://github.com/OCamlPro/ocplib-endian/archive/refs/tags/1.2.tar.gz)
-> installed ocplib-endian.1.2
-> retrieved ppx_repr.0.7.0, repr.0.7.0  (https://github.com/mirage/repr/releases/download/0.7.0/repr-0.7.0.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved re.1.12.0  (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> removed   index.1.3.3
-> removed   logs.0.7.0
-> removed   ppx_repr.0.7.0
-> removed   repr.0.7.0
-> removed   fmt.0.10.0
-> removed   jsonm.1.0.2
-> removed   uutf.1.0.4
-> removed   cmdliner.1.3.0
-> installed seq.base
-> retrieved uutf.1.0.3  (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed re.1.12.0
-> installed cmdliner.1.0.4
-> installed crowbar.0.2
-> installed uutf.1.0.3
-> installed fmt.0.9.0
-> installed jsonm.1.0.2
-> installed alcotest.1.5.0
-> installed logs.0.7.0
-> installed repr.0.7.0
-> installed ppx_repr.0.7.0
-> installed index.1.3.3
Done.

<><> afl-persistent.1.4 installed successfully ><><><><><><><><><><><><><><><><>
=> afl-persistent is installed, but since the current OCaml compiler does
   not enable AFL instrumentation by default, most packages will not be
   instrumented and fuzzing with afl-fuzz may not be effective.

   To globally enable AFL instrumentation, create an OCaml switch like:

     opam switch create 4.14.2+afl ocaml-variants.4.14.2+options ocaml-option-afl
# To update the current shell environment, run: eval $(opam env)
2025-03-13 15:55.57 ---> saved as "318371ffb6dba00ec222a35a084bb95faec1c83a3b8bda359cc0b1be7f2d27f0"

/home/opam: (run (shell  "opam reinstall --with-test --verbose index.1.3.3;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'index.1.3.3' && 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 index 1.3.3

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [index.1.3.3: extract]
-> retrieved index.1.3.3  (cached)
Processing  2/4: [index: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "index" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/index.1.3.3)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/.index.objs/byte -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/os -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/ppx_repr -I /home/opam/.opam/4.14/lib/progress -I /home/opam/.opam/4.14/lib/progress/unix -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -open Index__ -o src/.index.objs/byte/index.cmo -c -impl src/index.pp.ml)
- File "src/index.ml", line 750, characters 14-22:
- 750 |     let msg = Fmt.strf "merge { id=%d }" merge_id in
-                     ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I src/.index.objs/byte -I src/.index.objs/native -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/os -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/ppx_repr -I /home/opam/.opam/4.14/lib/progress -I /home/opam/.opam/4.14/lib/progress/unix -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/stdlib-shims -intf-suffix .ml -no-alias-deps -open Index__ -o src/.index.objs/native/index.cmx -c -impl src/index.pp.ml)
- File "src/index.ml", line 750, characters 14-22:
- 750 |     let msg = Fmt.strf "merge { id=%d }" merge_id in
-                     ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
Processing  2/4: [index: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "index" (CWD=/home/opam/.opam/4.14/.opam-switch/build/index.1.3.3)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/unix/.main.eobjs/byte -I test/unix/.main.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/semaphore-compat -I /home/opam/.opam/4.14/lib/stdlib-shims -I src/.index.objs/byte -I src/.index.objs/native -I src/unix/.index_unix.objs/byte -I src/unix/.index_unix.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unix/.main.eobjs/native/dune__exe__Io_array.cmx -c -impl test/unix/io_array.ml)
- File "test/unix/io_array.ml", line 55, characters 7-15:
- 55 |       (Fmt.strf "Inserted key at index %i is accessible" i)
-             ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/unix/io_array.ml", line 70, characters 7-15:
- 70 |       (Fmt.strf "Inserted key at index %i is accessible" i)
-             ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/unix/.main.eobjs/byte -I test/unix/.main.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/semaphore-compat -I /home/opam/.opam/4.14/lib/stdlib-shims -I src/.index.objs/byte -I src/.index.objs/native -I src/unix/.index_unix.objs/byte -I src/unix/.index_unix.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unix/.main.eobjs/native/dune__exe__Main.cmx -c -impl test/unix/main.ml)
- File "test/unix/main.ml", line 276, characters 29-37:
- 276 |       Alcotest.check_raises (Fmt.strf "Find %s key after clearing." k) Not_found
-                                    ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default/test && ./main.exe)
- Testing `index'.
- This run has ID `JIDGUFG1'.
- 
-   [OK]          cache           0   noop.
-   [OK]          cache           1   unbounded.
-   [OK]          search          0   unique.
-   [OK]          search          1   constant metric.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/index.1.3.3/_build/default/test/_build/_tests/index'.
- Test Successful in 0.004s. 4 tests run.
- (cd _build/default/test/unix && ./main.exe)
- Testing `index.unix'.
- This run has ID `P4135P57'.
- 
-   [OK]          io_array                0   fresh.
-   [OK]          io_array                1   prefetch.
-   [OK]          merge                   0   readonly in sequence.
-   [OK]          merge                   1   readonly interleaved.
-   [OK]          merge                   2   interleaved merge.
-   [OK]          merge                   3   write at the end of merge.
-   [OK]          merge                   4   write in log_async.
-   [OK]          merge                   5   find while merging.
-   [OK]          merge                   6   find in async without log.
-   [OK]          merge                   7   find in async with log.
-   [OK]          merge                   8   sync and find after log cleared.
-   [OK]          merge                   9   merge during ro sync.
-   [OK]          merge                  10   is_merging.
-   [OK]          merge                  11   clear is not blocking.
-   [OK]          merge                  12   `clear` aborts merge.
-   [OK]          merge                  13   `close ~immediately` aborts merge.
-   [OK]          live                    0   find (present).
-   [OK]          live                    1   find (absent).
-   [OK]          live                    2   replace.
-   [OK]          live                    3   fail add (key).
-   [OK]          live                    4   fail add (value).
-   [OK]          live                    5   membership.
-   [OK]          live                    6   clear and iter.
-   [OK]          live                    7   clear and find.
-   [OK]          live                    8   open after clear.
-   [OK]          live                    9   files on disk after clear.
-   [OK]          live                   10   duplicate entries.
-   [OK]          on restart              0   find (present).
-   [OK]          on restart              1   find (absent).
-   [OK]          on restart              2   replace.
-   [OK]          on restart              3   membership.
-   [OK]          on restart              4   fail restart readonly fresh.
-   [OK]          on restart              5   in sync.
-   [OK]          on restart              6   duplicate entries in log.
-   [OK]          readonly                0   add.
-   [OK]          readonly                1   read after clear.
-   [OK]          readonly                2   snapshot isolation.
-   [OK]          readonly                3   Readonly v after replace.
-   [OK]          readonly                4   add not allowed.
-   [OK]          readonly                5   fail read if no flush.
-   [OK]          readonly                6   readonly v is in sync.
-   [OK]          readonly                7   read values added in log before c...
-   [OK]          readonly                8   read values added in index before...
-   [OK]          readonly                9   read old values in log after clear.
-   [OK]          readonly               10   read old values in index after cl...
-   [OK]          readonly               11   readonly open after clear.
-   [OK]          readonly               12   race between sync and merge.
-   [OK]          readonly               13   race between sync and clear.
-   [OK]          readonly               14   race between sync and end of merge.
-   [OK]          readonly               15   reload log and log async.
-   [OK]          close                   0   close and reopen.
-   [OK]          close                   1   close and reopen more.
-   [OK]          close                   2   crash and continue.
-   [OK]          close                   3   find (absent).
-   [OK]          close                   4   replace.
-   [OK]          close                   5   open two instances, close one.
-   [OK]          close                   6   close and reopen on readonly.
-   [OK]          close                   7   non-close operations fail after c...
-   [OK]          close                   8   double close.
-   [OK]          close                   9   double restart.
-   [OK]          close                  10   aborted merge.
-   [OK]          filter                  0   filter none.
-   [OK]          filter                  1   filter all.
-   [OK]          filter                  2   filter one.
-   [OK]          filter                  3   clone then filter.
-   [OK]          filter                  4   filter then clone.
-   [OK]          filter                  5   empty after filter+fresh.
-   [OK]          flush_callback          0   close.
-   [OK]          flush_callback          1   flush.
-   [OK]          flush_callback          2   replace.
-   [OK]          throttle                0   force merge.
-   [OK]          throttle                1   implicit merge.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/index.1.3.3/_build/default/test/unix/_build/_tests/index.unix'.
- Test Successful in 1.144s. 72 tests run.
-> compiled  index.1.3.3
-> removed   index.1.3.3
-> installed index.1.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 15:56.11 ---> saved as "1acf68c06dc5032a7dd196326e63e6ff73a1a1769254afbd6638361d774c1f24"
Job succeeded
2025-03-13 15:56.20: Job succeeded