(not at the head of any monitored branch or PR)
2025-04-15 16:16.47: New job: test tuareg.3.0.1 with dune-configurator.3.18.1, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27761/head (45a9003972a4bc10898d8844bef612e0e0029914)
                              on debian-12-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/27761/head" && git reset --hard 45a90039
git fetch origin master
git merge --no-edit 70b82be6e261da74b766f9bb1344a1ecd5b1909d
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050
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 dune-configurator.3.18.1 3.18.1
RUN opam reinstall dune-configurator.3.18.1; \
    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" != 'dune-configurator.3.18.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall tuareg.3.0.1; \
    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" != 'tuareg.3.0.1' && 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 tuareg.3.0.1) || true
RUN opam reinstall --with-test --verbose tuareg.3.0.1; \
    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" != 'tuareg.3.0.1' && 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 16:16.47: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050-dune-configurator.3.18.1-tuareg.3.0.1-45a9003972a4bc10898d8844bef612e0e0029914"
2025-04-15 16:16.47: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050)
 (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 dune-configurator.3.18.1 3.18.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune-configurator.3.18.1;\
             \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\" != 'dune-configurator.3.18.1' && 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 tuareg.3.0.1;\
             \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\" != 'tuareg.3.0.1' && 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 tuareg.3.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose tuareg.3.0.1;\
             \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\" != 'tuareg.3.0.1' && 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 16:16.47: Waiting for resource in pool OCluster
2025-04-15 19:12.42: Waiting for worker…
2025-04-15 19:14.59: Got resource from pool OCluster
Building on x86-bm-c2.sw.ocaml.org
All commits already cached
Updating files:  54% (12428/22880)
Updating files:  55% (12584/22880)
Updating files:  56% (12813/22880)
Updating files:  57% (13042/22880)
Updating files:  58% (13271/22880)
Updating files:  59% (13500/22880)
Updating files:  60% (13728/22880)
Updating files:  61% (13957/22880)
Updating files:  62% (14186/22880)
Updating files:  63% (14415/22880)
Updating files:  64% (14644/22880)
Updating files:  65% (14872/22880)
Updating files:  66% (15101/22880)
Updating files:  67% (15330/22880)
Updating files:  68% (15559/22880)
Updating files:  69% (15788/22880)
Updating files:  70% (16016/22880)
Updating files:  71% (16245/22880)
Updating files:  72% (16474/22880)
Updating files:  73% (16703/22880)
Updating files:  74% (16932/22880)
Updating files:  75% (17160/22880)
Updating files:  76% (17389/22880)
Updating files:  77% (17618/22880)
Updating files:  78% (17847/22880)
Updating files:  79% (18076/22880)
Updating files:  80% (18304/22880)
Updating files:  81% (18533/22880)
Updating files:  82% (18762/22880)
Updating files:  83% (18991/22880)
Updating files:  84% (19220/22880)
Updating files:  85% (19448/22880)
Updating files:  86% (19677/22880)
Updating files:  87% (19906/22880)
Updating files:  88% (20135/22880)
Updating files:  89% (20364/22880)
Updating files:  90% (20592/22880)
Updating files:  91% (20821/22880)
Updating files:  92% (21050/22880)
Updating files:  93% (21279/22880)
Updating files:  94% (21508/22880)
Updating files:  95% (21736/22880)
Updating files:  96% (21965/22880)
Updating files:  97% (22194/22880)
Updating files:  98% (22423/22880)
Updating files:  99% (22652/22880)
Updating files: 100% (22880/22880)
Updating files: 100% (22880/22880), done.
HEAD is now at 70b82be6e2 Merge pull request #27756 from chetmurthy/release-camlp5-8.03.04
Updating 70b82be6e2..45a9003972
Fast-forward
 packages/chrome-trace/chrome-trace.3.18.1/opam     | 41 ++++++++++++
 .../dune-action-plugin.3.18.1/opam                 | 54 ++++++++++++++++
 .../dune-build-info/dune-build-info.3.18.1/opam    | 47 ++++++++++++++
 .../dune-configurator.3.18.1/opam                  | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.18.1/opam           | 44 +++++++++++++
 .../dune-private-libs.3.18.1/opam                  | 52 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.18.1/opam     | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.18.1/opam             | 45 +++++++++++++
 packages/dune-site/dune-site.3.18.1/opam           | 39 ++++++++++++
 packages/dune/dune.3.18.1/opam                     | 73 ++++++++++++++++++++++
 packages/dyn/dyn.3.18.1/opam                       | 42 +++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.18.1/opam         | 45 +++++++++++++
 packages/ordering/ordering.3.18.1/opam             | 40 ++++++++++++
 packages/stdune/stdune.3.18.1/opam                 | 46 ++++++++++++++
 packages/xdg/xdg.3.18.1/opam                       | 41 ++++++++++++
 15 files changed, 703 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.18.1/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.18.1/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.18.1/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.18.1/opam
 create mode 100644 packages/dune-glob/dune-glob.3.18.1/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.18.1/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.18.1/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.18.1/opam
 create mode 100644 packages/dune-site/dune-site.3.18.1/opam
 create mode 100644 packages/dune/dune.3.18.1/opam
 create mode 100644 packages/dyn/dyn.3.18.1/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.18.1/opam
 create mode 100644 packages/ordering/ordering.3.18.1/opam
 create mode 100644 packages/stdune/stdune.3.18.1/opam
 create mode 100644 packages/xdg/xdg.3.18.1/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:ec682473bce2c2c47749ae1025968d0b585bdde0fcd2b8e7871a79f983cc1050)
