2024-02-11 20:23.50: New job: test autofonce_m4.0.8 with conf-pkg-config.1.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/25235/head (8c7391d6ec81e93f24de221eb32a886b72d1ede6)
                              on debian-12-ocaml-5.1/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/25235/head" && git reset --hard 8c7391d6
git fetch origin master
git merge --no-edit 8477e9a74beb40d85534ab7653b65d45607a147f
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="500"
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
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam pin add -k version -yn conf-pkg-config.1.2 1.2
RUN opam reinstall conf-pkg-config.1.2; \
    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" != 'conf-pkg-config.1.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam reinstall autofonce_m4.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'autofonce_m4.0.8' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN (opam reinstall --with-test autofonce_m4.0.8) || true
RUN opam reinstall --with-test --verbose autofonce_m4.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'autofonce_m4.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 .

2024-02-11 20:23.50: Using cache hint "ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930-conf-pkg-config.1.2-autofonce_m4.0.8-8c7391d6ec81e93f24de221eb32a886b72d1ede6"
2024-02-11 20:23.50: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930)
 (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"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 500)
 (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"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (shell "opam pin add -k version -yn conf-pkg-config.1.2 1.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-pkg-config.1.2;\
             \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\" != 'conf-pkg-config.1.2' && 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[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall autofonce_m4.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-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\" != 'autofonce_m4.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"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (network host)
      (shell "(opam reinstall --with-test autofonce_m4.0.8) || true"))
 (run (shell  "opam reinstall --with-test --verbose autofonce_m4.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-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\" != 'autofonce_m4.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"))
)

2024-02-11 20:23.50: Waiting for resource in pool OCluster
2024-02-12 19:35.32: Waiting for worker…
2024-02-12 19:37.17: Got resource from pool OCluster
Building on c2-1.equinix.ci.dev
All commits already cached
Updating files:  36% (11962/32918)
Updating files:  37% (12180/32918)
Updating files:  38% (12509/32918)
Updating files:  39% (12839/32918)
Updating files:  40% (13168/32918)
Updating files:  41% (13497/32918)
Updating files:  42% (13826/32918)
Updating files:  43% (14155/32918)
Updating files:  44% (14484/32918)
Updating files:  45% (14814/32918)
Updating files:  46% (15143/32918)
Updating files:  47% (15472/32918)
Updating files:  48% (15801/32918)
Updating files:  49% (16130/32918)
Updating files:  50% (16459/32918)
Updating files:  51% (16789/32918)
Updating files:  52% (17118/32918)
Updating files:  53% (17447/32918)
Updating files:  54% (17776/32918)
Updating files:  55% (18105/32918)
Updating files:  56% (18435/32918)
Updating files:  57% (18764/32918)
Updating files:  58% (19093/32918)
Updating files:  59% (19422/32918)
Updating files:  60% (19751/32918)
Updating files:  61% (20080/32918)
Updating files:  62% (20410/32918)
Updating files:  63% (20739/32918)
Updating files:  64% (21068/32918)
Updating files:  65% (21397/32918)
Updating files:  66% (21726/32918)
Updating files:  67% (22056/32918)
Updating files:  68% (22385/32918)
Updating files:  69% (22714/32918)
Updating files:  70% (23043/32918)
Updating files:  71% (23372/32918)
Updating files:  71% (23472/32918)
Updating files:  72% (23701/32918)
Updating files:  73% (24031/32918)
Updating files:  74% (24360/32918)
Updating files:  75% (24689/32918)
Updating files:  76% (25018/32918)
Updating files:  77% (25347/32918)
Updating files:  78% (25677/32918)
Updating files:  79% (26006/32918)
Updating files:  80% (26335/32918)
Updating files:  81% (26664/32918)
Updating files:  82% (26993/32918)
Updating files:  83% (27322/32918)
Updating files:  84% (27652/32918)
Updating files:  85% (27981/32918)
Updating files:  86% (28310/32918)
Updating files:  87% (28639/32918)
Updating files:  88% (28968/32918)
Updating files:  89% (29298/32918)
Updating files:  90% (29627/32918)
Updating files:  91% (29956/32918)
Updating files:  92% (30285/32918)
Updating files:  93% (30614/32918)
Updating files:  94% (30943/32918)
Updating files:  95% (31273/32918)
Updating files:  96% (31602/32918)
Updating files:  97% (31931/32918)
Updating files:  98% (32260/32918)
Updating files:  99% (32589/32918)
Updating files: 100% (32918/32918)
Updating files: 100% (32918/32918), done.
HEAD is now at 8477e9a74b Merge pull request #25221 from nberth/mlgmpidl-1.3.0
Updating 8477e9a74b..8c7391d6ec
Fast-forward
 packages/conf-pkg-config/conf-pkg-config.1.0/opam | 2 +-
 packages/conf-pkg-config/conf-pkg-config.1.1/opam | 1 +
 packages/conf-pkg-config/conf-pkg-config.1.2/opam | 1 +
 packages/conf-pkg-config/conf-pkg-config.1.3/opam | 1 +
 packages/conf-pkg-config/conf-pkg-config.2/opam   | 1 +
 packages/conf-pkg-config/conf-pkg-config.3/opam   | 4 +++-
 6 files changed, 8 insertions(+), 2 deletions(-)

