(not at the head of any monitored branch or PR)
2026-04-15 21:21.10: New job: test ochre-cli.1.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29700/head (92e909f657262642472253e8e4d15ffb656911dc)
                              on centos-10-ocaml-5.4/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/29700/head" && git reset --hard 92e909f6
git fetch origin master
git merge --no-edit 03f730c40b2cb0938d16003681b8d34abcd54c56
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-10-ocaml-5.4@sha256:a2580500ee766821cd30336a91a5f05f7c0f211fc1acaf8ac3b04364832c299e
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 ochre-cli.1.0.0 1.0.0
RUN opam reinstall ochre-cli.1.0.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 "\"centos-10\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ochre-cli.1.0.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 ochre-cli.1.0.0) || true
RUN opam reinstall --with-test --verbose ochre-cli.1.0.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 "\"centos-10\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ochre-cli.1.0.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 .

2026-04-15 21:21.10: Using cache hint "ocaml/opam:centos-10-ocaml-5.4@sha256:a2580500ee766821cd30336a91a5f05f7c0f211fc1acaf8ac3b04364832c299e-ochre-cli.1.0.0-92e909f657262642472253e8e4d15ffb656911dc"
2026-04-15 21:21.10: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-5.4@sha256:a2580500ee766821cd30336a91a5f05f7c0f211fc1acaf8ac3b04364832c299e)
 (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 ochre-cli.1.0.0 1.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ochre-cli.1.0.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 \"\\\"centos-10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ochre-cli.1.0.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 ochre-cli.1.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ochre-cli.1.0.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 \"\\\"centos-10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ochre-cli.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-15 21:21.10: Waiting for resource in pool OCluster
2026-04-15 21:21.10: Waiting for worker…
2026-04-15 21:21.10: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
HEAD is now at 7faf26029e [new release] qcow (4 packages) (0.14.0)
HEAD is now at 03f730c40b Merge pull request #29717 from davesnx/release-tm-grammars-2.0.0
Merge made by the 'ort' strategy.
 packages/ochre-cli/ochre-cli.1.0.0/opam | 44 +++++++++++++++++++++++++++
 packages/ochre/ochre.1.0.0/opam         | 54 +++++++++++++++++++++++++++++++++
 2 files changed, 98 insertions(+)
 create mode 100644 packages/ochre-cli/ochre-cli.1.0.0/opam
 create mode 100644 packages/ochre/ochre.1.0.0/opam

(from ocaml/opam:centos-10-ocaml-5.4@sha256:a2580500ee766821cd30336a91a5f05f7c0f211fc1acaf8ac3b04364832c299e)
Unable to find image 'ocaml/opam:centos-10-ocaml-5.4@sha256:a2580500ee766821cd30336a91a5f05f7c0f211fc1acaf8ac3b04364832c299e' locally
docker.io/ocaml/opam@sha256:a2580500ee766821cd30336a91a5f05f7c0f211fc1acaf8ac3b04364832c299e: Pulling from ocaml/opam
aef15d4d73a1: Already exists
27801a1db7d0: Already exists
b66471860286: Already exists
d8010d2d96d5: Already exists
14214e66b38b: Already exists
a4afc96691eb: Already exists
a58c703b4446: Already exists
cd3a9b114259: Already exists
46dc89bf0923: Already exists
b3dc3fb85bbe: Already exists
9569582b9724: Already exists
0aeb358641b8: Already exists
08f6caea89cb: Already exists
f27df998017a: Already exists
5245d0a2e3ce: Already exists
82b55478527f: Already exists
0a798c5e0d59: Already exists
9ab6d71bff0f: Already exists
9ab6d71bff0f: Already exists
05d3629060ba: Already exists
91f7a8177ef5: Already exists
1ce67a691da6: Already exists
db59cd96e659: Already exists
4f4fb700ef54: Already exists
81714da6ebc4: Already exists
79d6b5638410: Already exists
a37edf6a8f2f: Already exists
c633c7061411: Already exists
ce54a70142df: Already exists
203324149e31: Already exists
315afdbf6ed4: Already exists
ed7b3f7976bf: Already exists
af9f8b33f8bd: Already exists
8a4c423b4965: Already exists
99b29765a622: Already exists
8925d29a04f2: Already exists
4f6491496ad4: Already exists
67b8c4d772b7: Already exists
e53dd9b7aa3d: Already exists
3ecaf3eba8d6: Already exists
11714ee5ebf6: Already exists
bfed856da021: Already exists
e63356b01bed: Pulling fs layer
d32c0d911969: Pulling fs layer
bd207e12aee3: Pulling fs layer
70ae228f11d8: Pulling fs layer
013f84cb53ae: Pulling fs layer
70ae228f11d8: Waiting
013f84cb53ae: Waiting
bd207e12aee3: Download complete
70ae228f11d8: Download complete
e63356b01bed: Verifying Checksum
e63356b01bed: Download complete
013f84cb53ae: Verifying Checksum
013f84cb53ae: Download complete
e63356b01bed: Pull complete
d32c0d911969: Verifying Checksum
d32c0d911969: Download complete
d32c0d911969: Pull complete
bd207e12aee3: Pull complete
70ae228f11d8: Pull complete
013f84cb53ae: Pull complete
Digest: sha256:a2580500ee766821cd30336a91a5f05f7c0f211fc1acaf8ac3b04364832c299e
Status: Downloaded newer image for ocaml/opam@sha256:a2580500ee766821cd30336a91a5f05f7c0f211fc1acaf8ac3b04364832c299e
2026-04-15 21:21.17 ---> using "22027dcd0658ddb5dff1c688576a334411870707db6b1459f99fa215562707f5" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-15 21:21.17 ---> using "30ba890fd0338acd8923434dd27c4669e178ea1f52fc78381c2318384dea8ef0" 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 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-04-15 21:21.17 ---> using "739128cf89cd6f248ed786492f65c0275fef5317c8b02923910c8c0d8f7044f1" 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.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=centos os-version=10
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-15 21:21.17 ---> using "7ac6d84f2491415c19f3a98d58d259608a9d924debca4ba302a1640e0e816712" 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/"))
2026-04-15 21:21.17 ---> using "fff2675f1831d3fd88a20d09b71f10131cb1b1cb01a22c2f634a682fc0319f30" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-15 21:21.30 ---> saved as "b877572f998ef8abf02294ce159fe450c52c74cb25f5a5c0b761a9b042a5f5ea"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-15 21:21.48 ---> saved as "75e3cd9a02a363c358b3f137819cd9563cbcc1a3b6e016801e151fbc8c457b92"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS                        46 kB/s |  15 kB     00:00    
- CentOS Stream 10 - BaseOS                       7.8 MB/s | 6.9 MB     00:00    
- CentOS Stream 10 - AppStream                    125 kB/s |  15 kB     00:00    
- CentOS Stream 10 - AppStream                    4.0 MB/s | 3.6 MB     00:00    
- CentOS Stream 10 - CRB                          105 kB/s |  15 kB     00:00    
- CentOS Stream 10 - CRB                          1.2 MB/s | 834 kB     00:00    
- CentOS Stream 10 - Extras packages              128 kB/s |  17 kB     00:00    
- Metadata cache created.
2026-04-15 21:21.54 ---> saved as "903644408dbf25ff868d85523059cf67e31ebb840570b5e1316498edce88d0b0"

/home/opam: (run (shell "opam pin add -k version -yn ochre-cli.1.0.0 1.0.0"))
ochre-cli is now pinned to version 1.0.0
2026-04-15 21:21.54 ---> saved as "dc8eaf8a60f591eb035a363f516a55cbc6517d756a51b88531fad2620aee7c45"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ochre-cli.1.0.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 \"\\\"centos-10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ochre-cli.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ochre-cli.1.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 28 packages
  - install base64              3.5.2          [required by plist-xml]
  - install cmdliner            2.1.0          [required by ochre-cli]
  - install conf-oniguruma      1              [required by ochre]
  - install conf-pkg-config     4              [required by conf-oniguruma]
  - install csexp               1.5.2          [required by dune-configurator]
  - install dune                3.22.2         [required by ochre-cli]
  - install dune-configurator   3.22.2         [required by ochre]
  - install ISO8601             0.2.6          [required by plist-xml]
  - install melange-json-native 2.0.0          [required by ochre]
  - install menhir              20260209       [required by plist-xml]
  - install menhirCST           20260209       [required by menhir]
  - install menhirGLR           20260209       [required by menhir]
  - install menhirLib           20260209       [required by menhir]
  - install menhirSdk           20260209       [required by menhir]
  - install ocaml-compiler-libs v0.17.0        [required by ppxlib]
  - install ocamlbuild          0.16.1         [required by xmlm]
  - install ocamlfind           1.9.8          [required by xmlm]
  - install ochre               1.0.0          [required by ochre-cli]
  - install ochre-cli           1.0.0 (pinned)
  - install plist-xml           0.5.1          [required by ochre]
  - install ppx_derivers        1.2.1          [required by ppxlib]
  - install ppxlib              0.38.0         [required by melange-json-native]
  - install sexplib0            v0.17.0        [required by ppxlib]
  - install stdlib-shims        0.3.0          [required by ppxlib]
  - install tm-grammars         2.0.0          [required by ochre-cli]
  - install topkg               1.1.1          [required by xmlm]
  - install xmlm                1.4.0          [required by plist-xml]
  - install yojson              3.0.0          [required by ochre]

The following system packages will first need to be installed:
    oniguruma-devel

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
  2. Display the recommended yum 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 "yum" "install" "-y" "oniguruma-devel"
- Last metadata expiration check: 0:00:04 ago on Wed Apr 15 21:21:53 2026.
- Dependencies resolved.
- ================================================================================
-  Package                Architecture  Version               Repository     Size
- ================================================================================
- Installing:
-  oniguruma-devel        x86_64        6.9.9-7.el10          crb            62 k
- Installing dependencies:
-  oniguruma              x86_64        6.9.9-7.el10          baseos        216 k
- 
- Transaction Summary
- ================================================================================
- Install  2 Packages
- 
- Total download size: 279 k
- Installed size: 1.0 M
- Downloading Packages:
- (1/2): oniguruma-6.9.9-7.el10.x86_64.rpm        1.5 MB/s | 216 kB     00:00    
- (2/2): oniguruma-devel-6.9.9-7.el10.x86_64.rpm  421 kB/s |  62 kB     00:00    
- --------------------------------------------------------------------------------
- Total                                           696 kB/s | 279 kB     00:00     
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
-   Preparing        :                                                        1/1 
-   Installing       : oniguruma-6.9.9-7.el10.x86_64                          1/2 
-   Installing       : oniguruma-devel-6.9.9-7.el10.x86_64                    2/2 
-   Running scriptlet: oniguruma-devel-6.9.9-7.el10.x86_64                    2/2 
- 
- Installed:
-   oniguruma-6.9.9-7.el10.x86_64       oniguruma-devel-6.9.9-7.el10.x86_64      
- 
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "oniguruma-devel"
- oniguruma-devel-6.9.9-7.el10.x86_64

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-oniguruma.1
-> retrieved dune.3.22.2, dune-configurator.3.22.2  (cached)
-> retrieved ISO8601.0.2.6  (cached)
-> retrieved melange-json-native.2.0.0  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed cmdliner.2.1.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ochre.1.0.0, ochre-cli.1.0.0  (cached)
-> retrieved plist-xml.0.5.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved tm-grammars.2.0.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved xmlm.1.4.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed xmlm.1.4.0
-> installed dune.3.22.2
-> installed base64.3.5.2
-> installed csexp.1.5.2
-> installed ISO8601.0.2.6
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed dune-configurator.3.22.2
-> installed tm-grammars.2.0.0
-> installed menhir.20260209
-> installed plist-xml.0.5.1
-> installed ppxlib.0.38.0
-> installed melange-json-native.2.0.0
-> installed ochre.1.0.0
-> installed ochre-cli.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-15 21:22.48 ---> saved as "23e8d76798d322496ab16a72d750d6f5a65a96a28dc546c943b4ed0b52bbd3a1"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ochre-cli.1.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ochre-cli          1.0.0 (pinned)
=== install 10 packages
  - install   alcotest           1.9.1          [required by ochre-cli]
  - install   astring            0.8.5          [required by alcotest]
  - install   cstruct            6.2.0          [required by hex]
  - install   ezjsonm            1.3.0          [required by ochre-cli]
  - install   fmt                0.11.0         [required by alcotest]
  - install   hex                1.5.0          [required by ezjsonm]
  - install   jsonm              1.0.2          [required by ezjsonm]
  - install   ocaml-syntax-shims 1.0.0          [required by alcotest]
  - install   re                 1.14.0         [required by alcotest]
  - install   uutf               1.0.4          [required by alcotest, ezjsonm]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0  (https://opam.ocaml.org/cache)
-> retrieved ezjsonm.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved hex.1.5.0  (https://opam.ocaml.org/cache)
-> retrieved jsonm.1.0.2  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed re.1.14.0
-> removed   ochre-cli.1.0.0
-> installed uutf.1.0.4
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed alcotest.1.9.1
-> installed jsonm.1.0.2
-> installed ezjsonm.1.3.0
-> installed ochre-cli.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-15 21:22.56 ---> saved as "6fad10417b1da1e4ed4b8cb90da0e558bfba60baff408bca5f175a1917595b7e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ochre-cli.1.0.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 \"\\\"centos-10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ochre-cli.1.0.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 ochre-cli 1.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ochre-cli: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ochre-cli" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ochre-cli.1.0.0)
- (cd _build/.sandbox/e99efe474cb6291347bd571d732a1dcf/default/vendor/ocaml-oniguruma/test && ./test_misc.exe)
- 6.9.9
- (cd _build/.sandbox/6c73f0eb2ddbfcaf410e330d22f660a1/default/vendor/ocaml-textmate-language/test && ./test_csharp.exe)
- Testing `C#'.
- This run has ID `6GJUIFUF'.
- 
-   [OK]          data/csharp.tmLanguage          0   Plist.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/6c73f0eb2ddbfcaf410e330d22f660a1/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+0023'.
- Test Successful in 0.003s. 1 test run.
- (cd _build/.sandbox/9082659b279fbd14a639b015fce15df3/default/vendor/ocaml-textmate-language/test && ./test_find.exe)
- Testing `Finding'.
- This run has ID `HN5WFNLZ'.
- 
-   [OK]          data/multiwhile.json          0   Yojson.
-   [OK]          data/multiwhile.json          1   Ezjsonm.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/9082659b279fbd14a639b015fce15df3/default/vendor/ocaml-textmate-language/test/_build/_tests/Finding'.
- Test Successful in 0.000s. 2 tests run.
- (cd _build/.sandbox/7c4775437d102ecff968e015fbc22be2/default/vendor/ocaml-textmate-language/test && ./test_tokenize.exe)
- Testing `Highlighting'.
- This run has ID `NILBI4MW'.
- 
-   [OK]          data/a.json                              0   Yojson.
-   [OK]          data/a.json                              1   Ezjsonm.
-   [OK]          data/while.json                          0   Yojson.
-   [OK]          data/while.json                          1   Ezjsonm.
-   [OK]          data/multiwhile.json                     0   Yojson.
-   [OK]          data/multiwhile.json                     1   Ezjsonm.
-   [OK]          data/groups.json                         0   Yojson.
-   [OK]          data/groups.json                         1   Ezjsonm.
-   [OK]          data/zero_width_loop.json                0   Yojson.
-   [OK]          data/zero_width_loop.json                1   Ezjsonm.
-   [OK]          data/zero_width_end_loop.json            0   Yojson.
-   [OK]          data/zero_width_end_loop.json            1   Ezjsonm.
-   [OK]          data/zero_width_match_loop.json          0   Yojson.
-   [OK]          data/zero_width_match_loop.json          1   Ezjsonm.
-   [OK]          g-anchor-end-pattern                     0   Closes quoted sc...
-   [OK]          g-anchor-end-pattern                     1   Positive \G end ...
-   [OK]          g-anchor-end-pattern                     2   Negative \G end ...
-   [OK]          g-anchor-parent-and-while                0   Nested patterns ...
-   [OK]          g-anchor-parent-and-while                1   Empty content cl...
-   [OK]          g-anchor-parent-and-while                2   Positive \G whil...
-   [OK]          g-anchor-parent-and-while                3   Negative \G whil...
-   [OK]          overlapping-begin-captures               0   Keeps string sco...
-   [OK]          injections                               0   Right-priority i...
-   [OK]          injections                               1   Left-priority in...
-   [OK]          injections                               2   Injection does n...
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/7c4775437d102ecff968e015fbc22be2/default/vendor/ocaml-textmate-language/test/_build/_tests/Highlighting'.
- Test Successful in 0.004s. 25 tests run.
- (cd _build/.sandbox/c5fa0b0cc10cd1fea606b700a93bd230/default/vendor/ocaml-textmate-language/test && ./test_ocaml.exe)
- Testing `OCaml'.
- This run has ID `F71GP3JW'.
- 
-   [OK]          data/ocaml.tmLanguage.json          0   Yojson.
-   [OK]          data/ocaml.tmLanguage.json          1   Ezjsonm.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/c5fa0b0cc10cd1fea606b700a93bd230/default/vendor/ocaml-textmate-language/test/_build/_tests/OCaml'.
- Test Successful in 0.002s. 2 tests run.
- (cd _build/.sandbox/f20ff72e75d2763df69325bdbd20db4a/default/test && ./test_ochre.exe)
- Testing `Ochre'.
- This run has ID `XND6I2SW'.
- 
-   [OK]          theme                       0   Load theme from string.
-   [OK]          theme                       1   Make raw theme.
-   [OK]          scope                       0   Scope matching via tokens.
-   [OK]          scope                       1   Scope properties merge by rule.
-   [OK]          grammar                     0   Accept capture arrays.
-   [OK]          transform                   0   Empty transforms passthrough.
-   [OK]          transform                   1   Transform ordering (last wins).
-   [OK]          transform                   2   Transform determinism.
-   [OK]          transform                   3   Line highlight builtin.
-   [OK]          transform                   4   Hook execution order.
-   [OK]          notation-transform          0   Notation highlight basic.
-   [OK]          notation-transform          1   Notation highlight no match.
-   [OK]          notation-transform          2   Notation diff add.
-   [OK]          notation-transform          3   Notation diff remove.
-   [OK]          notation-transform          4   Notation diff no match.
-   [OK]          notation-transform          5   Notation word highlight basic.
-   [OK]          notation-transform          6   Notation word highlight no ma...
-   [OK]          notation-transform          7   Notation highlight with highl...
-   [OK]          decoration                  0   Empty decorations passthrough.
-   [OK]          decoration                  1   Whole token decoration.
-   [OK]          decoration                  2   Token splitting at boundary.
-   [OK]          decoration                  3   Mid-token split.
-   [OK]          decoration                  4   Multi-token decoration.
-   [OK]          decoration                  5   Negative character position.
-   [OK]          decoration                  6   Overlapping decorations.
-   [OK]          decoration                  7   Multiline decoration.
-   [OK]          decoration                  8   Decoration with highlighter.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/f20ff72e75d2763df69325bdbd20db4a/default/test/_build/_tests/Ochre'.
- Test Successful in 0.004s. 27 tests run.
- (cd _build/.sandbox/1c62c870fd25ca89ab97b6e05baaf1c4/default/vendor/ocaml-textmate-language/test && ./test_cpp.exe)
- Testing `C++'.
- This run has ID `GJY842IA'.
- 
-   [OK]          data/cpp.tmLanguage.json          0   Yojson.
-   [OK]          data/cpp.tmLanguage.json          1   Ezjsonm.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/1c62c870fd25ca89ab97b6e05baaf1c4/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+002BU+002B'.
- Test Successful in 0.022s. 2 tests run.
-> compiled  ochre-cli.1.0.0
-> removed   ochre-cli.1.0.0
-> installed ochre-cli.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-15 21:23.00 ---> saved as "40f0ff1d606948fff173d7cbbd8b31cb66a0c57107a686f9744c8ae5b7fe913c"
Job succeeded
2026-04-15 21:23.05: Job succeeded