Build:
  1. 0
2026-02-06 03:07.51: New job: test dkml-package-console.0.5.1 with jingoo.1.5.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29343/head (6b793e0b9824eaa7e2f1a54a8687db36918b16e4)
                              on debian-13-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/29343/head" && git reset --hard 6b793e0b
git fetch origin master
git merge --no-edit 7001851a2a5db92a14c19195733bc3c2d657929c
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /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 jingoo.1.5.2 1.5.2
RUN opam reinstall jingoo.1.5.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'jingoo.1.5.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall dkml-package-console.0.5.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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dkml-package-console.0.5.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 dkml-package-console.0.5.1) || true
RUN opam reinstall --with-test --verbose dkml-package-console.0.5.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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dkml-package-console.0.5.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 .

2026-02-06 03:07.51: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7-jingoo.1.5.2-dkml-package-console.0.5.1-6b793e0b9824eaa7e2f1a54a8687db36918b16e4"
2026-02-06 03:07.51: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7)
 (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 "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 jingoo.1.5.2 1.5.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall jingoo.1.5.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'jingoo.1.5.2' && 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 dkml-package-console.0.5.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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dkml-package-console.0.5.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 dkml-package-console.0.5.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose dkml-package-console.0.5.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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dkml-package-console.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-06 03:07.51: Waiting for resource in pool OCluster
2026-02-06 03:07.51: Waiting for worker…
2026-02-06 03:07.52: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 7001851a2a Merge pull request #29331 from fpottier/opam-publish-menhir.20260203
Updating 7001851a2a..6b793e0b98
Fast-forward
 packages/jingoo/jingoo.1.5.2/opam | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 packages/jingoo/jingoo.1.5.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7' locally
docker.io/ocaml/opam@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7: Pulling from ocaml/opam
2ca1bfae7ba8: Already exists
e4d8ee4b2a38: Already exists
1d3116276f8e: Already exists
75b74a4d1ac0: Already exists
b6ccadbb02b4: Already exists
8cbf8e460264: Already exists
3315611f76bf: Already exists
504308973b3d: Already exists
d88808e698ae: Already exists
64194555da04: Already exists
bcae218e4dec: Already exists
0678004b187f: Already exists
608c27b1299a: Already exists
2d112e543012: Already exists
7515eb74eee1: Already exists
c57ccaf32dad: Already exists
1ad18dadc94d: Already exists
e597bdf2ce86: Already exists
895287036913: Already exists
669157da4bb1: Already exists
05dacbfea855: Already exists
c07f56eefed9: Already exists
4f4fb700ef54: Already exists
8d67afca45c4: Already exists
eaf56bb8bbcb: Already exists
3eb319385d03: Already exists
7e47d6bb7bc1: Already exists
dc066cdb4877: Already exists
3bd4cfbaf252: Already exists
e1cd4fc2a870: Already exists
c620a639b37a: Already exists
2765b1030b2e: Already exists
4e076d3d484c: Already exists
8fe2e737bcaf: Already exists
29a5f2a84735: Already exists
829846ac5653: Already exists
6cf201ca8833: Already exists
7f975caeb23f: Already exists
de5cd6b102fb: Already exists
8ce740230729: Already exists
29df89ae24a1: Already exists
cd1a29bde858: Pulling fs layer
50df3536b5d6: Pulling fs layer
dba635352ec5: Pulling fs layer
df590c87b573: Pulling fs layer
df590c87b573: Waiting
50df3536b5d6: Verifying Checksum
50df3536b5d6: Download complete
dba635352ec5: Download complete
df590c87b573: Verifying Checksum
df590c87b573: Download complete
cd1a29bde858: Verifying Checksum
cd1a29bde858: Download complete
cd1a29bde858: Pull complete
50df3536b5d6: Pull complete
dba635352ec5: Pull complete
df590c87b573: Pull complete
Digest: sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
Status: Downloaded newer image for ocaml/opam@sha256:bc8e76b9a7af94f8c361f21b8e82ca88bcbca99c677c23853e4b0f8643d218d7
2026-02-06 03:08.39 ---> saved as "6a529338653936dd261dd42dcc0e2d18c1a03440bc5c8aa2a17bafbdf6595264"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-06 03:08.39 ---> saved as "a8c9e5db701a2843d9e0fdf5928fcfbc8cab25ba63f7ef4876c3ba9cbe2e1c00"

/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 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
2026-02-06 03:09.00 ---> saved as "5c373a63e5ac1e69774cf481a742f8a69ebe54e8a43166cf6ffcd33bf32d373d"

/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.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# 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
2026-02-06 03:09.01 ---> saved as "402b9d00e6f7a5da0e60648ac930485174b6a1e2d66ab81967b14702119c5f4d"

/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/"))
2026-02-06 03:09.10 ---> saved as "41261ca47d1b1073701808a26cea2999906bae061c95bbddc88d4dc05a86491b"

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-06 03:09.22 ---> saved as "a237871c303b10451dc20ba86b1137fe2739358b02d8c6a57891c64655c06373"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-06 03:09.38 ---> saved as "da843d49c84570d8975a25187ef513a208d94e3ac62ff457f9c60f7871be117c"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [100 kB]
- Fetched 191 kB in 0s (2037 kB/s)
- Reading package lists...
2026-02-06 03:09.39 ---> saved as "9124ac493226e2f30151064167a58ea77764fa5f89d7ee828dc85b86eedf0673"

/home/opam: (run (shell "opam pin add -k version -yn jingoo.1.5.2 1.5.2"))
jingoo is now pinned to version 1.5.2
2026-02-06 03:09.39 ---> saved as "57cb0e85fd1ee198e814aa18745ad6e02057d23d79935c4b180c2f77a213f515"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall jingoo.1.5.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'jingoo.1.5.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
jingoo.1.5.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 20 packages
  - install cppo                1.8.0          [required by ppx_deriving]
  - install dune                3.21.0         [required by jingoo]
  - install jingoo              1.5.2 (pinned)
  - install menhir              20260203       [required by jingoo]
  - install menhirCST           20260203       [required by menhir]
  - install menhirGLR           20260203       [required by menhir]
  - install menhirLib           20260203       [required by menhir]
  - install menhirSdk           20260203       [required by menhir]
  - install ocaml-compiler-libs v0.12.4        [required by ppxlib]
  - install ocamlbuild          0.16.1         [required by uucp, uutf]
  - install ocamlfind           1.9.8          [required by uucp, ppx_deriving, uutf]
  - install ppx_derivers        1.2.1          [required by ppx_deriving]
  - install ppx_deriving        6.1.1          [required by jingoo]
  - install ppxlib              0.37.0         [required by ppx_deriving]
  - install re                  1.14.0         [required by jingoo]
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install stdlib-shims        0.3.0          [required by ppxlib]
  - install topkg               1.1.1          [required by uucp, uutf]
  - install uucp                17.0.0         [required by jingoo]
  - install uutf                1.0.4          [required by jingoo]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved dune.3.21.0  (cached)
-> retrieved jingoo.1.5.2  (cached)
-> retrieved menhir.20260203, menhirCST.20260203, menhirGLR.20260203, menhirLib.20260203, menhirSdk.20260203  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uucp.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed dune.3.21.0
-> installed menhirCST.20260203
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed menhirLib.20260203
-> installed menhirGLR.20260203
-> installed menhirSdk.20260203
-> installed sexplib0.v0.17.0
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed re.1.14.0
-> installed menhir.20260203
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed uucp.17.0.0
-> installed jingoo.1.5.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-06 03:10.32 ---> saved as "74b287cb7912b2412951dc4abe5b58104d262baff626d1d61e6697aac06c8cfd"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dkml-package-console.0.5.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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dkml-package-console.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dkml-package-console.0.5.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== downgrade 3 packages
  - downgrade ppx_deriving              6.1.1 to 6.0.3     [required by diskuvbox]
  - downgrade ppxlib                    0.37.0 to 0.35.0   [required by ppx_expect]
  - downgrade sexplib0                  v0.17.0 to v0.16.0 [required by base]
=== recompile 3 packages
  - recompile jingoo                    1.5.2 (pinned)     [uses uucp, uutf]
  - recompile uucp                      17.0.0             [uses cmdliner]
  - recompile uutf                      1.0.4              [uses cmdliner]
=== install 35 packages
  - install   astring                   0.8.5              [required by dkml-install-runner]
  - install   base                      v0.16.4            [required by ppx_expect]
  - install   bos                       0.2.1              [required by diskuvbox, dkml-install-runner]
  - install   cmdliner                  1.3.0              [required by diskuvbox, crunch, dkml-install-runner]
  - install   crunch                    4.0.0              [required by dkml-package-console]
  - install   csexp                     1.5.2              [required by dune-configurator]
  - install   diskuvbox                 0.2.0              [required by dkml-package-console]
  - install   dkml-component-xx-console 0.1.1              [required by dkml-package-console]
  - install   dkml-install              0.5.1              [required by dkml-package-console]
  - install   dkml-install-runner       0.5.1              [required by dkml-package-console]
  - install   dkml-package-console      0.5.1
  - install   dune-configurator         3.21.0             [required by base]
  - install   fmt                       0.11.0             [required by diskuvbox, dkml-install-runner]
  - install   fpath                     0.7.3              [required by bos]
  - install   jane-street-headers       v0.16.0            [required by time_now]
  - install   jst-config                v0.16.0            [required by time_now]
  - install   logs                      0.10.0             [required by diskuvbox, dkml-install-runner]
  - 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_enumerate             v0.16.0            [required by ppx_base]
  - install   ppx_expect                v0.16.2            [required by dkml-install-runner]
  - 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 ppx_expect]
  - install   ppx_optcomp               v0.16.0            [required by time_now]
  - install   ppx_sexp_conv             v0.16.0            [required by ppx_base]
  - install   ptime                     1.2.0              [required by crunch]
  - install   result                    1.5                [required by diskuvbox]
  - install   rresult                   0.7.0              [required by bos]
  - install   stdio                     v0.16.0            [required by ppx_expect]
  - install   time_now                  v0.16.0            [required by ppx_inline_test]
  - install   tsort                     2.2.0              [required by dkml-install]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved crunch.4.0.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved diskuvbox.0.2.0  (cached)
