(not at the head of any monitored branch or PR)
2025-05-08 10:55.48: New job: test mariadb.1.3.0, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27862/head (35be0d7bf19936e002865b4e7d605d861ae74477)
                              on debian-12-ocaml-4.10/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/27862/head" && git reset --hard 35be0d7b
git fetch origin master
git merge --no-edit b8a7f49af3f606bf8a22869a1b52b250dd90092e
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.10@sha256:67c5b68f98c4e1cac86f17cb6db59e1a40b92ddfe23475041b687bf9f9eb74bf
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 mariadb.1.3.0 1.3.0
RUN opam reinstall mariadb.1.3.0; \
    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" != 'mariadb.1.3.0' && 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 mariadb.1.3.0) || true
RUN opam reinstall --with-test --verbose mariadb.1.3.0; \
    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" != 'mariadb.1.3.0' && 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-05-08 10:55.48: Using cache hint "ocaml/opam:debian-12-ocaml-4.10@sha256:67c5b68f98c4e1cac86f17cb6db59e1a40b92ddfe23475041b687bf9f9eb74bf-mariadb.1.3.0-35be0d7bf19936e002865b4e7d605d861ae74477"
2025-05-08 10:55.48: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.10@sha256:67c5b68f98c4e1cac86f17cb6db59e1a40b92ddfe23475041b687bf9f9eb74bf)
 (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 mariadb.1.3.0 1.3.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall mariadb.1.3.0;\
             \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\" != 'mariadb.1.3.0' && 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 mariadb.1.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose mariadb.1.3.0;\
             \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\" != 'mariadb.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-05-08 10:55.48: Waiting for resource in pool OCluster
2025-05-08 10:55.48: Waiting for worker…
2025-05-08 10:55.48: Got resource from pool OCluster
Building on x86-bm-c1.sw.ocaml.org
All commits already cached
Updating files:  79% (18190/23005)
Updating files:  80% (18404/23005)
Updating files:  81% (18635/23005)
Updating files:  82% (18865/23005)
Updating files:  83% (19095/23005)
Updating files:  84% (19325/23005)
Updating files:  85% (19555/23005)
Updating files:  86% (19785/23005)
Updating files:  87% (20015/23005)
Updating files:  88% (20245/23005)
Updating files:  89% (20475/23005)
Updating files:  90% (20705/23005)
Updating files:  91% (20935/23005)
Updating files:  92% (21165/23005)
Updating files:  93% (21395/23005)
Updating files:  94% (21625/23005)
Updating files:  95% (21855/23005)
Updating files:  96% (22085/23005)
Updating files:  97% (22315/23005)
Updating files:  98% (22545/23005)
Updating files:  99% (22775/23005)
Updating files: 100% (23005/23005)
Updating files: 100% (23005/23005), done.
HEAD is now at b8a7f49af3 Merge pull request #27858 from lukstafi/opam-publish-metal.0.1.0
Updating b8a7f49af3..35be0d7bf1
Fast-forward
 packages/mariadb/mariadb.1.3.0/opam | 39 +++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 packages/mariadb/mariadb.1.3.0/opam

(from ocaml/opam:debian-12-ocaml-4.10@sha256:67c5b68f98c4e1cac86f17cb6db59e1a40b92ddfe23475041b687bf9f9eb74bf)
2025-05-08 10:56.31 ---> saved as "eb2cc2e39406438c419d416dd380900a7b2767f89fcf64a9d40a3c340b1307b9"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-05-08 10:56.31 ---> saved as "90ebcd99a32104cae0bdef14da5c2c11cf9d7400c2a839aff159c46f1404237e"

/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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-05-08 10:57.06 ---> saved as "7c63b01bfe924667bcf26d3e5ca0c9a9555d0b844010e23feda1c7ad5a6ce902"

/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.10
# invariant            ["ocaml-base-compiler" {= "4.10.2"}]
# compiler-packages    ocaml-base-compiler.4.10.2
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.10/lib/ocaml/stublibs:/home/opam/.opam/4.10/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.10.2
2025-05-08 10:57.07 ---> saved as "0eda48f95afcb2bea030f2a83864aa6d3cb56e6698acfa0a1cefb1b657b0430b"

/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-05-08 10:57.18 ---> saved as "65a3f97a5db33ded8dc3e94c876a7b790901fa234f92b3f3f65b4ed6ad33940a"

/home/opam: (copy (src .) (dst opam-repository/))
2025-05-08 10:57.28 ---> saved as "e8a88852b41a3a12271d04bda1e1cdaa6cdc42bf9dcfbbcbce618df05970bd70"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-05-08 10:57.55 ---> saved as "b8c3d4fc516af5e5f56ea168c0a8613a93eca06a4e46868fe60aa4b7a0c890a7"

/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 [258 kB]
- Fetched 361 kB in 0s (1308 kB/s)
- Reading package lists...
- 
2025-05-08 10:57.56 ---> saved as "6d1af4aa3182a7553cad85e2fb012cc602770ea3dee67f35a5f5e87af5d6dbfc"

/home/opam: (run (shell "opam pin add -k version -yn mariadb.1.3.0 1.3.0"))
mariadb is now pinned to version 1.3.0
2025-05-08 10:57.57 ---> saved as "ab8da93014b93c4f4d0133afc450a9c242391bcf8881f7eafc956d2a0adefabd"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mariadb.1.3.0;\
                        \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\" != 'mariadb.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
mariadb.1.3.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 11 packages
  - install bigarray-compat   1.1.0          [required by ctypes]
  - install conf-gcc          1.0            [required by mariadb]
  - install conf-mariadb      2              [required by mariadb]
  - install conf-pkg-config   4              [required by mariadb]
  - install csexp             1.5.2          [required by dune-configurator]
  - install ctypes            0.23.0         [required by mariadb]
  - install dune              3.18.2         [required by mariadb]
  - install dune-configurator 3.18.2         [required by mariadb]
  - install integers          0.7.0          [required by ctypes]
  - install mariadb           1.3.0 (pinned)
  - install stdlib-shims      0.3.0          [required by integers]

The following system packages will first need to be installed:
    libmariadb-dev 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" "libmariadb-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package mysql-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 .../0-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 .../1-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 .../2-libmariadb3_1%3a10.11.11-0+deb12u1_amd64.deb ...
- Unpacking libmariadb3:amd64 (1:10.11.11-0+deb12u1) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../3-libssl-dev_3.0.15-1~deb12u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.0.15-1~deb12u1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../4-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Selecting previously unselected package libmariadb-dev.
- Preparing to unpack .../5-libmariadb-dev_1%3a10.11.11-0+deb12u1_amd64.deb ...
- Unpacking libmariadb-dev (1:10.11.11-0+deb12u1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../6-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- 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 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 libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libssl-dev:amd64 (3.0.15-1~deb12u1) ...
- Setting up libmariadb3:amd64 (1:10.11.11-0+deb12u1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Setting up libmariadb-dev (1:10.11.11-0+deb12u1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.23.0  (cached)
-> installed conf-gcc.1.0
-> installed conf-pkg-config.4
-> installed conf-mariadb.2
-> retrieved dune.3.18.2, dune-configurator.3.18.2  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved mariadb.1.3.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.18.2
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed dune-configurator.3.18.2
-> installed ctypes.0.23.0
-> installed mariadb.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-08 10:59.09 ---> saved as "b2fa383da160b8a908967f7818a4dc30d6999bd0066390e9f903e880de532594"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test mariadb.1.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile mariadb                 1.3.0 (pinned)
=== install 65 packages
  - install   async                   v0.14.0        [required by mariadb]
  - install   async_kernel            v0.14.0        [required by async]
  - install   async_rpc_kernel        v0.14.0        [required by async]
  - install   async_unix              v0.14.0        [required by async]
  - install   base                    v0.14.3        [required by core_kernel]
  - install   base-bytes              base           [required by ocplib-endian]
  - install   base_bigstring          v0.14.0        [required by core_kernel]
  - install   base_quickcheck         v0.14.1        [required by core_kernel]
  - install   bin_prot                v0.14.1        [required by core_kernel]
  - install   core                    v0.14.1        [required by async]
  - install   core_kernel             v0.14.2        [required by async]
  - install   cppo                    1.8.0          [required by lwt]
  - install   fieldslib               v0.14.0        [required by core_kernel]
  - install   jane-street-headers     v0.14.0        [required by core_kernel]
  - install   jst-config              v0.14.1        [required by core_kernel, core]
  - install   lwt                     5.9.1          [required by mariadb]
  - install   num                     1.5-1          [required by sexplib]
  - install   ocaml-compiler-libs     v0.12.4        [required by ppxlib]
  - install   ocamlfind               1.9.8          [required by base-bytes]
  - install   ocplib-endian           1.2            [required by lwt]
  - install   octavius                1.2.2          [required by ppx_js_style]
  - install   parsexp                 v0.14.2        [required by sexplib]
  - install   ppx_assert              v0.14.0        [required by core_kernel]
  - install   ppx_base                v0.14.0        [required by core_kernel]
  - install   ppx_bench               v0.14.1        [required by ppx_jane]
  - install   ppx_bin_prot            v0.14.0        [required by ppx_jane]
  - install   ppx_cold                v0.14.0        [required by ppx_base]
  - install   ppx_compare             v0.14.0        [required by ppx_base, bin_prot]
  - install   ppx_custom_printf       v0.14.1        [required by ppx_jane]
  - install   ppx_derivers            1.2.1          [required by ppxlib]
  - install   ppx_enumerate           v0.14.0        [required by ppx_base]
  - install   ppx_expect              v0.14.2        [required by ppx_jane]
  - install   ppx_fields_conv         v0.14.2        [required by ppx_jane]
  - install   ppx_fixed_literal       v0.14.0        [required by ppx_jane]
  - install   ppx_hash                v0.14.0        [required by core_kernel]
  - install   ppx_here                v0.14.0        [required by ppx_jane]
  - install   ppx_inline_test         v0.14.1        [required by core_kernel]
  - install   ppx_jane                v0.14.0        [required by async]
  - install   ppx_js_style            v0.14.1        [required by ppx_base]
  - install   ppx_let                 v0.14.0        [required by ppx_jane]
  - install   ppx_module_timer        v0.14.0        [required by ppx_jane]
  - install   ppx_optcomp             v0.14.3        [required by core_kernel]
  - install   ppx_optional            v0.14.0        [required by ppx_jane]
  - install   ppx_pipebang            v0.14.0        [required by ppx_jane]
  - install   ppx_sexp_conv           v0.14.3        [required by core_kernel]
  - install   ppx_sexp_message        v0.14.1        [required by core_kernel]
  - install   ppx_sexp_value          v0.14.0        [required by ppx_jane]
  - install   ppx_stable              v0.14.1        [required by ppx_jane]
  - install   ppx_string              v0.14.1        [required by ppx_jane]
  - install   ppx_typerep_conv        v0.14.2        [required by ppx_jane]
  - install   ppx_variants_conv       v0.14.2        [required by ppx_jane]
  - install   ppxlib                  0.25.1         [required by ppx_jane]
  - install   protocol_version_header v0.14.0        [required by async_rpc_kernel]
  - install   re                      1.11.0         [required by ppx_expect]
  - install   seq                     base           [required by re]
  - install   sexplib                 v0.14.0        [required by core_kernel, core]
  - install   sexplib0                v0.14.0        [required by base, sexplib]
  - install   spawn                   v0.17.0        [required by core]
  - install   splittable_random       v0.14.0        [required by core_kernel]
  - install   stdio                   v0.14.0        [required by core_kernel]
  - install   textutils               v0.14.0        [required by async]
  - install   time_now                v0.14.0        [required by core_kernel]
  - install   timezone                v0.14.0        [required by core]
  - install   typerep                 v0.14.0        [required by core_kernel]
  - install   variantslib             v0.14.0        [required by core_kernel]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved async.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/async-v0.14.0.tar.gz)
-> retrieved async_kernel.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_kernel-v0.14.0.tar.gz)
-> retrieved async_rpc_kernel.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_rpc_kernel-v0.14.0.tar.gz)
-> retrieved async_unix.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_unix-v0.14.0.tar.gz)
-> retrieved base.v0.14.3  (https://github.com/janestreet/base/archive/v0.14.3.tar.gz)
-> retrieved base_bigstring.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/base_bigstring-v0.14.0.tar.gz)
-> retrieved base_quickcheck.v0.14.1  (https://github.com/janestreet/base_quickcheck/archive/v0.14.1.tar.gz)
-> retrieved bin_prot.v0.14.1  (https://github.com/janestreet/bin_prot/archive/refs/tags/v0.14.1.tar.gz)
-> retrieved core.v0.14.1  (https://github.com/janestreet/core/archive/v0.14.1.tar.gz)
-> retrieved core_kernel.v0.14.2  (https://github.com/janestreet/core_kernel/archive/v0.14.2.tar.gz)
-> retrieved cppo.1.8.0  (https://github.com/ocaml-community/cppo/archive/v1.8.0.tar.gz)
-> retrieved fieldslib.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/fieldslib-v0.14.0.tar.gz)
-> retrieved jane-street-headers.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/jane-street-headers-v0.14.0.tar.gz)
-> installed jane-street-headers.v0.14.0
-> retrieved jst-config.v0.14.1  (https://github.com/janestreet/jst-config/archive/refs/tags/v0.14.1.tar.gz)
-> retrieved lwt.5.9.1  (https://github.com/ocsigen/lwt/archive/refs/tags/5.9.1.tar.gz)
-> installed cppo.1.8.0
-> retrieved num.1.5-1  (https://github.com/ocaml/num/archive/v1.5.tar.gz)
-> 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)
-> retrieved ocamlfind.1.9.8  (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> retrieved ocplib-endian.1.2  (https://github.com/OCamlPro/ocplib-endian/archive/refs/tags/1.2.tar.gz)
-> retrieved octavius.1.2.2  (https://github.com/ocaml-doc/octavius/archive/v1.2.2.tar.gz)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved parsexp.v0.14.2  (https://github.com/janestreet/parsexp/archive/refs/tags/v0.14.2.tar.gz)
-> retrieved ppx_assert.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_assert-v0.14.0.tar.gz)
-> installed num.1.5-1
-> retrieved ppx_base.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_base-v0.14.0.tar.gz)
-> retrieved ppx_bench.v0.14.1  (https://github.com/janestreet/ppx_bench/archive/v0.14.1.tar.gz)
-> retrieved ppx_bin_prot.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_bin_prot-v0.14.0.tar.gz)
-> retrieved ppx_cold.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_cold-v0.14.0.tar.gz)
-> retrieved ppx_compare.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_compare-v0.14.0.tar.gz)
-> installed octavius.1.2.2
-> retrieved ppx_custom_printf.v0.14.1  (https://github.com/janestreet/ppx_custom_printf/archive/v0.14.1.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.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_enumerate-v0.14.0.tar.gz)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_expect.v0.14.2  (https://github.com/janestreet/ppx_expect/archive/v0.14.2.tar.gz)
-> retrieved ppx_fields_conv.v0.14.2  (https://github.com/janestreet/ppx_fields_conv/archive/v0.14.2.tar.gz)
-> retrieved ppx_fixed_literal.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_fixed_literal-v0.14.0.tar.gz)
-> retrieved ppx_hash.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_hash-v0.14.0.tar.gz)
-> retrieved ppx_here.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_here-v0.14.0.tar.gz)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> retrieved ppx_inline_test.v0.14.1  (https://github.com/janestreet/ppx_inline_test/archive/v0.14.1.tar.gz)
-> retrieved ppx_jane.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_jane-v0.14.0.tar.gz)
-> installed ocplib-endian.1.2
-> retrieved ppx_js_style.v0.14.1  (https://github.com/janestreet/ppx_js_style/archive/refs/tags/v0.14.1.tar.gz)
-> retrieved ppx_let.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_let-v0.14.0.tar.gz)
-> retrieved ppx_module_timer.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_module_timer-v0.14.0.tar.gz)
-> retrieved ppx_optcomp.v0.14.3  (https://github.com/janestreet/ppx_optcomp/archive/v0.14.3.tar.gz)
-> retrieved ppx_optional.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_optional-v0.14.0.tar.gz)
-> retrieved ppx_pipebang.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_pipebang-v0.14.0.tar.gz)
-> retrieved ppx_sexp_conv.v0.14.3  (https://github.com/janestreet/ppx_sexp_conv/archive/v0.14.3.tar.gz)
-> retrieved ppx_sexp_message.v0.14.1  (https://github.com/janestreet/ppx_sexp_message/archive/v0.14.1.tar.gz)
-> retrieved ppx_sexp_value.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/ppx_sexp_value-v0.14.0.tar.gz)
-> retrieved ppx_stable.v0.14.1  (https://github.com/janestreet/ppx_stable/archive/v0.14.1.tar.gz)
-> retrieved ppx_string.v0.14.1  (https://github.com/janestreet/ppx_string/archive/v0.14.1.tar.gz)
-> retrieved ppx_typerep_conv.v0.14.2  (https://github.com/janestreet/ppx_typerep_conv/archive/v0.14.2.tar.gz)
-> retrieved ppx_variants_conv.v0.14.2  (https://github.com/janestreet/ppx_variants_conv/archive/v0.14.2.tar.gz)
-> retrieved ppxlib.0.25.1  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.25.1/ppxlib-0.25.1.tbz)
-> retrieved protocol_version_header.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/protocol_version_header-v0.14.0.tar.gz)
-> installed lwt.5.9.1
-> retrieved re.1.11.0  (https://github.com/ocaml/ocaml-re/releases/download/1.11.0/re-1.11.0.tbz)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved sexplib.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexplib-v0.14.0.tar.gz)
-> retrieved sexplib0.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/sexplib0-v0.14.0.tar.gz)
-> retrieved spawn.v0.17.0  (https://github.com/janestreet/spawn/releases/download/v0.17.0/spawn-v0.17.0.tbz)
-> retrieved splittable_random.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/splittable_random-v0.14.0.tar.gz)
-> retrieved stdio.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/stdio-v0.14.0.tar.gz)
-> installed sexplib0.v0.14.0
-> retrieved textutils.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/textutils-v0.14.0.tar.gz)
-> retrieved time_now.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/time_now-v0.14.0.tar.gz)
-> installed re.1.11.0
-> removed   mariadb.1.3.0
-> installed spawn.v0.17.0
-> retrieved timezone.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/timezone-v0.14.0.tar.gz)
-> retrieved typerep.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/typerep-v0.14.0.tar.gz)
-> retrieved variantslib.v0.14.0  (https://ocaml.janestreet.com/ocaml-core/v0.14/files/variantslib-v0.14.0.tar.gz)
-> installed base.v0.14.3
-> installed fieldslib.v0.14.0
-> installed variantslib.v0.14.0
-> installed stdio.v0.14.0
-> installed typerep.v0.14.0
-> installed parsexp.v0.14.2
-> installed sexplib.v0.14.0
-> installed ppxlib.0.25.1
-> installed ppx_optcomp.v0.14.3
-> installed ppx_cold.v0.14.0
-> installed ppx_here.v0.14.0
-> installed ppx_enumerate.v0.14.0
-> installed ppx_fields_conv.v0.14.2
-> installed ppx_stable.v0.14.1
-> installed ppx_typerep_conv.v0.14.2
-> installed ppx_variants_conv.v0.14.2
-> installed ppx_let.v0.14.0
-> installed ppx_compare.v0.14.0
-> installed ppx_pipebang.v0.14.0
-> installed ppx_fixed_literal.v0.14.0
-> installed ppx_optional.v0.14.0
-> installed ppx_js_style.v0.14.1
-> installed ppx_sexp_conv.v0.14.3
-> installed ppx_hash.v0.14.0
-> installed ppx_sexp_message.v0.14.1
-> installed ppx_sexp_value.v0.14.0
-> installed ppx_assert.v0.14.0
-> installed ppx_custom_printf.v0.14.1
-> installed ppx_base.v0.14.0
-> installed jst-config.v0.14.1
-> installed bin_prot.v0.14.1
-> installed ppx_string.v0.14.1
-> installed time_now.v0.14.0
-> installed ppx_bin_prot.v0.14.0
-> installed ppx_module_timer.v0.14.0
-> installed ppx_inline_test.v0.14.1
-> installed ppx_bench.v0.14.1
-> installed ppx_expect.v0.14.2
-> installed splittable_random.v0.14.0
-> installed base_quickcheck.v0.14.1
-> installed ppx_jane.v0.14.0
-> installed base_bigstring.v0.14.0
-> installed core_kernel.v0.14.2
-> installed protocol_version_header.v0.14.0
-> installed timezone.v0.14.0
-> installed async_kernel.v0.14.0
-> installed async_rpc_kernel.v0.14.0
-> installed core.v0.14.1
-> installed textutils.v0.14.0
-> installed async_unix.v0.14.0
-> installed async.v0.14.0
-> installed mariadb.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-08 11:03.11 ---> saved as "7f03d691d11aa413fdf98713c3f9f438a27ce9c9e28f9cbbcf60a97c9d495149"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [mariadb: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mariadb" "-j" "39" "@install" "@runtest" (CWD=/home/opam/.opam/4.10/.opam-switch/build/mariadb.1.3.0)
-> compiled  mariadb.1.3.0
-> removed   mariadb.1.3.0
-> installed mariadb.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-05-08 11:03.20 ---> saved as "efd496fe08876e903dbe80963921cee8e50121fdd018035ea278737e649e72cd"
Job succeeded
2025-05-08 11:03.24: Job succeeded