2025-04-15 19:15.03 ---> using "c803204894feb69882c6f8a93debc38d237226aa0742423bb8ecaf2af7ff192b" from cache

/: (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 19:15.03 ---> using "ece3a69ccd84d1bc3f538d5d927c0677b7135e0ed5c5cf4c9c4520c17f38358a" 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, which can't be reverted.
You may want to back it up before going further.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-04-15 19:15.03 ---> using "d5e769d11ef10526cdb73f418d047f005a7a5b69bb629bfc2d2d388c7c8b8cdf" 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.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                 39
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-04-15 19:15.03 ---> using "715b54b0301c5ea573dce9ba6774fadf0f93b64dc7a24253bfe6c76c219d7da5" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-04-15 19:15.03 ---> using "2963a137c235cb1efcbb6bb5c962ec263787dd9c8275045ae610283ae366c13d" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-04-15 19:15.06 ---> using "c09bf3edab97cea63fa144e6f5ecf2869b6fb4925fdd1aac25138a67330f6681" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-04-15 19:15.06 ---> using "1e72cc37196eed0f1745a95595b3baa136f4f1d0128340fbaf2f61ec1938d8f7" from cache

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

/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.18.1 3.18.1"))
dune-configurator is now pinned to version 3.18.1
2025-04-15 19:15.06 ---> using "a8df9e0660d0f90f84499b44ef14d60d58b0c716d72064b8f82219a302c13af6" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.18.1, dune-configurator.3.18.1  (cached)
-> installed dune.3.18.1
-> installed csexp.1.5.2
-> installed dune-configurator.3.18.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 19:15.06 ---> using "a78086b5bdca7d3054387bd9b97fe4704446fe590527fc2c96cb815b2805cdc8" from cache

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

The following system packages will first need to be installed:
    emacs-nox

<><> 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" "emacs-nox"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package cron-daemon-common.
- (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 .../cron-daemon-common_3.0pl1-162_all.deb ...
- Unpacking cron-daemon-common (3.0pl1-162) ...
- Selecting previously unselected package sensible-utils.
- Preparing to unpack .../sensible-utils_0.0.17+nmu1_all.deb ...
- Unpacking sensible-utils (0.0.17+nmu1) ...
- Setting up cron-daemon-common (3.0pl1-162) ...
- Adding group `crontab' (GID 102) ...
- Done.
- Selecting previously unselected package cron.
- (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 ... 18792 files and directories currently installed.)
- Preparing to unpack .../0-cron_3.0pl1-162_amd64.deb ...
- Unpacking cron (3.0pl1-162) ...
- Selecting previously unselected package libdbus-1-3:amd64.
- Preparing to unpack .../1-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../2-dbus-bin_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-bin (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../3-dbus-session-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package libapparmor1:amd64.
- Preparing to unpack .../4-libapparmor1_3.0.8-3_amd64.deb ...
- Unpacking libapparmor1:amd64 (3.0.8-3) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../5-dbus-daemon_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus-daemon (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../6-dbus-system-bus-common_1.14.10-1~deb12u1_all.deb ...
- Unpacking dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../7-dbus_1.14.10-1~deb12u1_amd64.deb ...
- Unpacking dbus (1.14.10-1~deb12u1) ...
- Selecting previously unselected package install-info.
- Preparing to unpack .../8-install-info_6.8-6+b1_amd64.deb ...
- Unpacking install-info (6.8-6+b1) ...
- Setting up install-info (6.8-6+b1) ...
- Selecting previously unselected package media-types.
- (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 ... 18920 files and directories currently installed.)
- Preparing to unpack .../00-media-types_10.0.0_all.deb ...
- Unpacking media-types (10.0.0) ...
- Selecting previously unselected package alsa-topology-conf.
- Preparing to unpack .../01-alsa-topology-conf_1.2.5.1-2_all.deb ...
- Unpacking alsa-topology-conf (1.2.5.1-2) ...
- Selecting previously unselected package libasound2-data.
- Preparing to unpack .../02-libasound2-data_1.2.8-1_all.deb ...
- Unpacking libasound2-data (1.2.8-1) ...
- Selecting previously unselected package libasound2:amd64.
- Preparing to unpack .../03-libasound2_1.2.8-1+b1_amd64.deb ...
- Unpacking libasound2:amd64 (1.2.8-1+b1) ...
- Selecting previously unselected package alsa-ucm-conf.
- Preparing to unpack .../04-alsa-ucm-conf_1.2.8-1_all.deb ...
- Unpacking alsa-ucm-conf (1.2.8-1) ...
- Selecting previously unselected package emacs-el.
- Preparing to unpack .../05-emacs-el_1%3a28.2+1-15+deb12u4_all.deb ...
- Unpacking emacs-el (1:28.2+1-15+deb12u4) ...
- Selecting previously unselected package emacsen-common.
- Preparing to unpack .../06-emacsen-common_3.0.5_all.deb ...
- Unpacking emacsen-common (3.0.5) ...
- Selecting previously unselected package emacs-common.
- Preparing to unpack .../07-emacs-common_1%3a28.2+1-15+deb12u4_all.deb ...
- Unpacking emacs-common (1:28.2+1-15+deb12u4) ...
- Selecting previously unselected package emacs-bin-common.
- Preparing to unpack .../08-emacs-bin-common_1%3a28.2+1-15+deb12u4_amd64.deb ...
- Unpacking emacs-bin-common (1:28.2+1-15+deb12u4) ...
- Selecting previously unselected package libgccjit0:amd64.
- Preparing to unpack .../09-libgccjit0_12.2.0-14_amd64.deb ...
- Unpacking libgccjit0:amd64 (12.2.0-14) ...
- Selecting previously unselected package liblcms2-2:amd64.
- Preparing to unpack .../10-liblcms2-2_2.14-2_amd64.deb ...
- Unpacking liblcms2-2:amd64 (2.14-2) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../11-libicu72_72.1-3_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../12-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Selecting previously unselected package emacs-nox.
- Preparing to unpack .../13-emacs-nox_1%3a28.2+1-15+deb12u4_amd64.deb ...
- Unpacking emacs-nox (1:28.2+1-15+deb12u4) ...
- Selecting previously unselected package exim4-config.
- Preparing to unpack .../14-exim4-config_4.96-15+deb12u7_all.deb ...
- Unpacking exim4-config (4.96-15+deb12u7) ...
- Selecting previously unselected package exim4-base.
- Preparing to unpack .../15-exim4-base_4.96-15+deb12u7_amd64.deb ...
- Unpacking exim4-base (4.96-15+deb12u7) ...
- Selecting previously unselected package libevent-2.1-7:amd64.
- Preparing to unpack .../16-libevent-2.1-7_2.1.12-stable-8_amd64.deb ...
- Unpacking libevent-2.1-7:amd64 (2.1.12-stable-8) ...
- Selecting previously unselected package libunbound8:amd64.
- Preparing to unpack .../17-libunbound8_1.17.1-2+deb12u2_amd64.deb ...
- Unpacking libunbound8:amd64 (1.17.1-2+deb12u2) ...
- Selecting previously unselected package libgnutls-dane0:amd64.
- Preparing to unpack .../18-libgnutls-dane0_3.7.9-2+deb12u4_amd64.deb ...
- Unpacking libgnutls-dane0:amd64 (3.7.9-2+deb12u4) ...
- Selecting previously unselected package libidn12:amd64.
- Preparing to unpack .../19-libidn12_1.41-1_amd64.deb ...
- Unpacking libidn12:amd64 (1.41-1) ...
- Selecting previously unselected package exim4-daemon-light.
- Preparing to unpack .../20-exim4-daemon-light_4.96-15+deb12u7_amd64.deb ...
- Unpacking exim4-daemon-light (4.96-15+deb12u7) ...
- Selecting previously unselected package gsasl-common.
- Preparing to unpack .../21-gsasl-common_2.2.0-1_all.deb ...
- Unpacking gsasl-common (2.2.0-1) ...
- Selecting previously unselected package libgc1:amd64.
- Preparing to unpack .../22-libgc1_1%3a8.2.2-3_amd64.deb ...
- Unpacking libgc1:amd64 (1:8.2.2-3) ...
- Selecting previously unselected package guile-3.0-libs:amd64.
- Preparing to unpack .../23-guile-3.0-libs_3.0.8-2_amd64.deb ...
- Unpacking guile-3.0-libs:amd64 (3.0.8-2) ...
- Selecting previously unselected package libfribidi0:amd64.
- Preparing to unpack .../24-libfribidi0_1.0.8-2.1_amd64.deb ...
- Unpacking libfribidi0:amd64 (1.0.8-2.1) ...
- Selecting previously unselected package libgssglue1:amd64.
- Preparing to unpack .../25-libgssglue1_0.7-1.1_amd64.deb ...
- Unpacking libgssglue1:amd64 (0.7-1.1) ...
- Selecting previously unselected package libntlm0:amd64.
- Preparing to unpack .../26-libntlm0_1.6-4_amd64.deb ...
- Unpacking libntlm0:amd64 (1.6-4) ...
- Selecting previously unselected package libgsasl18:amd64.
- Preparing to unpack .../27-libgsasl18_2.2.0-1_amd64.deb ...
- Unpacking libgsasl18:amd64 (2.2.0-1) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../28-libltdl7_2.4.7-7~deb12u1_amd64.deb ...
- Unpacking libltdl7:amd64 (2.4.7-7~deb12u1) ...
- Selecting previously unselected package mailutils-common.
- Preparing to unpack .../29-mailutils-common_1%3a3.15-4_all.deb ...
- Unpacking mailutils-common (1:3.15-4) ...
- Selecting previously unselected package mysql-common.
- Preparing to unpack .../30-mysql-common_5.8+1.1.0_all.deb ...
- Unpacking mysql-common (5.8+1.1.0) ...
- Selecting previously unselected package mariadb-common.
- Preparing to unpack .../31-mariadb-common_1%3a10.11.11-0+deb12u1_all.deb ...
- Unpacking mariadb-common (1:10.11.11-0+deb12u1) ...
- Selecting previously unselected package libmariadb3:amd64.
- Preparing to unpack .../32-libmariadb3_1%3a10.11.11-0+deb12u1_amd64.deb ...
- Unpacking libmariadb3:amd64 (1:10.11.11-0+deb12u1) ...
- Selecting previously unselected package libpq5:amd64.
- Preparing to unpack .../33-libpq5_15.12-0+deb12u2_amd64.deb ...
- Unpacking libpq5:amd64 (15.12-0+deb12u2) ...
- Selecting previously unselected package libpython3.11-minimal:amd64.
- Preparing to unpack .../34-libpython3.11-minimal_3.11.2-6+deb12u5_amd64.deb ...
- Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ...
- Selecting previously unselected package libpython3.11-stdlib:amd64.
- Preparing to unpack .../35-libpython3.11-stdlib_3.11.2-6+deb12u5_amd64.deb ...
- Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ...
- Selecting previously unselected package libpython3.11:amd64.
- Preparing to unpack .../36-libpython3.11_3.11.2-6+deb12u5_amd64.deb ...
- Unpacking libpython3.11:amd64 (3.11.2-6+deb12u5) ...
- Selecting previously unselected package libmailutils9:amd64.
- Preparing to unpack .../37-libmailutils9_1%3a3.15-4_amd64.deb ...
- Unpacking libmailutils9:amd64 (1:3.15-4) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../38-libncurses6_6.4-4_amd64.deb ...
- Unpacking libncurses6:amd64 (6.4-4) ...
- Selecting previously unselected package mailutils.
- Preparing to unpack .../39-mailutils_1%3a3.15-4_amd64.deb ...
- Unpacking mailutils (1:3.15-4) ...
- Setting up media-types (10.0.0) ...
- Setting up liblcms2-2:amd64 (2.14-2) ...
- Setting up mysql-common (5.8+1.1.0) ...
- update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
- Setting up libapparmor1:amd64 (3.0.8-3) ...
- Setting up libicu72:amd64 (72.1-3) ...
- Setting up libpq5:amd64 (15.12-0+deb12u2) ...
- Setting up mariadb-common (1:10.11.11-0+deb12u1) ...
- update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
- Setting up libasound2-data (1.2.8-1) ...
- Setting up emacsen-common (3.0.5) ...
- Setting up libntlm0:amd64 (1.6-4) ...
- Setting up libncurses6:amd64 (6.4-4) ...
- Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
- Setting up libfribidi0:amd64 (1.0.8-2.1) ...
- Setting up libidn12:amd64 (1.41-1) ...
- Setting up libevent-2.1-7:amd64 (2.1.12-stable-8) ...
- Setting up mailutils-common (1:3.15-4) ...
- Setting up libgssglue1:amd64 (0.7-1.1) ...
- Setting up libmariadb3:amd64 (1:10.11.11-0+deb12u1) ...
- Setting up libgc1:amd64 (1:8.2.2-3) ...
- Setting up libltdl7:amd64 (2.4.7-7~deb12u1) ...
- Setting up libgsasl18:amd64 (2.2.0-1) ...
- Setting up alsa-topology-conf (1.2.5.1-2) ...
- Setting up sensible-utils (0.0.17+nmu1) ...
- Setting up exim4-config (4.96-15+deb12u7) ...
- Adding system-user for exim (v4)
- Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ...
- Setting up libasound2:amd64 (1.2.8-1+b1) ...
- Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ...
- Setting up gsasl-common (2.2.0-1) ...
- Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ...
- Setting up libgccjit0:amd64 (12.2.0-14) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Setting up dbus-bin (1.14.10-1~deb12u1) ...
- Setting up alsa-ucm-conf (1.2.8-1) ...
- Setting up guile-3.0-libs:amd64 (3.0.8-2) ...
- Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ...
- Setting up cron (3.0pl1-162) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up dbus-daemon (1.14.10-1~deb12u1) ...
- Setting up libunbound8:amd64 (1.17.1-2+deb12u2) ...
- Setting up dbus (1.14.10-1~deb12u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libgnutls-dane0:amd64 (3.7.9-2+deb12u4) ...
- Setting up exim4-base (4.96-15+deb12u7) ...
- exim: DB upgrade, deleting hints-db
- Setting up libpython3.11:amd64 (3.11.2-6+deb12u5) ...
- Setting up libmailutils9:amd64 (1:3.15-4) ...
- Setting up exim4-daemon-light (4.96-15+deb12u7) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up mailutils (1:3.15-4) ...
- update-alternatives: using /usr/bin/frm.mailutils to provide /usr/bin/frm (frm) in auto mode
- update-alternatives: using /usr/bin/from.mailutils to provide /usr/bin/from (from) in auto mode
- update-alternatives: using /usr/bin/messages.mailutils to provide /usr/bin/messages (messages) in auto mode
- update-alternatives: using /usr/bin/movemail.mailutils to provide /usr/bin/movemail (movemail) in auto mode
- update-alternatives: using /usr/bin/readmsg.mailutils to provide /usr/bin/readmsg (readmsg) in auto mode
- update-alternatives: using /usr/bin/dotlock.mailutils to provide /usr/bin/dotlock (dotlock) in auto mode
- update-alternatives: using /usr/bin/mail.mailutils to provide /usr/bin/mailx (mailx) in auto mode
- Setting up emacs-el (1:28.2+1-15+deb12u4) ...
- Setting up emacs-common (1:28.2+1-15+deb12u4) ...
- Setting up emacs-bin-common (1:28.2+1-15+deb12u4) ...
- update-alternatives: using /usr/bin/ctags.emacs to provide /usr/bin/ctags (ctags) in auto mode
- update-alternatives: using /usr/bin/ebrowse.emacs to provide /usr/bin/ebrowse (ebrowse) in auto mode
- update-alternatives: using /usr/bin/emacsclient.emacs to provide /usr/bin/emacsclient (emacsclient) in auto mode
- update-alternatives: using /usr/bin/etags.emacs to provide /usr/bin/etags (etags) in auto mode
- Setting up emacs-nox (1:28.2+1-15+deb12u4) ...
- update-alternatives: using /usr/bin/emacs-nox to provide /usr/bin/emacs (emacs) in auto mode
- Install emacsen-common for emacs
- emacsen-common: Handling install of emacsen flavor emacs
- Processing triggers for libc-bin (2.36-9+deb12u10) ...
- Processing triggers for install-info (6.8-6+b1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved tuareg.3.0.1  (cached)
-> installed conf-emacs.1
-> installed tuareg.3.0.1
Done.

<><> tuareg.3.0.1 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> If you have not yet done so, please add the following line to ~/.emacs.d/init.el or ~/.emacs:
       (load "/home/opam/.opam/4.14/share/emacs/site-lisp/tuareg-site-file")
=> You should consider installing "merlin" (completion, displaying types,...)
   or "caml-mode" (displaying types).  See https://github.com/ocaml/tuareg
   for customization tips.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 19:15.35 ---> saved as "91de771f9122ff5e33710b611e5f7a57cb2f9d180140da9c7b0af756e9f59e39"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test tuareg.3.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile tuareg 3.0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved tuareg.3.0.1  (https://github.com/ocaml/tuareg/releases/download/3.0.1/tuareg-3.0.1.tar.gz)
-> removed   tuareg.3.0.1
-> installed tuareg.3.0.1
Done.

<><> tuareg.3.0.1 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> If you have not yet done so, please add the following line to ~/.emacs.d/init.el or ~/.emacs:
       (load "/home/opam/.opam/4.14/share/emacs/site-lisp/tuareg-site-file")
=> You should consider installing "merlin" (completion, displaying types,...)
   or "caml-mode" (displaying types).  See https://github.com/ocaml/tuareg
   for customization tips.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 19:15.47 ---> saved as "a2d7d83f40363a8d557bb7c0f0a0c5de5143a09aae88f4c56f1b6fa4e6d6f375"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [tuareg.3.0.1: extract]
-> retrieved tuareg.3.0.1  (cached)
Processing  2/4: [tuareg: make tuareg-site-file.el]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "tuareg-site-file.el" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tuareg.3.0.1)
- (echo ";;; tuareg-site-file.el --- Automatically extracted autoloads.  -*- lexical-binding: t; -*-";\
-  echo ";;; Code:";\
-  echo "(add-to-list 'load-path";\
-  echo "             (or (file-name-directory load-file-name) (car load-path)))";\
-  echo "") >tuareg-site-file.el
- emacs --batch --eval '(if (>= emacs-major-version 28) (make-directory-autoloads "." "'`pwd`'/tuareg-site-file.el") (setq generated-autoload-file "'`pwd`'/tuareg-site-file.el") (batch-update-autoloads))' "."
- Loading /etc/emacs/site-start.d/00debian.el (source)...
-   INFO     Scraping files for tuareg-site-file.el... 
-   INFO     Scraping files for tuareg-site-file.el...done
Processing  2/4: [tuareg: make elc]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "elc" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tuareg.3.0.1)
- emacs --batch -L . --no-init-file  -f batch-byte-compile tuareg.el
- Loading /etc/emacs/site-start.d/00debian.el (source)...
- emacs --batch -L . --no-init-file  -f batch-byte-compile ocamldebug.el
- Loading /etc/emacs/site-start.d/00debian.el (source)...
- emacs --batch -L . --no-init-file  -f batch-byte-compile tuareg-opam.el
- Loading /etc/emacs/site-start.d/00debian.el (source)...
- emacs --batch -L . --no-init-file  -f batch-byte-compile tuareg-menhir.el
- Loading /etc/emacs/site-start.d/00debian.el (source)...
- emacs --batch -L . --no-init-file  -f batch-byte-compile tuareg-compat.el
- Loading /etc/emacs/site-start.d/00debian.el (source)...
- emacs --batch -L . --no-init-file  -f batch-byte-compile tuareg-site-file.el
- Loading /etc/emacs/site-start.d/00debian.el (source)...
-> compiled  tuareg.3.0.1
-> removed   tuareg.3.0.1
-> installed tuareg.3.0.1
Done.

<><> tuareg.3.0.1 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> If you have not yet done so, please add the following line to ~/.emacs.d/init.el or ~/.emacs:
       (load "/home/opam/.opam/4.14/share/emacs/site-lisp/tuareg-site-file")
=> You should consider installing "merlin" (completion, displaying types,...)
   or "caml-mode" (displaying types).  See https://github.com/ocaml/tuareg
   for customization tips.
# To update the current shell environment, run: eval $(opam env)
2025-04-15 19:15.58 ---> saved as "707d807a710a27dd5f0b8ade0246d746f5a664d903250e153c4202cbae4d4d6e"
Job succeeded
2025-04-15 19:16.05: Job succeeded