(not at the head of any monitored branch or PR)
2025-04-15 10:22.47: New job: build dockerfile-cmd.8.2.6, lower-bounds, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27758/head (9ea9d35c51df3c77b9f7a685c4cf0d527cd6a65f)
                              on debian-12-ocaml-4.11/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/27758/head" && git reset --hard 9ea9d35c
git fetch origin master
git merge --no-edit 7ac1b4e19a10b76522563b1a8ff9803429eb32ba
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.11@sha256:94c949434a84fe0e722e9c13c078ed2afa477e62c717de3967c304accad1cd46
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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 dockerfile-cmd.8.2.6 8.2.6
RUN opam reinstall dockerfile-cmd.8.2.6; \
    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" != 'dockerfile-cmd.8.2.6' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMFIXUPCRITERIA="+removed,+count[version-lag,solution]"
ENV OPAMUPGRADECRITERIA="+removed,+count[version-lag,solution]"
RUN opam reinstall dockerfile-cmd.8.2.6; \
    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" != 'dockerfile-cmd.8.2.6' && 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-04-15 10:22.47: Using cache hint "ocaml/opam:debian-12-ocaml-4.11@sha256:94c949434a84fe0e722e9c13c078ed2afa477e62c717de3967c304accad1cd46-dockerfile-cmd.8.2.6-9ea9d35c51df3c77b9f7a685c4cf0d527cd6a65f"
