- github
- ocaml
- opam-repository
- 92e909
- distributions,centos-10-ocaml-4.14,ochre-cli.1.0.0,tests
(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-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/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-4.14@sha256:6da7aa16bcad26d540289f10fc417dc553be4cc46f9e13d4c785cfc91af1253e
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-4.14@sha256:6da7aa16bcad26d540289f10fc417dc553be4cc46f9e13d4c785cfc91af1253e-ochre-cli.1.0.0-92e909f657262642472253e8e4d15ffb656911dc"
2026-04-15 21:21.10: Using OBuilder spec:
((from ocaml/opam:centos-10-ocaml-4.14@sha256:6da7aa16bcad26d540289f10fc417dc553be4cc46f9e13d4c785cfc91af1253e)
(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 clete.caelum.ci.dev
HEAD is now at 6cf2401cf5 [new release] elpi (3.7.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-4.14@sha256:6da7aa16bcad26d540289f10fc417dc553be4cc46f9e13d4c785cfc91af1253e)
Unable to find image 'ocaml/opam:centos-10-ocaml-4.14@sha256:6da7aa16bcad26d540289f10fc417dc553be4cc46f9e13d4c785cfc91af1253e' locally
docker.io/ocaml/opam@sha256:6da7aa16bcad26d540289f10fc417dc553be4cc46f9e13d4c785cfc91af1253e: 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
0d27c16c6154: Pulling fs layer
26774a2d4786: Pulling fs layer
ff7e4aefac17: Pulling fs layer
9f8e54285277: Pulling fs layer
9f8e54285277: Waiting
26774a2d4786: Verifying Checksum
26774a2d4786: Download complete
ff7e4aefac17: Download complete
9f8e54285277: Verifying Checksum
9f8e54285277: Download complete
0d27c16c6154: Verifying Checksum
0d27c16c6154: Download complete
0d27c16c6154: Pull complete
26774a2d4786: Pull complete
ff7e4aefac17: Pull complete
9f8e54285277: Pull complete
Digest: sha256:6da7aa16bcad26d540289f10fc417dc553be4cc46f9e13d4c785cfc91af1253e
Status: Downloaded newer image for ocaml/opam@sha256:6da7aa16bcad26d540289f10fc417dc553be4cc46f9e13d4c785cfc91af1253e
2026-04-15 21:21.16 ---> using "b026d58619225361247c81de717bee5a4f6bd84a8fc1e667973bccd38afb1c54" 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.16 ---> using "85578ad299508a04c63158d3a8c7b6b73207c18ff0a1fe36c2632bc8d810aa68" 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.
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-15 21:21.16 ---> using "7b50aabcbf123fa14e79dc3da48c7b8f7c018b50bab2a1bf7c1bd051244085e2" 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 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, 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.3
2026-04-15 21:21.16 ---> using "270f47091046270e0d61de1cb80030f88d49cc4d1083b39c70e46251f99f83db" 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.16 ---> using "d776cf599301c56a89b9dcc6881e15c504bc66c4631cac6eb16843dc7eb50ee0" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-15 21:21.27 ---> saved as "2d90ae82d3690f615d5b1c1c90270d64dbf388728f8891466c2c7ff278be3340"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-15 21:21.45 ---> saved as "8e56a6eaa2fc31b7b51f196965e132b384ad955d8082e46a68e705c38c520b80"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 10 - BaseOS 106 kB/s | 15 kB 00:00
- CentOS Stream 10 - BaseOS 6.5 MB/s | 6.9 MB 00:01
- CentOS Stream 10 - AppStream 122 kB/s | 15 kB 00:00
- CentOS Stream 10 - AppStream 4.0 MB/s | 3.6 MB 00:00
- CentOS Stream 10 - CRB 110 kB/s | 15 kB 00:00
- CentOS Stream 10 - CRB 712 kB/s | 834 kB 00:01
- CentOS Stream 10 - Extras packages 6.5 kB/s | 17 kB 00:02
- Metadata cache created.
2026-04-15 21:21.55 ---> saved as "ef71cc9aa8f7562e95f0042d36cf726d76f9248b9993dd23e9db3961f9b6657a"
/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.56 ---> saved as "69340cbedeca23d06a2727f0be7fb9cc0d46f3d8c99475f129857456c2617968"
/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.12.4 [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:05 ago on Wed Apr 15 21:21:54 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-devel-6.9.9-7.el10.x86_64.rpm 865 kB/s | 62 kB 00:00
- (2/2): oniguruma-6.9.9-7.el10.x86_64.rpm 1.9 MB/s | 216 kB 00:00
- --------------------------------------------------------------------------------
- Total 777 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.12.4 (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.12.4
-> 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:23.10 ---> saved as "e241ee8bb831121359065fb1c9082d86ce2992fef34fff517293d9ba4393fcf6"
/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 uutf.1.0.4
-> removed ochre-cli.1.0.0
-> installed re.1.14.0
-> 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:23.19 ---> saved as "825bfefa8287d1e4ecbd90346fc5f94b0c6cd79b2ccd5b2c188985f7691435f1"
/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" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ochre-cli.1.0.0)
- (cd _build/.sandbox/82e89a8a57d01774f27c89da3b08119b/default/vendor/ocaml-oniguruma/test && ./test_misc.exe)
- 6.9.9
- (cd _build/.sandbox/c516b74d6e83ad114d57450e60b30273/default/vendor/ocaml-textmate-language/test && ./test_find.exe)
- Testing `Finding'.
- This run has ID `F5MND4UD'.
-
- [OK] data/multiwhile.json 0 Yojson.
- [OK] data/multiwhile.json 1 Ezjsonm.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/c516b74d6e83ad114d57450e60b30273/default/vendor/ocaml-textmate-language/test/_build/_tests/Finding'.
- Test Successful in 0.000s. 2 tests run.
- (cd _build/.sandbox/1341b7529aa6be8dcb8d2ad073dda1de/default/vendor/ocaml-textmate-language/test && ./test_ocaml.exe)
- Testing `OCaml'.
- This run has ID `8BLWZJ3T'.
-
- [OK] data/ocaml.tmLanguage.json 0 Yojson.
- [OK] data/ocaml.tmLanguage.json 1 Ezjsonm.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/1341b7529aa6be8dcb8d2ad073dda1de/default/vendor/ocaml-textmate-language/test/_build/_tests/OCaml'.
- Test Successful in 0.002s. 2 tests run.
- (cd _build/.sandbox/70f69fc19b0c68d88ddb40a80299fbd9/default/vendor/ocaml-textmate-language/test && ./test_tokenize.exe)
- Testing `Highlighting'.
- This run has ID `5KFG5CAE'.
-
- [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/4.14/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/70f69fc19b0c68d88ddb40a80299fbd9/default/vendor/ocaml-textmate-language/test/_build/_tests/Highlighting'.
- Test Successful in 0.003s. 25 tests run.
- (cd _build/.sandbox/3e89910a25222c0af8ebf6bbe236eb1d/default/vendor/ocaml-textmate-language/test && ./test_csharp.exe)
- Testing `C#'.
- This run has ID `HR1BI1HU'.
-
- [OK] data/csharp.tmLanguage 0 Plist.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/3e89910a25222c0af8ebf6bbe236eb1d/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+0023'.
- Test Successful in 0.004s. 1 test run.
- (cd _build/.sandbox/2c6095dad62e718a27813768a86bfc52/default/vendor/ocaml-textmate-language/test && ./test_cpp.exe)
- Testing `C++'.
- This run has ID `P87ZDLER'.
-
- [OK] data/cpp.tmLanguage.json 0 Yojson.
- [OK] data/cpp.tmLanguage.json 1 Ezjsonm.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/2c6095dad62e718a27813768a86bfc52/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+002BU+002B'.
- Test Successful in 0.028s. 2 tests run.
- (cd _build/.sandbox/461ad7c7a39957da135b4614bcb466c4/default/test && ./test_ochre.exe)
- Testing `Ochre'.
- This run has ID `8QSAAOHH'.
-
- [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/4.14/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/461ad7c7a39957da135b4614bcb466c4/default/test/_build/_tests/Ochre'.
- Test Successful in 0.004s. 27 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.23 ---> saved as "c477c76d775cd9992e8b6e77db241bc545707f20adb9afb820238abfd6a63c8a"
Job succeeded
2026-04-15 21:23.33: Job succeeded