-> retrieved dkml-component-xx-console.0.1.1  (cached)
-> retrieved dkml-install.0.5.1, dkml-install-runner.0.5.1, dkml-package-console.0.5.1  (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.21.0  (cached)
-> installed astring.0.8.5
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved jane-street-headers.v0.16.0  (cached)
-> retrieved jst-config.v0.16.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved ppx_assert.v0.16.0  (cached)
-> retrieved ppx_base.v0.16.0  (cached)
-> retrieved ppx_cold.v0.16.0  (cached)
-> retrieved ppx_compare.v0.16.0  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> retrieved ppx_expect.v0.16.2  (cached)
-> installed cmdliner.1.3.0
-> installed jane-street-headers.v0.16.0
-> retrieved ppx_globalize.v0.16.0  (cached)
-> retrieved ppx_hash.v0.16.0  (cached)
-> retrieved ppx_here.v0.16.0  (cached)
-> retrieved ppx_inline_test.v0.16.1  (cached)
-> retrieved ppx_optcomp.v0.16.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved time_now.v0.16.0  (cached)
-> retrieved tsort.2.2.0  (cached)
-> installed result.1.5
-> retrieved uucp.17.0.0  (cached)
-> installed fpath.0.7.3
-> installed tsort.2.2.0
-> retrieved uutf.1.0.4  (cached)
-> installed rresult.0.7.0
-> removed   jingoo.1.5.2
-> removed   ppx_deriving.6.1.1
-> removed   ppxlib.0.37.0
-> removed   sexplib0.v0.17.0
-> removed   uucp.17.0.0
-> removed   uutf.1.0.4
-> installed sexplib0.v0.16.0
-> installed fmt.0.11.0
-> installed dune-configurator.3.21.0
-> installed ptime.1.2.0
-> installed uutf.1.0.4
-> installed crunch.4.0.0
-> installed logs.0.10.0
-> installed bos.0.2.1
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.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_deriving.6.0.3
-> installed ppx_sexp_conv.v0.16.0
-> installed dkml-install.0.5.1
-> installed dkml-component-xx-console.0.1.1
-> installed diskuvbox.0.2.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 uucp.17.0.0
-> installed ppx_expect.v0.16.2
-> installed dkml-install-runner.0.5.1
-> installed jingoo.1.5.2
-> installed dkml-package-console.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-06 03:11.33 ---> saved as "7dd75d8373a14cf86f5bc63f842dfc6b5e47519ee60de2eb249763c2d48e8f0a"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dkml-package-console.0.5.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dkml-package-console 0.5.1
=== install 2 packages
  - install   alcotest             1.9.1 [required by dkml-package-console]
  - install   ocaml-syntax-shims   1.0.0 [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved dkml-package-console.0.5.1  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> removed   dkml-package-console.0.5.1
-> installed ocaml-syntax-shims.1.0.0
-> installed alcotest.1.9.1
-> installed dkml-package-console.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-06 03:11.41 ---> saved as "f38c5040b5c3850ba0affbc92a4a3144e42a6f9c38053c59c9503aad266da6dc"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dkml-package-console.0.5.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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dkml-package-console.0.5.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 dkml-package-console 0.5.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dkml-package-console.0.5.1: extract]
-> retrieved dkml-package-console.0.5.1  (cached)
Processing  2/4: [dkml-package-console: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dkml-package-console" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-package-console.0.5.1)
- (cd _build/default/package/console/create && /home/opam/.opam/4.14/bin/ocaml-crunch -m plain -o manifests.ml assets/manifests)
- Generating manifests.ml
- Skipping generation of .mli
- (cd _build/default/package/console/create && /home/opam/.opam/4.14/bin/ocaml-crunch -m plain -o shell_scripts.ml assets/scripts)
- Generating shell_scripts.ml
- Skipping generation of .mli
- (cd _build/default/package/console/create && /home/opam/.opam/4.14/bin/diskuvbox copy-file-into assets/lzma2107/bin/7zr.exe assets/lzma2107/bin/7zSD.sfx assets/lzma2107/bin/7zS2con.sfx assets-to-crunch -vv)
- diskuvbox: [DEBUG] [copy_file] Created directory assets-to-crunch/
- (cd _build/default/package/console/create && /usr/bin/env OCAMLRUNPARAM=b ocaml-crunch -m plain -o seven_z.ml assets-to-crunch)
- Generating seven_z.ml
- Skipping generation of .mli
- (cd _build/default/installer/ml-generator/tests && ./test_template.exe)
- Testing `ml_of_installer_generator_lib'.
- This run has ID `ARROXDOK'.
- 
-   [OK]          templatized_content          0   'register ()' template repla...
-   [OK]          templatized_content          1   'target_abi' template replac...
-   [OK]          templatized_content          2   'target_abi' template with n...
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/dkml-package-console.0.5.1/_build/default/installer/ml-generator/tests/_build/_tests/ml_of_installer_generator_lib'.
- Test Successful in 0.001s. 3 tests run.
Processing  2/4: [dkml-package-console: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "dkml-package-console" "--create-install-files" "dkml-package-console" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-package-console.0.5.1)
-> compiled  dkml-package-console.0.5.1
-> removed   dkml-package-console.0.5.1
-> installed dkml-package-console.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-06 03:11.47 ---> saved as "af84fb058c02a2221b3dde0ffe8fe8892f8a27076c09ed432333d301620d3130"
Job succeeded
2026-02-06 03:11.51: Job succeeded