(for PR #29582)

2026-03-25 23:09.45: New job: test autofonce_lib.0.8 with ocaml-compiler.5.4.0~beta1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              on debian-13-ocaml-5.4/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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 40ee9f8d41e293fa1327d03c279f5e61e22157f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0~beta1 5.4.0~beta1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~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" != 'ocaml-compiler.5.4.0~beta1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall autofonce_lib.0.8; \
    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" != 'autofonce_lib.0.8' && 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 autofonce_lib.0.8) || true
RUN opam reinstall --with-test --verbose autofonce_lib.0.8; \
    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" != 'autofonce_lib.0.8' && 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-03-25 23:09.45: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~beta1-autofonce_lib.0.8-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 23:09.45: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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 ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~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\" != 'ocaml-compiler.5.4.0~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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall autofonce_lib.0.8;\
             \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\" != 'autofonce_lib.0.8' && 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 autofonce_lib.0.8) || true"))
 (run (shell  "opam reinstall --with-test --verbose autofonce_lib.0.8;\
             \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\" != 'autofonce_lib.0.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-25 23:09.45: Waiting for resource in pool OCluster
2026-03-26 00:13.23: Waiting for worker…
2026-03-26 00:15.46: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  86% (16109/18536)
Updating files:  87% (16127/18536)
Updating files:  88% (16312/18536)
Updating files:  89% (16498/18536)
Updating files:  90% (16683/18536)
Updating files:  91% (16868/18536)
Updating files:  92% (17054/18536)
Updating files:  93% (17239/18536)
Updating files:  94% (17424/18536)
Updating files:  95% (17610/18536)
Updating files:  96% (17795/18536)
Updating files:  97% (17980/18536)
Updating files:  98% (18166/18536)
Updating files:  99% (18351/18536)
Updating files: 100% (18536/18536)
Updating files: 100% (18536/18536), done.
HEAD is now at 40ee9f8d41 Merge pull request #29587 from astrada/gdfuse08
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-26 00:15.49 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-03-26 00:15.49 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-26 00:15.49 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# 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.0
2026-03-26 00:15.49 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-03-26 00:15.49 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-26 00:15.50 ---> using "07a68ecb21bed61e4f94fa4dcb50d9c7e84f81448f8ae7e9e9983c91027df4a2" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-26 00:15.50 ---> using "b26a47ea5c8289d9e604d194e0a5dfeb524275bd8a7c64613ecd9c7e1857f13a" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (7335 kB/s)
- Reading package lists...
- 
2026-03-26 00:15.50 ---> using "0b343335ec438165d35b471bbf0eb838e16886a027b79662715b77b328e1271c" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
ocaml-compiler is now pinned to version 5.4.0~beta1
2026-03-26 00:15.50 ---> using "e1c05b46f28d7574e116a5b10ba98f694969006f7796f6a98c361e246ff746c8" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~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\" != 'ocaml-compiler.5.4.0~beta1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-compiler.5.4.0~beta1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove    ocaml-base-compiler 5.4.0 (pinned)                [conflicts with ocaml-compiler]
=== downgrade 1 package
  - downgrade ocaml-compiler      5.4.0 to 5.4.0~beta1 (pinned)
=== recompile 6 packages
  - recompile base-domains        base                          [uses ocaml]
  - recompile base-effects        base                          [uses ocaml]
  - recompile base-nnp            base                          [uses base-domains]
  - recompile ocaml               5.4.0                         [uses ocaml-base-compiler]
  - recompile ocaml-config        3                             [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3                         [uses ocaml]
=== install 1 package
  - install   ocaml-variants      5.4.0~beta1+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta1  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta1
-> installed ocaml-variants.5.4.0~beta1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta1+options"}]
       Use `opam switch set-invariant' to change it.
Done.

<><> 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)
2026-03-26 00:15.50 ---> using "3817a208ed5f7baeb43f88e56244319516f39faddd782fe35a9ef1c9797c14d8" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall autofonce_lib.0.8;\
                        \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\" != 'autofonce_lib.0.8' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
autofonce_lib.0.8 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 28 packages
  - install ANSITerminal     0.8.5    [required by autofonce_lib]
  - install autofonce_config 0.8      [required by autofonce_lib]
  - install autofonce_core   0.8      [required by autofonce_lib]
  - install autofonce_lib    0.8
  - install autofonce_m4     0.8      [required by autofonce_lib]
  - install autofonce_misc   0.8      [required by autofonce_config, autofonce_core]
  - install autofonce_patch  0.8      [required by autofonce_lib]
  - install autofonce_share  0.8      [required by autofonce_lib]
  - install base-bytes       base     [required by ANSITerminal]
  - install cmdliner         1.3.0    [required by ez_cmdliner]
  - install crunch           4.0.0    [required by autofonce_share]
  - install dune             3.22.0   [required by autofonce_lib]
  - install ez_cmdliner      0.4.3    [required by autofonce_lib]
  - install ez_file          0.3.0    [required by autofonce_lib]
  - install ez_subst         0.2.1    [required by ez_cmdliner]
  - install ISO8601          0.2.6    [required by toml]
  - install menhir           20260209 [required by toml]
  - install menhirCST        20260209 [required by menhir]
  - install menhirGLR        20260209 [required by menhir]
  - install menhirLib        20260209 [required by menhir]
  - install menhirSdk        20260209 [required by menhir]
  - install ocamlbuild       0.16.1   [required by ptime]
  - install ocamlfind        1.9.8    [required by base-bytes]
  - install ocplib_stuff     0.4.0    [required by autofonce_lib]
  - install ptime            1.2.0    [required by crunch]
  - install re               1.14.0   [required by ez_file]
  - install toml             7.1.0    [required by autofonce_config]
  - install topkg            1.1.1    [required by ptime]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ANSITerminal.0.8.5  (cached)
-> retrieved autofonce_config.0.8, autofonce_core.0.8, autofonce_lib.0.8, autofonce_m4.0.8, autofonce_misc.0.8, autofonce_patch.0.8, autofonce_share.0.8  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved crunch.4.0.0  (cached)
-> retrieved dune.3.22.0  (cached)
-> retrieved ez_cmdliner.0.4.3  (cached)
-> retrieved ez_file.0.3.0  (cached)
-> retrieved ez_subst.0.2.1  (cached)
-> retrieved ISO8601.0.2.6  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed cmdliner.1.3.0
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib_stuff.0.4.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved toml.7.1.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed ptime.1.2.0
-> installed dune.3.22.0
-> installed crunch.4.0.0
-> installed ANSITerminal.0.8.5
-> installed ISO8601.0.2.6
-> installed menhirCST.20260209
-> installed autofonce_share.0.8
-> installed ez_subst.0.2.1
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocplib_stuff.0.4.0
-> installed re.1.14.0
-> installed ez_cmdliner.0.4.3
-> installed ez_file.0.3.0
-> installed autofonce_patch.0.8
-> installed autofonce_misc.0.8
-> installed autofonce_m4.0.8
-> installed autofonce_core.0.8
-> installed menhir.20260209
-> installed toml.7.1.0
-> installed autofonce_config.0.8
-> installed autofonce_lib.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:17.19 ---> saved as "fe724b4842b287209675dc63b60848834b5798f982e593ecc4c60f8457dcadfe"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test autofonce_lib.0.8) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile autofonce_lib           0.8
=== install 39 packages
  - install   astring                 0.8.5    [required by ocamlformat-lib]
  - install   base                    v0.17.3  [required by ppx_expect]
  - install   camlp-streams           5.0.1    [required by ocamlformat-lib]
  - install   csexp                   1.5.2    [required by ocamlformat]
  - install   dune-build-info         3.22.0   [required by ocamlformat-lib]
  - install   dune-configurator       3.22.0   [required by base]
  - install   either                  1.0.0    [required by ocamlformat-lib]
  - install   fix                     20250919 [required by ocamlformat-lib]
  - install   fpath                   0.7.3    [required by ocamlformat-lib]
  - install   jane-street-headers     v0.17.0  [required by time_now]
  - install   jst-config              v0.17.0  [required by time_now]
  - install   ocaml-compiler-libs     v0.17.0  [required by ppxlib]
  - install   ocaml-version           4.0.4    [required by ocamlformat-lib]
  - install   ocaml_intrinsics_kernel v0.17.1  [required by base]
  - install   ocamlformat             0.29.0   [required by autofonce_lib]
  - install   ocamlformat-lib         0.29.0   [required by ocamlformat]
  - install   ocp-indent              1.9.0    [required by ocamlformat-lib]
  - install   ppx_assert              v0.17.0  [required by jst-config]
  - install   ppx_base                v0.17.0  [required by time_now]
  - install   ppx_cold                v0.17.0  [required by ppx_base]
  - install   ppx_compare             v0.17.0  [required by ppx_base]
  - install   ppx_derivers            1.2.1    [required by ppxlib]
  - install   ppx_enumerate           v0.17.0  [required by ppx_base]
  - install   ppx_expect              v0.17.3  [required by autofonce_lib]
  - install   ppx_globalize           v0.17.2  [required by ppx_base]
  - install   ppx_hash                v0.17.0  [required by ppx_base]
  - install   ppx_here                v0.17.0  [required by ppx_expect]
  - install   ppx_inline_test         v0.17.1  [required by autofonce_lib]
  - install   ppx_optcomp             v0.17.1  [required by time_now]
  - install   ppx_sexp_conv           v0.17.1  [required by ppx_base]
  - install   ppxlib                  0.37.0   [required by ppx_expect]
  - install   ppxlib_jane             v0.17.4  [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install   sexplib0                v0.17.0  [required by base, ppxlib]
  - install   stdio                   v0.17.0  [required by ppx_expect]
  - install   stdlib-shims            0.3.0    [required by ppxlib]
  - install   time_now                v0.17.0  [required by ppx_inline_test]
  - install   uucp                    17.0.0   [required by uuseg]
  - install   uuseg                   17.0.0   [required by ocamlformat-lib]
  - install   uutf                    1.0.4    [required by ocamlformat-lib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved autofonce_lib.0.8  (https://opam.ocaml.org/cache)
-> retrieved base.v0.17.3  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> installed camlp-streams.5.0.1
-> retrieved dune-build-info.3.22.0, dune-configurator.3.22.0  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> installed dune-build-info.3.22.0
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved fix.20250919  (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.17.0  (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> retrieved jst-config.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.4  (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.17.0
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://opam.ocaml.org/cache)
-> installed fix.20250919
-> installed ocaml-version.4.0.4
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved ocamlformat.0.29.0, ocamlformat-lib.0.29.0  (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.22.0
-> installed fpath.0.7.3
-> installed ocaml-compiler-libs.v0.17.0
-> retrieved ocp-indent.1.9.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_expect.v0.17.3  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_globalize.v0.17.2  (https://opam.ocaml.org/cache)
-> retrieved ppx_hash.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved ppx_inline_test.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.17.1  (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.37.0  (https://opam.ocaml.org/cache)
-> retrieved ppxlib_jane.v0.17.4  (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.17.0  (https://opam.ocaml.org/cache)
-> installed ocp-indent.1.9.0
-> installed stdlib-shims.0.3.0
-> retrieved uucp.17.0.0  (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.17.0
-> retrieved uuseg.17.0.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed uutf.1.0.4
-> installed base.v0.17.3
-> installed stdio.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppx_optcomp.v0.17.1
-> installed ppxlib_jane.v0.17.4
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_compare.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> removed   autofonce_lib.0.8
-> installed uucp.17.0.0
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed uuseg.17.0.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed ocamlformat-lib.0.29.0
-> installed ocamlformat.0.29.0
-> installed autofonce_lib.0.8
Done.

<><> ocp-indent.1.9.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:

   * for Emacs, add these lines to ~/.emacs:
     (add-to-list 'load-path "/home/opam/.opam/5.4/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/home/opam/.opam/5.4/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:18.59 ---> saved as "32038177388de7998241b8b59c591063cbfb3eeaca9e0536a15ba94aa54870fb"

/home/opam: (run (shell  "opam reinstall --with-test --verbose autofonce_lib.0.8;\
                        \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\" != 'autofonce_lib.0.8' && 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 autofonce_lib 0.8

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [autofonce_lib.0.8: extract]
-> retrieved autofonce_lib.0.8  (cached)
Processing  2/4: [autofonce_lib: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "./scripts/before.sh build 'autofonce_lib'" (CWD=/home/opam/.opam/5.4/.opam-switch/build/autofonce_lib.0.8)
Processing  2/4: [autofonce_lib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "autofonce_lib" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/autofonce_lib.0.8)
- File "dune-project", line 121, characters 3-31:
- 121 |    (autofonce_misc (= version))
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_misc": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_misc (= :version)))
- File "dune-project", line 75, characters 3-31:
- 75 |    (autofonce_misc (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_misc": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_misc (= :version)))
- File "dune-project", line 54, characters 3-32:
- 54 |    (autofonce_share (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_share": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_share (= :version)))
- File "dune-project", line 55, characters 3-32:
- 55 |    (autofonce_patch (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_patch": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_patch (= :version)))
- File "dune-project", line 56, characters 3-29:
- 56 |    (autofonce_m4 (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_m4": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_m4 (= :version)))
- File "dune-project", line 57, characters 3-31:
- 57 |    (autofonce_core (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_core": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_core (= :version)))
- File "dune-project", line 58, characters 3-33:
- 58 |    (autofonce_config (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_config": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_config (= :version)))
- File "dune-project", line 34, characters 3-32:
- 34 |    (autofonce_share (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_share": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_share (= :version)))
- File "dune-project", line 35, characters 3-31:
- 35 |    (autofonce_misc (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_misc": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_misc (= :version)))
- File "dune-project", line 36, characters 3-29:
- 36 |    (autofonce_m4 (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_m4": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_m4 (= :version)))
- File "dune-project", line 17, characters 3-30:
- 17 |    (autofonce_lib (= version))
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning: Possible typo in constraint for dependency "autofonce_lib": '(=
- version)' might be a mistake.
- Hint: Did you mean to use the `:version` variable instead? Example: (depends
- (autofonce_lib (= :version)))
- (cd _build/default/src/autofonce_lib && /home/opam/.opam/5.4/bin/ocaml unix.cma version.mlt) > _build/default/src/autofonce_lib/version.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include: 
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- 
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include: 
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/autofonce_lib/.autofonce_lib.objs/byte -I /home/opam/.opam/5.4/lib/ANSITerminal -I /home/opam/.opam/5.4/lib/ISO8601 -I /home/opam/.opam/5.4/lib/autofonce_config -I /home/opam/.opam/5.4/lib/autofonce_core -I /home/opam/.opam/5.4/lib/autofonce_m4 -I /home/opam/.opam/5.4/lib/autofonce_misc -I /home/opam/.opam/5.4/lib/autofonce_patch -I /home/opam/.opam/5.4/lib/autofonce_share -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/ez_cmdliner -I /home/opam/.opam/5.4/lib/ez_file -I /home/opam/.opam/5.4/lib/ez_subst -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib_stuff -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/toml -cmi-file src/autofonce_lib/.autofonce_lib.objs/byte/autofonce_lib__Call.cmi -no-alias-deps -open Autofonce_lib -o src/autofonce_lib/.autofonce_lib.objs/byte/autofonce_lib__Call.cmo -c -impl src/autofonce_lib/call.ml)
- File "src/autofonce_lib/call.ml", line 22, characters 18-32:
- 22 |   let raise fmt = Printf.kprintf failwith fmt
-                        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- 
- File "src/autofonce_lib/call.ml", line 29, characters 2-16:
- 29 |   Printf.kprintf (fun cmd ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/autofonce_lib/.autofonce_lib.objs/byte -I src/autofonce_lib/.autofonce_lib.objs/native -I /home/opam/.opam/5.4/lib/ANSITerminal -I /home/opam/.opam/5.4/lib/ISO8601 -I /home/opam/.opam/5.4/lib/autofonce_config -I /home/opam/.opam/5.4/lib/autofonce_core -I /home/opam/.opam/5.4/lib/autofonce_m4 -I /home/opam/.opam/5.4/lib/autofonce_misc -I /home/opam/.opam/5.4/lib/autofonce_patch -I /home/opam/.opam/5.4/lib/autofonce_share -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/ez_cmdliner -I /home/opam/.opam/5.4/lib/ez_file -I /home/opam/.opam/5.4/lib/ez_subst -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib_stuff -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/toml -cmi-file src/autofonce_lib/.autofonce_lib.objs/byte/autofonce_lib__Call.cmi -no-alias-deps -open Autofonce_lib -o src/autofonce_lib/.autofonce_lib.objs/native/autofonce_lib__Call.cmx -c -impl src/autofonce_lib/call.ml)
- File "src/autofonce_lib/call.ml", line 22, characters 18-32:
- 22 |   let raise fmt = Printf.kprintf failwith fmt
-                        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- 
- File "src/autofonce_lib/call.ml", line 29, characters 2-16:
- 29 |   Printf.kprintf (fun cmd ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/autofonce_lib/.autofonce_lib.objs/byte -I /home/opam/.opam/5.4/lib/ANSITerminal -I /home/opam/.opam/5.4/lib/ISO8601 -I /home/opam/.opam/5.4/lib/autofonce_config -I /home/opam/.opam/5.4/lib/autofonce_core -I /home/opam/.opam/5.4/lib/autofonce_m4 -I /home/opam/.opam/5.4/lib/autofonce_misc -I /home/opam/.opam/5.4/lib/autofonce_patch -I /home/opam/.opam/5.4/lib/autofonce_share -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/ez_cmdliner -I /home/opam/.opam/5.4/lib/ez_file -I /home/opam/.opam/5.4/lib/ez_subst -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib_stuff -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/toml -no-alias-deps -open Autofonce_lib -o src/autofonce_lib/.autofonce_lib.objs/byte/autofonce_lib__Runner_common.cmo -c -impl src/autofonce_lib/runner_common.ml)
- File "src/autofonce_lib/runner_common.ml", line 29, characters 2-16:
- 29 |   Printf.kprintf (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- 
- File "src/autofonce_lib/runner_common.ml", line 53, characters 2-16:
- 53 |   Printf.kprintf (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- 
- File "src/autofonce_lib/runner_common.ml", line 130, characters 6-20:
- 130 |       Printf.kprintf failwith "exec_action: %s not implemented"
-             ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/autofonce_lib/.autofonce_lib.objs/byte -I /home/opam/.opam/5.4/lib/ANSITerminal -I /home/opam/.opam/5.4/lib/ISO8601 -I /home/opam/.opam/5.4/lib/autofonce_config -I /home/opam/.opam/5.4/lib/autofonce_core -I /home/opam/.opam/5.4/lib/autofonce_m4 -I /home/opam/.opam/5.4/lib/autofonce_misc -I /home/opam/.opam/5.4/lib/autofonce_patch -I /home/opam/.opam/5.4/lib/autofonce_share -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/ez_cmdliner -I /home/opam/.opam/5.4/lib/ez_file -I /home/opam/.opam/5.4/lib/ez_subst -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib_stuff -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/toml -cmi-file src/autofonce_lib/.autofonce_lib.objs/byte/autofonce_lib__Logging.cmi -no-alias-deps -open Autofonce_lib -o src/autofonce_lib/.autofonce_lib.objs/byte/autofonce_lib__Logging.cmo -c -impl src/autofonce_lib/logging.ml)
- File "src/autofonce_lib/logging.ml", line 35, characters 2-16:
- 35 |   Printf.kprintf (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/autofonce_lib/.autofonce_lib.objs/byte -I src/autofonce_lib/.autofonce_lib.objs/native -I /home/opam/.opam/5.4/lib/ANSITerminal -I /home/opam/.opam/5.4/lib/ISO8601 -I /home/opam/.opam/5.4/lib/autofonce_config -I /home/opam/.opam/5.4/lib/autofonce_core -I /home/opam/.opam/5.4/lib/autofonce_m4 -I /home/opam/.opam/5.4/lib/autofonce_misc -I /home/opam/.opam/5.4/lib/autofonce_patch -I /home/opam/.opam/5.4/lib/autofonce_share -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/ez_cmdliner -I /home/opam/.opam/5.4/lib/ez_file -I /home/opam/.opam/5.4/lib/ez_subst -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib_stuff -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/toml -cmi-file src/autofonce_lib/.autofonce_lib.objs/byte/autofonce_lib__Runner_common.cmi -no-alias-deps -open Autofonce_lib -o src/autofonce_lib/.autofonce_lib.objs/native/autofonce_lib__Runner_common.cmx -c -impl src/autofonce_lib/runner_common.ml)
- File "src/autofonce_lib/runner_common.ml", line 29, characters 2-16:
- 29 |   Printf.kprintf (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- 
- File "src/autofonce_lib/runner_common.ml", line 53, characters 2-16:
- 53 |   Printf.kprintf (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- 
- File "src/autofonce_lib/runner_common.ml", line 130, characters 6-20:
- 130 |       Printf.kprintf failwith "exec_action: %s not implemented"
-             ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/autofonce_lib/.autofonce_lib.objs/byte -I src/autofonce_lib/.autofonce_lib.objs/native -I /home/opam/.opam/5.4/lib/ANSITerminal -I /home/opam/.opam/5.4/lib/ISO8601 -I /home/opam/.opam/5.4/lib/autofonce_config -I /home/opam/.opam/5.4/lib/autofonce_core -I /home/opam/.opam/5.4/lib/autofonce_m4 -I /home/opam/.opam/5.4/lib/autofonce_misc -I /home/opam/.opam/5.4/lib/autofonce_patch -I /home/opam/.opam/5.4/lib/autofonce_share -I /home/opam/.opam/5.4/lib/bytes -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/ez_cmdliner -I /home/opam/.opam/5.4/lib/ez_file -I /home/opam/.opam/5.4/lib/ez_subst -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocplib_stuff -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/toml -cmi-file src/autofonce_lib/.autofonce_lib.objs/byte/autofonce_lib__Logging.cmi -no-alias-deps -open Autofonce_lib -o src/autofonce_lib/.autofonce_lib.objs/native/autofonce_lib__Logging.cmx -c -impl src/autofonce_lib/logging.ml)
- File "src/autofonce_lib/logging.ml", line 35, characters 2-16:
- 35 |   Printf.kprintf (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
Processing  2/4: [autofonce_lib: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "./scripts/after.sh build 'autofonce_lib'" (CWD=/home/opam/.opam/5.4/.opam-switch/build/autofonce_lib.0.8)
-> compiled  autofonce_lib.0.8
-> removed   autofonce_lib.0.8
Processing  4/4: [autofonce_lib: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "sh" "-c" "./scripts/before.sh install 'autofonce_lib'" (CWD=/home/opam/.opam/5.4/.opam-switch/build/autofonce_lib.0.8)
-> installed autofonce_lib.0.8
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:19.14 ---> saved as "ad7c5ed87142ebde557b3d54b3f6e26d033277cc0a58d884c5256d1740abf6bc"
Job succeeded
2026-03-26 00:19.26: Job succeeded