(from ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.1@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930' locally
docker.io/ocaml/opam@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930: Pulling from ocaml/opam
Digest: sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930
Status: Downloaded newer image for ocaml/opam@sha256:931805f2c2fdb0b5642ae8463ff0780c2ee3f4afb48734a7d94e2d5163429930
2024-02-12 19:37.55 ---> using "4df7ce52b8e0afe130cbfff7d9b001e43cae58bd8e8710cd073ce7c11b1c6ac8" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-02-12 19:37.55 ---> using "fabdc8d00b7a2ab01a803ca00a256ed207574901ddddc9a6dbf4cc04f1ae7d62" 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.

Continue? [y/n] y
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2~alpha, which can't be reverted.
You may want to back it up before going further.

[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-02-12 19:37.55 ---> using "a86a8cbad124032470c24d01ed532902e3276f71c46876c139d923bc122fdb5a" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 500)

/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/"))
2024-02-12 19:37.55 ---> using "232efc62707a00b24b05f715bbaa9b3faf39b0b54385e977ab6b90483222088b" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-02-12 19:37.57 ---> using "18201c4bfce2b49754f729448b3f7fd9e25debc469a727a7f57f43905f50c9e9" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-02-12 19:37.57 ---> using "f1544e96afbc9f81b3133e9ef665ada600f2a48b479fdc7f981b4ef67c185a33" 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 bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8786 kB]
- Get:5 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [137 kB]
- Fetched 9175 kB in 1s (6900 kB/s)
- Reading package lists...
- 
2024-02-12 19:37.57 ---> using "c57797d3259ee1fb484144207f043b6dafc8662e6a9f1c955466ba8652f616c1" from cache

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (shell "opam pin add -k version -yn conf-pkg-config.1.2 1.2"))
conf-pkg-config is now pinned to version 1.2
2024-02-12 19:37.57 ---> using "7118da8b5eb93a05b717eb9e264e5a67e78a37b4e972204e924d8089225d8970" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conf-pkg-config.1.2;\
                        \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\" != 'conf-pkg-config.1.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
conf-pkg-config.1.2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install conf-pkg-config 1.2 (pinned)

The following system packages will first need to be installed:
    pkg-config

