(not at the head of any monitored branch or PR)
2024-11-29 16:03.15: New job: test drom_toml.0.8.0 with ocamlformat.0.27.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/26998/head (27916977327321391ddd0aadb9e4d7c2d461e743)
                              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/26998/head" && git reset --hard 27916977
git fetch origin master
git merge --no-edit 0b65c91e7650d82e2c12fe1f64a466d2c6954272
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:3d8c0b0f03f66f82249744d1031a567caf3309d9cefdda98d07610eab53bb6ef
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
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 ocamlformat.0.27.0 0.27.0
RUN opam reinstall ocamlformat.0.27.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" != 'ocamlformat.0.27.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN opam reinstall drom_toml.0.8.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" != 'drom_toml.0.8.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN (opam reinstall --with-test drom_toml.0.8.0) || true
RUN opam reinstall --with-test --verbose drom_toml.0.8.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" != 'drom_toml.0.8.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 .

2024-11-29 16:03.15: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:3d8c0b0f03f66f82249744d1031a567caf3309d9cefdda98d07610eab53bb6ef-ocamlformat.0.27.0-drom_toml.0.8.0-27916977327321391ddd0aadb9e4d7c2d461e743"
2024-11-29 16:03.15: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:3d8c0b0f03f66f82249744d1031a567caf3309d9cefdda98d07610eab53bb6ef)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 1000)
 (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 ocamlformat.0.27.0 0.27.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocamlformat.0.27.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\" != 'ocamlformat.0.27.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 (shell "opam option solver=builtin-0install"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall drom_toml.0.8.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\" != 'drom_toml.0.8.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 (shell "opam option solver=builtin-0install"))
 (run (network host)
      (shell "(opam reinstall --with-test drom_toml.0.8.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose drom_toml.0.8.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\" != 'drom_toml.0.8.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-11-29 16:03.15: Waiting for resource in pool OCluster
2024-11-29 16:08.57: Waiting for worker…
2024-11-29 16:11.44: Got resource from pool OCluster
Building on x86-bm-c14.sw.ocaml.org
All commits already cached
Updating files:  76% (25257/32804)
Updating files:  77% (25260/32804)
Updating files:  78% (25588/32804)
Updating files:  79% (25916/32804)
Updating files:  80% (26244/32804)
Updating files:  81% (26572/32804)
Updating files:  82% (26900/32804)
Updating files:  83% (27228/32804)
Updating files:  84% (27556/32804)
Updating files:  85% (27884/32804)
Updating files:  86% (28212/32804)
Updating files:  87% (28540/32804)
Updating files:  88% (28868/32804)
Updating files:  89% (29196/32804)
Updating files:  90% (29524/32804)
Updating files:  91% (29852/32804)
Updating files:  92% (30180/32804)
Updating files:  93% (30508/32804)
Updating files:  94% (30836/32804)
Updating files:  95% (31164/32804)
Updating files:  96% (31492/32804)
Updating files:  97% (31820/32804)
Updating files:  98% (32148/32804)
Updating files:  99% (32476/32804)
Updating files: 100% (32804/32804)
Updating files: 100% (32804/32804), done.
HEAD is now at 0b65c91e76 Merge pull request #26997 from hannesm/revive-rml
Updating 0b65c91e76..2791697732
Fast-forward
 .../ocamlformat-lib/ocamlformat-lib.0.27.0/opam    | 68 ++++++++++++++++++++++
 .../ocamlformat-rpc-lib.0.27.0/opam                | 49 ++++++++++++++++
 packages/ocamlformat/ocamlformat.0.27.0/opam       | 59 +++++++++++++++++++
 3 files changed, 176 insertions(+)
 create mode 100644 packages/ocamlformat-lib/ocamlformat-lib.0.27.0/opam
 create mode 100644 packages/ocamlformat-rpc-lib/ocamlformat-rpc-lib.0.27.0/opam
 create mode 100644 packages/ocamlformat/ocamlformat.0.27.0/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:3d8c0b0f03f66f82249744d1031a567caf3309d9cefdda98d07610eab53bb6ef)
2024-11-29 16:11.48 ---> using "c91705407132f13d405758e65a4dba1d21e88f189c241c012b87f03590df56b4" 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-11-29 16:11.48 ---> using "e8ab43469ca9160b574d7811e0bb71d35d15228f904a79a68f8e0873c502de51" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This 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] synchronised from file:///home/opam/opam-repository
2024-11-29 16:11.48 ---> using "42fa4de156d2cb3ca9f309fd3d14149dcb045140e64c01e19c44a0f30ddac1cf" from cache

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-126-generic
The OCaml toplevel, version 4.14.2
2.4.0~alpha1~dev
2024-11-29 16:11.48 ---> using "54b11d5032a60550baa5ccd68fc91c37ed12a11bde7d244c36dfecb303492cdf" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 1000)

