(not at the head of any monitored branch or PR)
2025-06-10 01:24.12: New job: test sail_latex_backend.0.19.1, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28004/head (3844593231c3fdb39e72e63dcee4e6ebfcd3ab58)
                              on debian-12-ocaml-5.3/s390x

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28004/head" && git reset --hard 38445932
git fetch origin master
git merge --no-edit 6db96b377f993aa0c7ffb5c06737929e583f3305
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:57b3ccd4f3c5ab70eb058c37057a5ecb714379d546c2dc97122390f4c106fe9b
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 sail_latex_backend.0.19.1 0.19.1
RUN opam reinstall sail_latex_backend.0.19.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" != 'sail_latex_backend.0.19.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 sail_latex_backend.0.19.1) || true
RUN opam reinstall --with-test --verbose sail_latex_backend.0.19.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" != 'sail_latex_backend.0.19.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-06-10 01:24.12: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:57b3ccd4f3c5ab70eb058c37057a5ecb714379d546c2dc97122390f4c106fe9b-sail_latex_backend.0.19.1-3844593231c3fdb39e72e63dcee4e6ebfcd3ab58"
2025-06-10 01:24.12: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:57b3ccd4f3c5ab70eb058c37057a5ecb714379d546c2dc97122390f4c106fe9b)
 (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 sail_latex_backend.0.19.1 0.19.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall sail_latex_backend.0.19.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\" != 'sail_latex_backend.0.19.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 sail_latex_backend.0.19.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose sail_latex_backend.0.19.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\" != 'sail_latex_backend.0.19.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-06-10 01:24.12: Waiting for resource in pool OCluster
2025-06-10 01:24.13: Waiting for worker…
2025-06-10 03:25.10: Got resource from pool OCluster
Building on s390x-worker-01.marist.ci.dev
All commits already cached
HEAD is now at 6db96b377f Merge pull request #28003 from punchagan/opam-publish-opam-ci-check-lint.0.1
Merge made by the 'ort' strategy.
 packages/libsail/libsail.0.19.1/opam               | 68 ++++++++++++++++++++
 packages/sail/sail.0.19.1/opam                     | 73 ++++++++++++++++++++++
 packages/sail_c_backend/sail_c_backend.0.19.1/opam | 49 +++++++++++++++
 .../sail_coq_backend/sail_coq_backend.0.19.1/opam  | 49 +++++++++++++++
 .../sail_doc_backend/sail_doc_backend.0.19.1/opam  | 51 +++++++++++++++
 .../sail_latex_backend.0.19.1/opam                 | 50 +++++++++++++++
 .../sail_lean_backend.0.19.1/opam                  | 49 +++++++++++++++
 .../sail_lem_backend/sail_lem_backend.0.19.1/opam  | 49 +++++++++++++++
 packages/sail_manifest/sail_manifest.0.19.1/opam   | 49 +++++++++++++++
 .../sail_ocaml_backend.0.19.1/opam                 | 50 +++++++++++++++
 packages/sail_output/sail_output.0.19.1/opam       | 49 +++++++++++++++
 .../sail_smt_backend/sail_smt_backend.0.19.1/opam  | 49 +++++++++++++++
 .../sail_sv_backend/sail_sv_backend.0.19.1/opam    | 49 +++++++++++++++
 13 files changed, 684 insertions(+)
 create mode 100644 packages/libsail/libsail.0.19.1/opam
 create mode 100644 packages/sail/sail.0.19.1/opam
 create mode 100644 packages/sail_c_backend/sail_c_backend.0.19.1/opam
 create mode 100644 packages/sail_coq_backend/sail_coq_backend.0.19.1/opam
 create mode 100644 packages/sail_doc_backend/sail_doc_backend.0.19.1/opam
 create mode 100644 packages/sail_latex_backend/sail_latex_backend.0.19.1/opam
 create mode 100644 packages/sail_lean_backend/sail_lean_backend.0.19.1/opam
 create mode 100644 packages/sail_lem_backend/sail_lem_backend.0.19.1/opam
 create mode 100644 packages/sail_manifest/sail_manifest.0.19.1/opam
 create mode 100644 packages/sail_ocaml_backend/sail_ocaml_backend.0.19.1/opam
 create mode 100644 packages/sail_output/sail_output.0.19.1/opam
 create mode 100644 packages/sail_smt_backend/sail_smt_backend.0.19.1/opam
 create mode 100644 packages/sail_sv_backend/sail_sv_backend.0.19.1/opam

(from ocaml/opam:debian-12-ocaml-5.3@sha256:57b3ccd4f3c5ab70eb058c37057a5ecb714379d546c2dc97122390f4c106fe9b)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:57b3ccd4f3c5ab70eb058c37057a5ecb714379d546c2dc97122390f4c106fe9b' locally
docker.io/ocaml/opam@sha256:57b3ccd4f3c5ab70eb058c37057a5ecb714379d546c2dc97122390f4c106fe9b: Pulling from ocaml/opam
Digest: sha256:57b3ccd4f3c5ab70eb058c37057a5ecb714379d546c2dc97122390f4c106fe9b
Status: Downloaded newer image for ocaml/opam@sha256:57b3ccd4f3c5ab70eb058c37057a5ecb714379d546c2dc97122390f4c106fe9b
2025-06-10 03:25.13 ---> using "c8efa8cd59f0589aff9f8314e4394806ebd9a0f87e46a9f8e769b27fcaf0437d" 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-06-10 03:25.13 ---> using "13fde54d9e00eab83b6ee82927863421ae510dba555115259c381bfc59502d9e" 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-06-10 03:25.13 ---> using "2a60c130ce09ad790f59d3ac8abc7226a968b2ce788641caf6699e4acf4b1d80" 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=s390x 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                 3
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.3
# invariant            ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-06-10 03:25.13 ---> using "640e787ace0e45eb6e57de09e7fbb4492f9cdfc946391c1cbe206906b092f60c" 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-06-10 03:25.13 ---> using "6983ea6dfd8476c8c24ce4cac3d09e7fb17aa140a883e8077cfc2c9a19d4c095" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-06-10 03:25.14 ---> using "bda2ebae05060034e71d013f85f99b3024cca09e2878827451dc2e8b2b95e328" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-06-10 03:25.14 ---> using "66b142990ddbbdf1b47b09835e6640384729e1293e43c512e78f514b3c3516a6" 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 s390x Packages [233 kB]
- Fetched 337 kB in 1s (504 kB/s)
- Reading package lists...
- 
2025-06-10 03:25.14 ---> using "98f5088c0409943f4625ff42ec16afd59c49c3db6d58ea2ed99b1c9163d3f086" from cache

/home/opam: (run (shell "opam pin add -k version -yn sail_latex_backend.0.19.1 0.19.1"))
sail_latex_backend is now pinned to version 0.19.1
2025-06-10 03:25.35 ---> saved as "efce8c99f2e78eb8a52ed9fa4d8a54924ad01acbfac430a53b9c669068188c34"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall sail_latex_backend.0.19.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\" != 'sail_latex_backend.0.19.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
sail_latex_backend.0.19.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 29 packages
  - install base-bytes         base            [required by omd]
  - install conf-findutils     1               [required by lem]
  - install conf-gmp           5               [required by libsail]
  - install conf-pkg-config    4               [required by zarith]
  - install csexp              1.5.2           [required by dune-private-libs]
  - install dune               3.19.0          [required by sail_latex_backend]
  - install dune-private-libs  3.19.0          [required by dune-site]
  - install dune-site          3.19.0          [required by libsail]
  - install dyn                3.19.0          [required by dune-private-libs]
  - install lem                2025-03-13      [required by libsail]
  - install libsail            0.19.1          [required by sail_latex_backend]
  - install linksem            0.8             [required by libsail]
  - install menhir             20240715        [required by libsail]
  - install menhirCST          20240715        [required by menhir]
  - install menhirLib          20240715        [required by menhir]
  - install menhirSdk          20240715        [required by menhir]
  - install num                1.5-1           [required by lem]
  - install ocamlbuild         0.16.1          [required by lem, linksem]
  - install ocamlfind          1.9.8           [required by ott, lem, linksem, base-bytes]
  - install ocamlgraph         2.2.0           [required by ott]
  - install omd                1.3.2           [required by sail_latex_backend]
  - install ordering           3.19.0          [required by dyn, stdune]
  - install ott                0.34            [required by libsail]
  - install pp                 2.0.0           [required by dune-private-libs]
  - install pprint             20230830        [required by libsail]
  - install sail_latex_backend 0.19.1 (pinned)
  - install stdune             3.19.0          [required by dune-private-libs]
  - install yojson             3.0.0           [required by libsail]
  - install zarith             1.14            [required by lem]

The following system packages will first need to be installed:
    libgmp-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" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl:s390x.
- (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 ... 18549 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_s390x.deb ...
- Unpacking libgmpxx4ldbl:s390x (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:s390x.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_s390x.deb ...
- Unpacking libgmp-dev:s390x (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:s390x.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_s390x.deb ...
- Unpacking libpkgconf3:s390x (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_s390x.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:s390x.
- Preparing to unpack .../4-pkgconf_1.8.1-1_s390x.deb ...
- Unpacking pkgconf:s390x (1.8.1-1) ...
- Selecting previously unselected package pkg-config:s390x.
- Preparing to unpack .../5-pkg-config_1.8.1-1_s390x.deb ...
- Unpacking pkg-config:s390x (1.8.1-1) ...
- Setting up libpkgconf3:s390x (1.8.1-1) ...
- Setting up libgmpxx4ldbl:s390x (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:s390x (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:s390x (1.8.1-1) ...
- Setting up pkg-config:s390x (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-findutils.1
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved dune.3.19.0, dune-private-libs.3.19.0, dune-site.3.19.0, dyn.3.19.0, ordering.3.19.0, stdune.3.19.0  (cached)
-> retrieved lem.2025-03-13  (cached)
-> retrieved libsail.0.19.1, sail_latex_backend.0.19.1  (cached)
-> retrieved linksem.0.8  (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved num.1.5-1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved omd.1.3.2  (cached)
-> retrieved ott.0.34  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved pprint.20230830  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed num.1.5-1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed dune.3.19.0
-> installed csexp.1.5.2
-> installed menhirCST.20240715
-> installed menhirLib.20240715
-> installed menhirSdk.20240715
-> installed omd.1.3.2
-> installed ocamlgraph.2.2.0
-> installed ordering.3.19.0
-> installed ott.0.34
-> installed pp.2.0.0
-> installed pprint.20230830
-> installed dyn.3.19.0
-> installed yojson.3.0.0
-> installed menhir.20240715
-> installed stdune.3.19.0
-> installed lem.2025-03-13
-> installed dune-private-libs.3.19.0
-> installed dune-site.3.19.0
-> installed linksem.0.8
-> installed libsail.0.19.1
-> installed sail_latex_backend.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 03:29.09 ---> saved as "fd974db925cf50def20df1beb3107f67ed0e87bc5995f328610bfdc7d5da14eb"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   sail_latex_backend.0.19.1
-> installed sail_latex_backend.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 03:29.24 ---> saved as "03fc8d8d768b3d37fd5a59139c64b1a0b92daffc32f3aa8dd610029899a30150"

/home/opam: (run (shell  "opam reinstall --with-test --verbose sail_latex_backend.0.19.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\" != 'sail_latex_backend.0.19.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 sail_latex_backend 0.19.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [sail_latex_backend: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sail_latex_backend" "-j" "3" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/sail_latex_backend.0.19.1)
Processing  2/4: [sail_latex_backend: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "sail_latex_backend" "--create-install-files" "sail_latex_backend" (CWD=/home/opam/.opam/5.3/.opam-switch/build/sail_latex_backend.0.19.1)
-> compiled  sail_latex_backend.0.19.1
-> removed   sail_latex_backend.0.19.1
-> installed sail_latex_backend.0.19.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-06-10 03:29.50 ---> saved as "0e252133006defd9de1788a2431741e1c4c48a0eb69468315bf33e069dd04257"
Job succeeded
2025-06-10 03:29.57: Job succeeded