<><> 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" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3:amd64.
- (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 ... 18774 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.1.2
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-12 19:37.57 ---> using "3c6ab78e8321e09999f6b7920ce6dd288c0f4a277a0c0c4c489c80915e70cb22" from cache

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall autofonce_m4.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-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\" != 'autofonce_m4.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_m4.0.8 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 7 packages
  - install autofonce_m4   0.8
  - install autofonce_misc 0.8    [required by autofonce_m4]
  - install dune           3.13.1 [required by autofonce_m4]
  - install ez_file        0.3.0  [required by autofonce_m4]
  - install ocplib_stuff   0.4.0  [required by autofonce_m4]
  - install re             1.11.0 [required by ez_file]
  - install seq            base   [required by re]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved autofonce_m4.0.8, autofonce_misc.0.8  (https://github.com/ocamlpro/autofonce/archive/v0.8.tar.gz)
-> retrieved dune.3.13.1  (cached)
-> retrieved ez_file.0.3.0  (https://github.com/ocamlpro/ez_file/archive/v0.3.0.tar.gz)
-> retrieved ocplib_stuff.0.4.0  (cached)
-> retrieved re.1.11.0  (cached)
-> installed seq.base
-> installed dune.3.13.1
-> installed ocplib_stuff.0.4.0
-> installed re.1.11.0
-> installed ez_file.0.3.0
-> installed autofonce_misc.0.8
-> installed autofonce_m4.0.8
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-12 19:39.03 ---> saved as "aa95d1c9c62ad7aeebc68fa719c9e813e9075670fb93a4377c0550eb68bbb189"

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test autofonce_m4.0.8) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile autofonce_m4        0.8
=== install 47 packages
  - install   astring             0.8.5    [required by ocamlformat-lib]
  - install   base                v0.16.3  [required by ppx_expect]
  - install   base-bytes          base     [required by ocp-indent]
  - install   camlp-streams       5.0.1    [required by ocamlformat-lib]
  - install   cmdliner            1.2.0    [required by ocamlformat]
  - install   csexp               1.5.2    [required by ocamlformat-lib]
  - install   dune-build-info     3.13.1   [required by ocamlformat-lib]
  - install   dune-configurator   3.13.1   [required by base]
  - install   either              1.0.0    [required by ocamlformat-lib]
  - install   fix                 20230505 [required by ocamlformat-lib]
  - install   fpath               0.7.3    [required by ocamlformat-lib]
  - install   jane-street-headers v0.16.0  [required by time_now]
  - install   jst-config          v0.16.0  [required by time_now]
  - install   menhir              20231231 [required by ocamlformat-lib]
  - install   menhirCST           20231231 [required by menhir]
  - install   menhirLib           20231231 [required by ocamlformat-lib]
  - install   menhirSdk           20231231 [required by ocamlformat-lib]
  - install   ocaml-compiler-libs v0.12.4  [required by ppxlib]
  - install   ocaml-version       3.6.4    [required by ocamlformat-lib]
  - install   ocamlbuild          0.14.3   [required by fpath, astring, uuseg]
  - install   ocamlfind           1.9.6    [required by ocp-indent, astring, fpath, uuseg]
  - install   ocamlformat         0.26.1   [required by autofonce_m4]
  - install   ocamlformat-lib     0.26.1   [required by ocamlformat]
  - install   ocp-indent          1.8.1    [required by ocamlformat-lib]
  - install   ppx_assert          v0.16.0  [required by jst-config]
  - install   ppx_base            v0.16.0  [required by time_now]
  - install   ppx_cold            v0.16.0  [required by ppx_base]
  - install   ppx_compare         v0.16.0  [required by ppx_base]
  - install   ppx_derivers        1.2.1    [required by ppxlib]
  - install   ppx_enumerate       v0.16.0  [required by ppx_base]
  - install   ppx_expect          v0.16.0  [required by autofonce_m4]
  - install   ppx_globalize       v0.16.0  [required by ppx_base]
  - install   ppx_hash            v0.16.0  [required by ppx_base]
  - install   ppx_here            v0.16.0  [required by ppx_expect]
  - install   ppx_inline_test     v0.16.1  [required by autofonce_m4]
  - install   ppx_optcomp         v0.16.0  [required by time_now]
  - install   ppx_sexp_conv       v0.16.0  [required by ppx_base]
  - install   ppxlib              0.32.0   [required by ppx_expect]
  - install   result              1.5      [required by ocamlformat-lib]
  - install   sexplib0            v0.16.0  [required by base, ppxlib]
  - install   stdio               v0.16.0  [required by ppx_expect]
  - install   stdlib-shims        0.3.0    [required by ppxlib]
  - install   time_now            v0.16.0  [required by ppx_inline_test]
  - install   topkg               1.0.7    [required by fpath, astring, uuseg]
  - install   uucp                15.1.0   [required by uuseg]
  - install   uuseg               15.1.0   [required by ocamlformat-lib]
  - install   uutf                1.0.3    [required by ocamlformat-lib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved autofonce_m4.0.8  (https://github.com/ocamlpro/autofonce/archive/v0.8.tar.gz)
-> retrieved base.v0.16.3  (https://github.com/janestreet/base/archive/refs/tags/v0.16.3.tar.gz)
-> retrieved camlp-streams.5.0.1  (https://github.com/ocaml/camlp-streams/archive/v5.0.1.tar.gz)
-> retrieved cmdliner.1.2.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-1.2.0.tbz)
-> retrieved csexp.1.5.2  (https://github.com/ocaml-dune/csexp/releases/download/1.5.2/csexp-1.5.2.tbz)
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> retrieved dune-build-info.3.13.1, dune-configurator.3.13.1  (https://github.com/ocaml/dune/releases/download/3.13.1/dune-3.13.1.tbz)
-> retrieved either.1.0.0  (https://github.com/mirage/either/releases/download/1.0.0/either-1.0.0.tbz)
-> installed cmdliner.1.2.0
-> retrieved fix.20230505  (https://gitlab.inria.fr/fpottier/fix/-/archive/20230505/archive.tar.gz)
-> installed either.1.0.0
-> retrieved fpath.0.7.3  (https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz)
-> retrieved jane-street-headers.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/jane-street-headers-v0.16.0.tar.gz)
-> retrieved jst-config.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/jst-config-v0.16.0.tar.gz)
-> installed dune-build-info.3.13.1
-> installed jane-street-headers.v0.16.0
-> installed fix.20230505
-> retrieved menhir.20231231, menhirCST.20231231, menhirLib.20231231, menhirSdk.20231231  (https://gitlab.inria.fr/fpottier/menhir/-/archive/20231231/archive.tar.gz)
-> installed dune-configurator.3.13.1
-> retrieved ocaml-compiler-libs.v0.12.4  (https://github.com/janestreet/ocaml-compiler-libs/releases/download/v0.12.4/ocaml-compiler-libs-v0.12.4.tbz)
-> installed menhirCST.20231231
-> retrieved ocaml-version.3.6.4  (https://github.com/ocurrent/ocaml-version/releases/download/v3.6.4/ocaml-version-3.6.4.tbz)
-> retrieved ocamlbuild.0.14.3  (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.14.3.tar.gz)
-> installed ocaml-version.3.6.4
-> installed menhirLib.20231231
-> retrieved ocamlfind.1.9.6  (http://download.camlcity.org/download/findlib-1.9.6.tar.gz)
-> retrieved ocamlformat.0.26.1, ocamlformat-lib.0.26.1  (https://github.com/ocaml-ppx/ocamlformat/releases/download/0.26.1/ocamlformat-0.26.1.tbz)
-> retrieved ocp-indent.1.8.1  (https://github.com/OCamlPro/ocp-indent/archive/1.8.1.tar.gz)
-> retrieved ppx_assert.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_assert-v0.16.0.tar.gz)
-> retrieved ppx_base.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_base-v0.16.0.tar.gz)
-> retrieved ppx_cold.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_cold-v0.16.0.tar.gz)
-> retrieved ppx_compare.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_compare-v0.16.0.tar.gz)
-> retrieved ppx_derivers.1.2.1  (https://github.com/ocaml-ppx/ppx_derivers/archive/1.2.1.tar.gz)
-> retrieved ppx_enumerate.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_enumerate-v0.16.0.tar.gz)
-> retrieved ppx_expect.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_expect-v0.16.0.tar.gz)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_globalize.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_globalize-v0.16.0.tar.gz)
-> retrieved ppx_hash.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_hash-v0.16.0.tar.gz)
-> retrieved ppx_here.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_here-v0.16.0.tar.gz)
-> retrieved ppx_inline_test.v0.16.1  (https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.16.1.tar.gz)
-> retrieved ppx_optcomp.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_optcomp-v0.16.0.tar.gz)
-> retrieved ppx_sexp_conv.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_conv-v0.16.0.tar.gz)
-> installed menhirSdk.20231231
-> retrieved ppxlib.0.32.0  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.32.0/ppxlib-0.32.0.tbz)
-> retrieved result.1.5  (https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz)
-> retrieved sexplib0.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz)
-> retrieved stdio.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/stdio-v0.16.0.tar.gz)
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> installed result.1.5
-> retrieved time_now.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/time_now-v0.16.0.tar.gz)
-> installed stdlib-shims.0.3.0
-> retrieved topkg.1.0.7  (https://erratique.ch/software/topkg/releases/topkg-1.0.7.tbz)
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.16.0
-> retrieved uucp.15.1.0  (https://erratique.ch/software/uucp/releases/uucp-15.1.0.tbz)
-> retrieved uuseg.15.1.0  (https://erratique.ch/software/uuseg/releases/uuseg-15.1.0.tbz)
-> retrieved uutf.1.0.3  (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocp-indent.1.8.1
-> removed   autofonce_m4.0.8
-> installed ocamlbuild.0.14.3
-> installed base.v0.16.3
-> installed stdio.v0.16.0
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed ppxlib.0.32.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed menhir.20231231
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed uucp.15.1.0
-> installed ppx_inline_test.v0.16.1
-> installed uuseg.15.1.0
-> installed ppx_expect.v0.16.0
-> installed ocamlformat-lib.0.26.1
-> installed ocamlformat.0.26.1
-> installed autofonce_m4.0.8
Done.

<><> ocp-indent.1.8.1 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.1/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/home/opam/.opam/5.1/share/ocp-indent/vim"
# Run eval $(opam env) to update the current shell environment
2024-02-12 19:43.32 ---> saved as "212d2296005e4e4c0d6d7bb18cd9a8f1a7eee3948aba08470387f64ed419a506"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4:
-> retrieved autofonce_m4.0.8  (cached)
Processing  2/4: [autofonce_m4: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "./scripts/before.sh build 'autofonce_m4'" (CWD=/home/opam/.opam/5.1/.opam-switch/build/autofonce_m4.0.8)
Processing  2/4: [autofonce_m4: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "autofonce_m4" "-j" "47" "@install" "@runtest" (CWD=/home/opam/.opam/5.1/.opam-switch/build/autofonce_m4.0.8)
- (cd _build/default/src/autofonce_m4 && /home/opam/.opam/5.1/bin/ocaml unix.cma version.mlt) > _build/default/src/autofonce_m4/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.1/bin/ocamlc.opt -w -40 -g -bin-annot -I src/autofonce_m4/.autofonce_m4.objs/byte -I /home/opam/.opam/5.1/lib/autofonce_misc -I /home/opam/.opam/5.1/lib/ez_file -I /home/opam/.opam/5.1/lib/ocaml/unix -I /home/opam/.opam/5.1/lib/ocplib_stuff -I /home/opam/.opam/5.1/lib/re -I /home/opam/.opam/5.1/lib/seq -intf-suffix .ml -no-alias-deps -open Autofonce_m4 -o src/autofonce_m4/.autofonce_m4.objs/byte/autofonce_m4__M4Parser.cmo -c -impl src/autofonce_m4/m4Parser.ml)
- File "src/autofonce_m4/m4Parser.ml", line 17, characters 2-16:
- 17 |   Printf.kprintf (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- 
- File "src/autofonce_m4/m4Parser.ml", line 24, characters 2-16:
- 24 |   Printf.kprintf (fun s -> raise ( Error (s, loc))) fmt
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- (cd _build/default && /home/opam/.opam/5.1/bin/ocamlc.opt -w -40 -g -bin-annot -I src/autofonce_m4/.autofonce_m4.objs/byte -I /home/opam/.opam/5.1/lib/autofonce_misc -I /home/opam/.opam/5.1/lib/ez_file -I /home/opam/.opam/5.1/lib/ocaml/unix -I /home/opam/.opam/5.1/lib/ocplib_stuff -I /home/opam/.opam/5.1/lib/re -I /home/opam/.opam/5.1/lib/seq -intf-suffix .ml -no-alias-deps -open Autofonce_m4 -o src/autofonce_m4/.autofonce_m4.objs/byte/autofonce_m4__M4Lexer.cmo -c -impl src/autofonce_m4/m4Lexer.ml)
- File "src/autofonce_m4/m4Lexer.mll", line 116, characters 8-22:
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- (cd _build/default && /home/opam/.opam/5.1/bin/ocamlopt.opt -w -40 -g -I src/autofonce_m4/.autofonce_m4.objs/byte -I src/autofonce_m4/.autofonce_m4.objs/native -I /home/opam/.opam/5.1/lib/autofonce_misc -I /home/opam/.opam/5.1/lib/ez_file -I /home/opam/.opam/5.1/lib/ocaml/unix -I /home/opam/.opam/5.1/lib/ocplib_stuff -I /home/opam/.opam/5.1/lib/re -I /home/opam/.opam/5.1/lib/seq -intf-suffix .ml -no-alias-deps -open Autofonce_m4 -o src/autofonce_m4/.autofonce_m4.objs/native/autofonce_m4__M4Lexer.cmx -c -impl src/autofonce_m4/m4Lexer.ml)
- File "src/autofonce_m4/m4Lexer.mll", line 116, characters 8-22:
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- (cd _build/default && /home/opam/.opam/5.1/bin/ocamlopt.opt -w -40 -g -I src/autofonce_m4/.autofonce_m4.objs/byte -I src/autofonce_m4/.autofonce_m4.objs/native -I /home/opam/.opam/5.1/lib/autofonce_misc -I /home/opam/.opam/5.1/lib/ez_file -I /home/opam/.opam/5.1/lib/ocaml/unix -I /home/opam/.opam/5.1/lib/ocplib_stuff -I /home/opam/.opam/5.1/lib/re -I /home/opam/.opam/5.1/lib/seq -intf-suffix .ml -no-alias-deps -open Autofonce_m4 -o src/autofonce_m4/.autofonce_m4.objs/native/autofonce_m4__M4Parser.cmx -c -impl src/autofonce_m4/m4Parser.ml)
- File "src/autofonce_m4/m4Parser.ml", line 17, characters 2-16:
- 17 |   Printf.kprintf (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
- 
- File "src/autofonce_m4/m4Parser.ml", line 24, characters 2-16:
- 24 |   Printf.kprintf (fun s -> raise ( Error (s, loc))) fmt
-        ^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.Printf.kprintf
- Use Printf.ksprintf instead.
Processing  2/4: [autofonce_m4: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "./scripts/after.sh build 'autofonce_m4'" (CWD=/home/opam/.opam/5.1/.opam-switch/build/autofonce_m4.0.8)
-> compiled  autofonce_m4.0.8
-> removed   autofonce_m4.0.8
Processing  4/4: [autofonce_m4: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "sh" "-c" "./scripts/before.sh install 'autofonce_m4'" (CWD=/home/opam/.opam/5.1/.opam-switch/build/autofonce_m4.0.8)
-> installed autofonce_m4.0.8
Done.
# Run eval $(opam env) to update the current shell environment
2024-02-12 19:44.47 ---> saved as "eda4f261634b82c4c18592611094bbe560fda00f9c90890df396180869ebc7f0"
Job succeeded
2024-02-12 19:45.53: Job succeeded