/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-11-29 16:11.48 ---> using "ac80ccd3c20ba00f01af28b8c32c42d3f07754d83374843287fea51821f7d561" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-11-29 16:12.00 ---> saved as "6de7801437f449f29afc0ae68b2c0bc91b3b29766f065f82a847f9aef56f5eab"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-11-29 16:12.57 ---> saved as "e229ca5460d02023fe548098999d5c105b9627911f2daab5a5ab1bbeba1c6d47"

/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 bookworm-updates/main amd64 Packages.diff/Index [12.8 kB]
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2024-11-27-1405.46-F-2024-11-27-1405.46.pdiff [435 B]
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2024-11-27-1405.46-F-2024-11-27-1405.46.pdiff [435 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [206 kB]
- Fetched 322 kB in 0s (1103 kB/s)
- Reading package lists...
2024-11-29 16:12.58 ---> saved as "41269e6b6e7ec05a47fbdb04bafecde14fadcbc999d0ebad5bf0f1c71d4f083f"

/home/opam: (run (shell "opam pin add -k version -yn ocamlformat.0.27.0 0.27.0"))
ocamlformat is now pinned to version 0.27.0
2024-11-29 16:12.59 ---> saved as "3aefeb455277480f261852db8512e99e4e22c8b915a9c1c9f2d3f2d1e4031fd7"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocamlformat.0.27.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\" != 'ocamlformat.0.27.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocamlformat.0.27.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 31 packages
  - install astring           0.8.5           [required by ocamlformat-lib]
  - install base              v0.16.3         [required by ocamlformat-lib]
  - install base-bytes        base            [required by ocp-indent]
  - install camlp-streams     5.0.1           [required by ocamlformat-lib]
  - install cmdliner          1.3.0           [required by ocamlformat]
  - install conf-bash         1               [required by base]
  - install csexp             1.5.2           [required by ocamlformat]
  - install dune              3.17.0          [required by ocamlformat]
  - install dune-build-info   3.17.0          [required by ocamlformat-lib]
  - install dune-configurator 3.17.0          [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 menhir            20240715        [required by ocamlformat-lib]
  - install menhirCST         20240715        [required by menhir]
  - install menhirLib         20240715        [required by ocamlformat-lib]
  - install menhirSdk         20240715        [required by ocamlformat-lib]
  - install ocaml-version     3.7.1           [required by ocamlformat-lib]
  - install ocamlbuild        0.15.0          [required by fpath, astring, uuseg]
  - install ocamlfind         1.9.6           [required by ocp-indent, astring, fpath, uuseg]
  - install ocamlformat       0.27.0 (pinned)
  - install ocamlformat-lib   0.27.0          [required by ocamlformat]
  - install ocp-indent        1.8.1           [required by ocamlformat-lib]
  - install re                1.12.0          [required by ocamlformat]
  - install seq               base            [required by re]
  - install sexplib0          v0.16.0         [required by base]
  - install stdio             v0.16.0         [required by ocamlformat-lib]
  - install topkg             1.0.7           [required by fpath, astring, uuseg]
  - install uucp              16.0.0          [required by uuseg]
  - install uuseg             16.0.0          [required by ocamlformat-lib]
  - install uutf              1.0.3           [required by ocamlformat-lib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.3  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-bash.1
-> retrieved dune.3.17.0, dune-build-info.3.17.0, dune-configurator.3.17.0  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved fix.20230505  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> installed cmdliner.1.3.0
-> retrieved ocaml-version.3.7.1  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocamlformat.0.27.0, ocamlformat-lib.0.27.0  (cached)
-> retrieved ocp-indent.1.8.1  (cached)
-> retrieved re.1.12.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved uucp.16.0.0  (cached)
-> retrieved uuseg.16.0.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.17.0
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed fix.20230505
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed ocaml-version.3.7.1
-> installed sexplib0.v0.16.0
-> installed re.1.12.0
-> installed ocp-indent.1.8.1
-> installed dune-build-info.3.17.0
-> installed dune-configurator.3.17.0
-> installed base.v0.16.3
-> installed stdio.v0.16.0
-> installed menhir.20240715
-> installed uucp.16.0.0
-> installed uuseg.16.0.0
-> installed ocamlformat-lib.0.27.0
-> installed ocamlformat.0.27.0
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/4.14/share/emacs/site-lisp")
     (require 'ocp-indent)

   * for Vim, add this line to ~/.vimrc:
     set rtp^="/home/opam/.opam/4.14/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2024-11-29 16:14.31 ---> saved as "f283261801f166acdd276ca79e5cb911bb8159e0b7150b989276cc18e7c309fa"

/home/opam: (run (shell "opam option solver=builtin-0install"))
Set to 'builtin-0install' the field solver in global configuration
2024-11-29 16:14.31 ---> saved as "4b2633c70a2c1982f3c499c45423891e3338c303247aab4ee6b468d06614e94b"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved drom_toml.0.8.0  (https://github.com/ocamlpro/drom/archive/v0.8.0.tar.gz)
-> retrieved ISO8601.0.2.6  (cached)
-> installed ISO8601.0.2.6
-> installed drom_toml.0.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 16:14.45 ---> saved as "f505427a989754fa33a80adf39c5e89346db23142b588dd2164e69db49b876f9"

/home/opam: (run (shell "opam option solver=builtin-0install"))
No modification in global configuration
2024-11-29 16:14.45 ---> saved as "806fa14cff0118d7b9b1d0398e7c9035835cd7ac84c318f4b36dc0b1cda6cf1d"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test drom_toml.0.8.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile drom_toml           0.8.0
=== install 19 packages
  - install   jane-street-headers v0.16.0 [required by time_now]
  - install   jst-config          v0.16.0 [required by time_now]
  - install   ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - 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 drom_toml]
  - 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 drom_toml]
  - install   ppx_optcomp         v0.16.0 [required by time_now]
  - install   ppx_sexp_conv       v0.16.0 [required by ppx_base]
  - install   ppxlib              0.33.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]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved drom_toml.0.8.0  (https://github.com/ocamlpro/drom/archive/v0.8.0.tar.gz)
-> 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 jane-street-headers.v0.16.0
-> 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 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)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_expect.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_expect-v0.16.0.tar.gz)
-> installed ocaml-compiler-libs.v0.12.4
-> 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)
-> retrieved ppxlib.0.33.0  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.33.0/ppxlib-0.33.0.tbz)
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> removed   drom_toml.0.8.0
-> installed stdlib-shims.0.3.0
-> retrieved time_now.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/time_now-v0.16.0.tar.gz)
-> installed ppxlib.0.33.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.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 ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.0
-> installed drom_toml.0.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 16:15.50 ---> saved as "2808571a335601838de8ddaf39e95f2a83103f5bfba0802f5dd6895b503967b9"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [drom_toml.0.8.0: extract]
-> retrieved drom_toml.0.8.0  (cached)
Processing  2/4: [drom_toml: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "./scripts/before.sh build 'drom_toml'" (CWD=/home/opam/.opam/4.14/.opam-switch/build/drom_toml.0.8.0)
Processing  2/4: [drom_toml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "drom_toml" "-j" "39" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/drom_toml.0.8.0)
- (cd _build/default/src/toml.7.1.0 && /home/opam/.opam/4.14/bin/ocaml unix.cma version.mlt) > _build/default/src/toml.7.1.0/version.ml
- 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).
Processing  2/4: [drom_toml: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "-c" "./scripts/after.sh build 'drom_toml'" (CWD=/home/opam/.opam/4.14/.opam-switch/build/drom_toml.0.8.0)
-> compiled  drom_toml.0.8.0
-> removed   drom_toml.0.8.0
Processing  4/4: [drom_toml: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "sh" "-c" "./scripts/before.sh install 'drom_toml'" (CWD=/home/opam/.opam/4.14/.opam-switch/build/drom_toml.0.8.0)
-> installed drom_toml.0.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-29 16:16.10 ---> saved as "d212480557df82499107659cf1bb7971186615ca84a25b3fcd6f9defd37b3bd5"
Job succeeded
2024-11-29 16:16.22: Job succeeded