2025-04-15 10:22.47: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.11@sha256:94c949434a84fe0e722e9c13c078ed2afa477e62c717de3967c304accad1cd46)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 dockerfile-cmd.8.2.6 8.2.6"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dockerfile-cmd.8.2.6;\
             \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\" != 'dockerfile-cmd.8.2.6' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (env OPAMCRITERIA +removed,+count[version-lag,solution])
 (env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])
 (env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dockerfile-cmd.8.2.6;\
             \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\" != 'dockerfile-cmd.8.2.6' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-04-15 10:22.47: Waiting for resource in pool OCluster
2025-04-15 10:22.50: Waiting for worker…
2025-04-15 10:23.05: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
Updating files:  98% (22513/22863)
Updating files:  99% (22635/22863)
Updating files: 100% (22863/22863)
Updating files: 100% (22863/22863), done.
HEAD is now at 7ac1b4e19a Merge pull request #27752 from hannesm/maint
Updating 7ac1b4e19a..9ea9d35c51
Fast-forward
 packages/dockerfile-cmd/dockerfile-cmd.8.2.6/opam  | 73 ++++++++++++++++++++++
 .../dockerfile-opam/dockerfile-opam.8.2.6/opam     | 72 +++++++++++++++++++++
 packages/dockerfile/dockerfile.8.2.6/opam          | 68 ++++++++++++++++++++
 3 files changed, 213 insertions(+)
 create mode 100644 packages/dockerfile-cmd/dockerfile-cmd.8.2.6/opam
 create mode 100644 packages/dockerfile-opam/dockerfile-opam.8.2.6/opam
 create mode 100644 packages/dockerfile/dockerfile.8.2.6/opam

(from ocaml/opam:debian-12-ocaml-4.11@sha256:94c949434a84fe0e722e9c13c078ed2afa477e62c717de3967c304accad1cd46)
2025-04-15 10:24.07 ---> saved as "7b3865ea28213ab8153f34355cc56efb168edc3988e504d657a4b3c8f61ae681"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-04-15 10:24.07 ---> saved as "81be6cc86a182cfe252da06cfd89c17e0d9483bcf555dbe9eee5426aa0a60c93"

/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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-04-15 10:24.35 ---> saved as "e584f07ffd7eb8fbaef892180c8b77878608185fc02e21e08d6a7d7240fdad6a"

/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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# 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 (version-controlled)
# pinned               1 (version)
# current-switch       4.11
# invariant            ["ocaml-base-compiler" {= "4.11.2"}]
# compiler-packages    ocaml-base-compiler.4.11.2
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.11/lib/ocaml/stublibs:/home/opam/.opam/4.11/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.11.2
2025-04-15 10:24.36 ---> saved as "4ce726c9f1c48668d319fc5a1de68f4936e27500e833f8c17a8a27208d9efffb"

/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-04-15 10:24.49 ---> saved as "d62384dcaa26b4f5c0a3864d448337b70f19a68f52c42fbbdc573a0cd3ff8af0"

/home/opam: (copy (src .) (dst opam-repository/))
2025-04-15 10:24.59 ---> saved as "905789f7f7331a08771949d11d4a2114b3dac76021934efa48c9b54a9b239075"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-15 10:25.22 ---> saved as "b0446bb74970429c86dfcd042d82e22a6b5b631bc0a98f251f323f8f36b23e37"

/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 [254 kB]
- Fetched 357 kB in 0s (998 kB/s)
- Reading package lists...
2025-04-15 10:25.24 ---> saved as "ac6427625b403050d7eb1a319b56890c1547851c247a341bac60196108ed5a48"

/home/opam: (run (shell "opam pin add -k version -yn dockerfile-cmd.8.2.6 8.2.6"))
dockerfile-cmd is now pinned to version 8.2.6
2025-04-15 10:25.25 ---> saved as "990937dfa3ee7881a86408628f02dc7933b5ab2604f5eef3acf8ea6bc9265c16"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dockerfile-cmd.8.2.6;\
                        \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\" != 'dockerfile-cmd.8.2.6' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dockerfile-cmd.8.2.6 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 27 packages
  - install astring             0.8.5          [required by bos, dockerfile-opam]
  - install base                v0.15.1        [required by ppx_sexp_conv]
  - install bos                 0.2.1          [required by dockerfile-cmd]
  - install cmdliner            1.3.0          [required by dockerfile-cmd]
  - install csexp               1.5.2          [required by dune-configurator]
  - install dockerfile          8.2.6          [required by dockerfile-opam]
  - install dockerfile-cmd      8.2.6 (pinned)
  - install dockerfile-opam     8.2.6          [required by dockerfile-cmd]
  - install dune                3.18.0         [required by dockerfile-cmd]
  - install dune-configurator   3.18.0         [required by base]
  - install fmt                 0.10.0         [required by dockerfile-cmd]
  - install fpath               0.7.3          [required by bos]
  - install logs                0.8.0          [required by dockerfile-cmd]
  - install num                 1.5-1          [required by sexplib]
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ocaml-version       4.0.0          [required by dockerfile-opam]
  - install ocamlbuild          0.16.1         [required by bos]
  - install ocamlfind           1.9.8          [required by bos]
  - install parsexp             v0.15.0        [required by sexplib]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppx_sexp_conv       v0.15.1        [required by dockerfile-cmd]
  - install ppxlib              0.35.0         [required by ppx_sexp_conv]
  - install rresult             0.7.0          [required by bos]
  - install sexplib             v0.15.1        [required by dockerfile-cmd]
  - install sexplib0            v0.15.1        [required by ppx_sexp_conv, sexplib]
  - install stdlib-shims        0.3.0          [required by ppxlib]
  - install topkg               1.0.8          [required by bos]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.15.1  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dockerfile.8.2.6, dockerfile-cmd.8.2.6, dockerfile-opam.8.2.6  (cached)
-> retrieved dune.3.18.0, dune-configurator.3.18.0  (cached)
-> retrieved fmt.0.10.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved logs.0.8.0  (cached)
-> retrieved num.1.5-1  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-version.4.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed cmdliner.1.3.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved parsexp.v0.15.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.15.1  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib.v0.15.1  (cached)
-> retrieved sexplib0.v0.15.1  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.0.8  (cached)
-> installed num.1.5-1
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.0.8
-> installed rresult.0.7.0
-> installed fmt.0.10.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed logs.0.8.0
-> installed bos.0.2.1
-> installed dune.3.18.0
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-version.4.0.0
-> installed sexplib0.v0.15.1
-> installed stdlib-shims.0.3.0
-> installed dune-configurator.3.18.0
-> installed base.v0.15.1
-> installed parsexp.v0.15.0
-> installed sexplib.v0.15.1
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.15.1
-> installed dockerfile.8.2.6
-> installed dockerfile-opam.8.2.6
-> installed dockerfile-cmd.8.2.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 10:26.17 ---> saved as "7c1fc9a433d575015e0bae0bf94dd70234695373233000413dd36f77d3595e4f"

/home/opam: (env OPAMCRITERIA +removed,+count[version-lag,solution])

/home/opam: (env OPAMFIXUPCRITERIA +removed,+count[version-lag,solution])

/home/opam: (env OPAMUPGRADECRITERIA +removed,+count[version-lag,solution])

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dockerfile-cmd.8.2.6;\
                        \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\" != 'dockerfile-cmd.8.2.6' && 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:
=== remove 2 packages
  - remove    csexp                   1.5.2                     [conflicts with dune]
  - remove    stdlib-shims            0.3.0                     [conflicts with dune]
=== downgrade 19 packages
  - downgrade astring                 0.8.5 to 0.8.2            [uses ocamlbuild]
  - downgrade base                    v0.15.1 to v0.13.1        [uses dune]
  - downgrade cmdliner                1.3.0 to 1.0.3            [required by dockerfile-cmd]
  - downgrade dune                    3.18.0 to 3.0.2           [required by dockerfile-cmd]
  - downgrade dune-configurator       3.18.0 to 2.3.0           [uses dune]
  - downgrade fmt                     0.10.0 to 0.8.10          [required by dockerfile-cmd]
  - downgrade logs                    0.8.0 to 0.6.3            [required by dockerfile-cmd]
  - downgrade num                     1.5-1 to 1.0              [uses ocamlfind]
  - downgrade ocaml-compiler-libs     v0.12.4 to v0.11.0        [required by ppxlib]
  - downgrade ocaml-version           4.0.0 to 3.5.0            [uses dune]
  - downgrade ocamlbuild              0.16.1 to 0.14.0          [required by fmt]
  - downgrade ocamlfind               1.9.8 to 1.8.1            [required by fmt]
  - downgrade parsexp                 v0.15.0 to v0.13.0        [required by sexplib]
  - downgrade ppx_derivers            1.2.1 to 1.0              [required by ppxlib]
  - downgrade ppx_sexp_conv           v0.15.1 to v0.13.0        [required by dockerfile-cmd]
  - downgrade ppxlib                  0.35.0 to 0.12.0          [uses dune]
  - downgrade sexplib                 v0.15.1 to v0.13.0        [required by dockerfile-cmd]
  - downgrade sexplib0                v0.15.1 to v0.13.0        [required by sexplib]
  - downgrade topkg                   1.0.8 to 1.0.3            [required by fmt]
=== recompile 5 packages
  - recompile bos                     0.2.1                     [uses fmt]
  - recompile dockerfile              8.2.6                     [uses fmt]
  - recompile dockerfile-cmd          8.2.6 (pinned)
  - recompile dockerfile-opam         8.2.6                     [uses fmt]
  - recompile fpath                   0.7.3                     [uses ocamlbuild]
=== install 7 packages
  - install   base-bytes              base                      [required by astring]
  - install   conf-m4                 1                         [required by ocamlfind]
  - install   dune-private-libs       2.3.0                     [required by dune-configurator]
  - install   jbuilder                1.0+beta20.1 (deprecated) [required by ocaml-compiler-libs]
  - install   ocaml-migrate-parsetree 1.7.3 (deprecated)        [required by ppxlib]
  - install   result                  1.5                       [required by ocaml-migrate-parsetree]
  - install   stdio                   v0.13.0                   [required by ppxlib]

The following system packages will first need to be installed:
    m4

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "m4"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package m4.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18747 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Setting up m4 (1.4.19-3) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.2  (cached)
-> retrieved base.v0.13.1  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved cmdliner.1.0.3  (cached)
-> retrieved dockerfile.8.2.6, dockerfile-cmd.8.2.6, dockerfile-opam.8.2.6  (cached)
-> installed conf-m4.1
-> retrieved dune.3.0.2  (cached)
-> retrieved dune-configurator.2.3.0, dune-private-libs.2.3.0  (cached)
-> retrieved fmt.0.8.10  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved jbuilder.1.0+beta20.1  (cached)
-> retrieved logs.0.6.3  (cached)
-> retrieved num.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.11.0  (cached)
-> retrieved ocaml-migrate-parsetree.1.7.3  (cached)
-> retrieved ocaml-version.3.5.0  (cached)
-> retrieved ocamlbuild.0.14.0  (cached)
-> retrieved ocamlfind.1.8.1  (cached)
-> retrieved parsexp.v0.13.0  (cached)
-> retrieved ppx_derivers.1.0  (cached)
-> retrieved ppx_sexp_conv.v0.13.0  (cached)
-> retrieved ppxlib.0.12.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved sexplib.v0.13.0  (cached)
-> retrieved sexplib0.v0.13.0  (cached)
-> retrieved stdio.v0.13.0  (cached)
-> retrieved topkg.1.0.3  (cached)
-> installed jbuilder.1.0+beta20.1
-> removed   dockerfile-cmd.8.2.6
-> removed   bos.0.2.1
-> removed   dockerfile-opam.8.2.6
-> removed   dockerfile.8.2.6
-> removed   fpath.0.7.3
-> removed   astring.0.8.5
-> removed   logs.0.8.0
-> removed   fmt.0.10.0
-> removed   cmdliner.1.3.0
-> removed   ocaml-version.4.0.0
-> removed   ppx_sexp_conv.v0.15.1
-> removed   ppxlib.0.35.0
-> removed   ocaml-compiler-libs.v0.12.4
-> removed   ppx_derivers.1.2.1
-> removed   sexplib.v0.15.1
-> removed   num.1.5-1
-> removed   parsexp.v0.15.0
-> removed   base.v0.15.1
-> removed   dune-configurator.3.18.0
-> removed   csexp.1.5.2
-> removed   sexplib0.v0.15.1
-> removed   stdlib-shims.0.3.0
-> removed   dune.3.18.0
-> removed   topkg.1.0.8
-> removed   ocamlbuild.0.16.1
-> removed   ocamlfind.1.9.8
-> installed dune.3.0.2
-> installed ocaml-compiler-libs.v0.11.0
-> installed ocamlbuild.0.14.0
-> installed ocamlfind.1.8.1
-> installed base-bytes.base
-> installed cmdliner.1.0.3
-> installed ocaml-version.3.5.0
-> installed ppx_derivers.1.0
-> installed result.1.5
-> installed sexplib0.v0.13.0
-> installed dune-private-libs.2.3.0
-> installed num.1.0
-> installed dune-configurator.2.3.0
-> installed topkg.1.0.3
-> installed ocaml-migrate-parsetree.1.7.3
-> installed fmt.0.8.10
-> installed astring.0.8.2
-> installed fpath.0.7.3
-> installed logs.0.6.3
-> installed base.v0.13.1
-> installed stdio.v0.13.0
-> installed parsexp.v0.13.0
-> installed bos.0.2.1
-> installed sexplib.v0.13.0
-> installed ppxlib.0.12.0
-> installed ppx_sexp_conv.v0.13.0
-> installed dockerfile.8.2.6
-> installed dockerfile-opam.8.2.6
-> installed dockerfile-cmd.8.2.6
Done.

<><> ocaml-migrate-parsetree.1.7.3 installed successfully <><><><><><><><><><><>
=> Note: This package is deprecated.

<><> jbuilder.1.0+beta20.1 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 10:27.12 ---> saved as "d9deb42863898d814e2d3fb5fcb90c95c949e189f2a573243fd876f28c3a0d0f"
Job succeeded
2025-04-15 10:27.34: Job succeeded