- github
- ocaml
- opam-repository
- c7d160
- freebsd,freebsd-14.3-ocaml-5.4-amd64,ochre-cli.1.0.0,tests
(not at the head of any monitored branch or PR)
2026-04-12 18:50.46: New job: test ochre-cli.1.0.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29700/head (c7d1605439a68ff5f5d9f600bbf5faa96cbbaf3e)
on freebsd-14.3-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 c7d16054
git fetch origin master
git merge --no-edit 0404939bde256ca9d097922f265c4342b3b383b0
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM freebsd-14.3-ocaml-5.4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/local/bin/opam-dev /usr/local/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 "\"freebsd-14.3\""; 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 "\"freebsd-14.3\""; 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-12 18:50.46: Using cache hint "freebsd-14.3-ocaml-5.4-ochre-cli.1.0.0-c7d1605439a68ff5f5d9f600bbf5faa96cbbaf3e"
2026-04-12 18:50.46: Using OBuilder spec:
((from freebsd-14.3-ocaml-5.4)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -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 \"\\\"freebsd-14.3\\\"\"; 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 \"\\\"freebsd-14.3\\\"\"; 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-12 18:50.46: Waiting for resource in pool OCluster
2026-04-12 18:50.47: Waiting for worker…
2026-04-12 18:50.47: Got resource from pool OCluster
Building on rosemary
All commits already cached
Updating files: 100% (18675/18675), done.
HEAD is now at 0404939bde Merge pull request #29648 from sanette/opam-publish-tsdl-ttf.0.7
Updating 0404939bde..c7d1605439
Fast-forward
packages/ochre-cli/ochre-cli.1.0.0/opam | 44 +++++++++++++++++++++++++++++
packages/ochre/ochre.1.0.0/opam | 49 +++++++++++++++++++++++++++++++++
2 files changed, 93 insertions(+)
create mode 100644 packages/ochre-cli/ochre-cli.1.0.0/opam
create mode 100644 packages/ochre/ochre.1.0.0/opam
(from freebsd-14.3-ocaml-5.4)
2026-04-12 18:47.01 ---> using "463e9b939b79b2568bf98b05cff00f85b3ec5717170cf88773a44ae3b08f11e7" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
2026-04-12 18:47.01 ---> using "0f4f38cca0f09ffdac905c0015fdbe56f9214c89e28a28ae3325cd6eed47fd99" from cache
/home/opam: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using 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.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 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=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2026-04-12 18:47.01 ---> using "430d75e95f6be08ef0776e6e6bb864bc698709d5f7d071fd7fbbf37d0a8617d5" 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=freebsd os-distribution=freebsd os-version=1403000
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 39
# repositories 1 (version-controlled)
# pinned 0
# current-switch 5.4.1
# invariant ["ocaml-base-compiler" {= "5.4.1"} | "ocaml-system" {= "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.1/lib/ocaml/stublibs:/home/opam/.opam/5.4.1/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-12 18:47.01 ---> using "8a5a57fecc1d42886ddc4a5b75b36583eef8196838ccdc1bf870bc7798f6f185" 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-12 18:47.02 ---> using "5d57b5e6a2b42d2aa72fb2cc8558fd5735263edde7f2032c7588b729f1b1565f" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-12 18:47.07 ---> saved as "4c68d7c3250f9329fc33a082c11e3e25622d49f6915ddc5f4873b04bde376284"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-12 18:47.22 ---> saved as "c262edf0d8e331739a5d98606a05c564d4e2f6b815ebd2ca576c88c5b1ea7118"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
[WARNING] Unknown update command for bsd, skipping system update
2026-04-12 18:47.22 ---> saved as "5d4a9fa7d917d348d8c5ade5f8e9814df6ce1fa77cf3a41449a594ba6d85d87b"
/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-12 18:47.23 ---> saved as "cc9818568bd3f571e7e512f636a874d2892220700b599b7fc0b63861997feb71"
/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 \"\\\"freebsd-14.3\\\"\"; 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
∗ base64 3.5.2 [required by plist-xml]
∗ cmdliner 2.1.0 [required by ochre-cli]
∗ conf-oniguruma 1 [required by ochre]
∗ conf-pkg-config 4 [required by conf-oniguruma]
∗ csexp 1.5.2 [required by dune-configurator]
∗ dune 3.22.1 [required by ochre-cli]
∗ dune-configurator 3.22.1 [required by ochre]
∗ ISO8601 0.2.6 [required by plist-xml]
∗ melange-json-native 2.0.0 [required by ochre]
∗ menhir 20260209 [required by plist-xml]
∗ menhirCST 20260209 [required by menhir]
∗ menhirGLR 20260209 [required by menhir]
∗ menhirLib 20260209 [required by menhir]
∗ menhirSdk 20260209 [required by menhir]
∗ ocaml-compiler-libs v0.17.0 [required by ppxlib]
∗ ocamlbuild 0.16.1 [required by xmlm]
∗ ocamlfind 1.9.8 [required by xmlm]
∗ ochre 1.0.0 [required by ochre-cli]
∗ ochre-cli 1.0.0 (pinned)
∗ plist-xml 0.5.1 [required by ochre]
∗ ppx_derivers 1.2.1 [required by ppxlib]
∗ ppxlib 0.38.0 [required by melange-json-native]
∗ sexplib0 v0.17.0 [required by ppxlib]
∗ stdlib-shims 0.3.0 [required by ppxlib]
∗ tm-grammars 1.1.0 [required by ochre-cli]
∗ topkg 1.1.1 [required by xmlm]
∗ xmlm 1.4.0 [required by plist-xml]
∗ yojson 3.0.0 [required by ochre]
The following system packages will first need to be installed:
oniguruma
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pkg to install them (may need root/sudo access)
2. Display the recommended pkg 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/local/bin/sudo "pkg" "install" "-y" "oniguruma"
- Updating FreeBSD repository catalogue...
- [rosemary] Fetching data:
- .
- ..
- ......
- . done
- Processing entries: .
- ...
- ..
- ..
- .. done
- FreeBSD repository update completed. 37062 packages processed.
- Updating FreeBSD-kmods repository catalogue...
- [rosemary] Fetching data: ..
- ...... done
- Processing entries: .......... done
- FreeBSD-kmods repository update completed. 245 packages processed.
- All repositories are up to date.
- The following 1 package(s) will be affected (of 0 checked):
-
- New packages to be INSTALLED:
- oniguruma: 6.9.10 [FreeBSD]
-
- Number of packages to be installed: 1
-
- The process will require 1 MiB more space.
- 254 KiB to be downloaded.
- [rosemary] [1/1] Fetching oniguruma-6.9.10: .......... done
- Checking integrity... done (0 conflicting)
- [rosemary] [1/1] Installing oniguruma-6.9.10...
- [rosemary] [1/1] Extracting oniguruma-6.9.10: .......... done
- =====
- Message from oniguruma-6.9.10:
-
- --
- ===> NOTICE:
-
- This port is deprecated; you may wish to reconsider installing it:
-
- Project archived upstream.
-
- It is scheduled to be removed on or after 2026-12-01.
<><> 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.1, dune-configurator.3.22.1 (cached)
⬇ retrieved ISO8601.0.2.6 (cached)
⬇ retrieved melange-json-native.2.0.0 (cached)
∗ installed cmdliner.2.1.0
⬇ 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)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ochre.1.0.0, ochre-cli.1.0.0 (https://github.com/davesnx/ochre/releases/download/1.0.0/ochre-1.0.0.tbz)
⬇ 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.1.1.0 (https://github.com/davesnx/tm-grammars/releases/download/1.1.0/tm-grammars-1.1.0.tbz)
⬇ 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.1
∗ installed ppx_derivers.1.2.1
∗ installed menhirCST.20260209
∗ installed ISO8601.0.2.6
∗ installed stdlib-shims.0.3.0
∗ installed menhirLib.20260209
∗ installed menhirGLR.20260209
∗ installed menhirSdk.20260209
∗ installed ocaml-compiler-libs.v0.17.0
∗ installed csexp.1.5.2
∗ installed yojson.3.0.0
∗ installed sexplib0.v0.17.0
∗ installed base64.3.5.2
∗ installed dune-configurator.3.22.1
∗ installed tm-grammars.1.1.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.
2026-04-12 18:48.52 ---> saved as "01db706949eb91e5aed72c839f97474e16df6fafbac229c750e787df4c11523d"
/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
↻ ochre-cli 1.0.0 (pinned)
=== install 10 packages
∗ alcotest 1.9.1 [required by ochre-cli]
∗ astring 0.8.5 [required by alcotest]
∗ cstruct 6.2.0 [required by hex]
∗ ezjsonm 1.3.0 [required by ochre-cli]
∗ fmt 0.11.0 [required by alcotest]
∗ hex 1.5.0 [required by ezjsonm]
∗ jsonm 1.0.2 [required by ezjsonm]
∗ ocaml-syntax-shims 1.0.0 [required by alcotest]
∗ re 1.14.0 [required by alcotest]
∗ uutf 1.0.4 [required by alcotest, ezjsonm]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved alcotest.1.9.1 (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
⬇ retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
⬇ retrieved cstruct.6.2.0 (https://github.com/mirage/ocaml-cstruct/releases/download/v6.2.0/cstruct-6.2.0.tbz)
⬇ retrieved ezjsonm.1.3.0 (https://github.com/mirage/ezjsonm/releases/download/v1.3.0/ezjsonm-1.3.0.tbz)
⬇ retrieved fmt.0.11.0 (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
⬇ retrieved hex.1.5.0 (https://github.com/mirage/ocaml-hex/releases/download/v1.5.0/hex-1.5.0.tbz)
⬇ retrieved jsonm.1.0.2 (https://erratique.ch/software/jsonm/releases/jsonm-1.0.2.tbz)
⬇ retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
⬇ retrieved re.1.14.0 (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
⬇ retrieved uutf.1.0.4 (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
∗ 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 jsonm.1.0.2
∗ installed ezjsonm.1.3.0
∗ installed alcotest.1.9.1
[ERROR] The compilation of ochre-cli.1.0.0 failed at "dune build -p ochre-cli -j 39 @install @runtest".
#=== ERROR while compiling ochre-cli.1.0.0 ====================================#
# context 2.5.0 | freebsd/x86_64 | ocaml-base-compiler.5.4.1 | pinned(https://github.com/davesnx/ochre/releases/download/1.0.0/ochre-1.0.0.tbz)
# path ~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0
# command ~/.opam/5.4.1/bin/dune build -p ochre-cli -j 39 @install @runtest
# exit-code 1
# env-file ~/.opam/log/ochre-cli-36635-cc3c64.env
# output-file ~/.opam/log/ochre-cli-36635-cc3c64.out
### output ###
# (cd _build/.sandbox/5eeda91ce0715e4a2f0f5b5a35cd9a8d/default/vendor/ocaml-oniguruma/test && ./test_misc.exe)
# 6.9.10
# (cd _build/.sandbox/ed0a8c1b4cf34a208718b172e0326efd/default/vendor/ocaml-textmate-language/test && ./test_find.exe)
# Testing `Finding'.
# This run has ID `GNEV9AU9'.
#
# [OK] data/multiwhile.json 0 Yojson.
# [OK] data/multiwhile.json 1 Ezjsonm.
#
# Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/ed0a8c1b4cf34a208718b172e0326efd/default/vendor/ocaml-textmate-language/test/_build/_tests/Finding'.
# Test Successful in 0.000s. 2 tests run.
# (cd _build/.sandbox/9126db68a433a48952787ac786b59aa9/default/vendor/ocaml-textmate-language/test && ./test_ocaml.exe)
# Testing `OCaml'.
# This run has ID `OC530TJH'.
#
# [OK] data/ocaml.tmLanguage.json 0 Yojson.
# [OK] data/ocaml.tmLanguage.json 1 Ezjsonm.
#
# Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/9126db68a433a48952787ac786b59aa9/default/vendor/ocaml-textmate-language/test/_build/_tests/OCaml'.
# Test Successful in 0.003s. 2 tests run.
# (cd _build/.sandbox/48b679fcf5f3dc7ee61bdafafe040bc3/default/vendor/ocaml-textmate-language/test && ./test_tokenize.exe)
# Testing `Highlighting'.
# This run has ID `53M903OF'.
#
# [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.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/48b679fcf5f3dc7ee61bdafafe040bc3/default/vendor/ocaml-textmate-language/test/_build/_tests/Highlighting'.
# Test Successful in 0.004s. 25 tests run.
# (cd _build/.sandbox/bf7884fc30d9e339c4f9d5269dd52a4f/default/vendor/ocaml-textmate-language/test && ./test_csharp.exe)
# Testing `C#'.
# This run has ID `J0PI2LQ9'.
#
# [OK] data/csharp.tmLanguage 0 Plist.
#
# Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/bf7884fc30d9e339c4f9d5269dd52a4f/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+0023'.
# Test Successful in 0.005s. 1 test run.
# File "test/cram/cli_reason.t", line 1, characters 0-0:
# /usr/local/bin/git --no-pager diff --no-index --color=always -u _build/default/test/cram/cli_reason.t _build/default/test/cram/cli_reason.t.corrected
# diff --git a/_build/default/test/cram/cli_reason.t b/_build/default/test/cram/cli_reason.t.corrected
# index 1070df1..fda56fb 100644
# --- a/_build/default/test/cram/cli_reason.t
# +++ b/_build/default/test/cram/cli_reason.t.corrected
# @@ -1,12 +1,5 @@
# Reason bundled grammar works through the CLI
# $ printf 'let x = 1;\n' | ochre reason --format tokens
# - line 1:
# - "let" storage.type, source.reason
# - " " source.reason
# - "x" entity.name.function, source.reason
# - " " source.reason
# - "=" keyword.control.less, source.reason
# - " " source.reason
# - "1" constant.numeric, source.reason
# - ";" message.error, keyword.control, keyword.operator, variable.interpolation, variable.other.class.js, source.reason
# - "\n" source.reason
# + ochre: No bundled grammar for 'reason'. Available: . Use --grammar to provide
# + one.
# + [124]
# (cd _build/.sandbox/b980657de02bad9fb77b3d351d2f3643/default/vendor/ocaml-textmate-language/test && ./test_cpp.exe)
# Testing `C++'.
# This run has ID `VLE40W4M'.
#
# [OK] data/cpp.tmLanguage.json 0 Yojson.
# [OK] data/cpp.tmLanguage.json 1 Ezjsonm.
#
# Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/b980657de02bad9fb77b3d351d2f3643/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+002BU+002B'.
# Test Successful in 0.043s. 2 tests run.
# (cd _build/.sandbox/b8ed934e7db9f16d6af7218648d93f36/default/test && ./test_ochre.exe)
# Testing `Ochre'.
# This run has ID `9OBVBNUG'.
#
# [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.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/b8ed934e7db9f16d6af7218648d93f36/default/test/_build/_tests/Ochre'.
# Test Successful in 0.004s. 27 tests run.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions failed
│ λ build ochre-cli 1.0.0
└─
┌─ The following changes have been performed
│ ⊘ remove ochre-cli 1.0.0
│ ∗ install alcotest 1.9.1
│ ∗ install astring 0.8.5
│ ∗ install cstruct 6.2.0
│ ∗ install ezjsonm 1.3.0
│ ∗ install fmt 0.11.0
│ ∗ install hex 1.5.0
│ ∗ install jsonm 1.0.2
│ ∗ install ocaml-syntax-shims 1.0.0
│ ∗ install re 1.14.0
│ ∗ install uutf 1.0.4
└─
The former state can be restored with:
/usr/local/bin/opam switch import "/home/opam/.opam/5.4.1/.opam-switch/backup/state-20260412184853.export"
Or you can retry to install your package selection with:
/usr/local/bin/opam install --restore
2026-04-12 18:49.02 ---> saved as "bc1c5cf2d465c59c62b1950f4d2d3600350c13dec0c32f80877bb3df914a3e11"
/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 \"\\\"freebsd-14.3\\\"\"; 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 1 package
∗ ochre-cli 1.0.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/3: [ochre-cli: dune build]
+ /home/opam/.opam/5.4.1/bin/dune "build" "-p" "ochre-cli" "-j" "39" "@install" "@runtest" (CWD=/home/opam/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0)
- (cd _build/.sandbox/5eeda91ce0715e4a2f0f5b5a35cd9a8d/default/vendor/ocaml-oniguruma/test && ./test_misc.exe)
- 6.9.10
- (cd _build/.sandbox/ed0a8c1b4cf34a208718b172e0326efd/default/vendor/ocaml-textmate-language/test && ./test_find.exe)
- Testing `Finding'.
- This run has ID `6BJBPE7J'.
-
- [OK] data/multiwhile.json 0 Yojson.
- [OK] data/multiwhile.json 1 Ezjsonm.
-
- Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/ed0a8c1b4cf34a208718b172e0326efd/default/vendor/ocaml-textmate-language/test/_build/_tests/Finding'.
- Test Successful in 0.000s. 2 tests run.
- (cd _build/.sandbox/9126db68a433a48952787ac786b59aa9/default/vendor/ocaml-textmate-language/test && ./test_ocaml.exe)
- Testing `OCaml'.
- This run has ID `8DM18XGA'.
-
- [OK] data/ocaml.tmLanguage.json 0 Yojson.
- [OK] data/ocaml.tmLanguage.json 1 Ezjsonm.
-
- Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/9126db68a433a48952787ac786b59aa9/default/vendor/ocaml-textmate-language/test/_build/_tests/OCaml'.
- Test Successful in 0.003s. 2 tests run.
- (cd _build/.sandbox/48b679fcf5f3dc7ee61bdafafe040bc3/default/vendor/ocaml-textmate-language/test && ./test_tokenize.exe)
- Testing `Highlighting'.
- This run has ID `W8JZ332D'.
-
- [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.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/48b679fcf5f3dc7ee61bdafafe040bc3/default/vendor/ocaml-textmate-language/test/_build/_tests/Highlighting'.
- Test Successful in 0.004s. 25 tests run.
- (cd _build/.sandbox/bf7884fc30d9e339c4f9d5269dd52a4f/default/vendor/ocaml-textmate-language/test && ./test_csharp.exe)
- Testing `C#'.
- This run has ID `JA3MTO1E'.
-
- [OK] data/csharp.tmLanguage 0 Plist.
-
- Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/bf7884fc30d9e339c4f9d5269dd52a4f/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+0023'.
- Test Successful in 0.005s. 1 test run.
- (cd _build/.sandbox/b980657de02bad9fb77b3d351d2f3643/default/vendor/ocaml-textmate-language/test && ./test_cpp.exe)
- Testing `C++'.
- This run has ID `LHVP5C4P'.
-
- [OK] data/cpp.tmLanguage.json 0 Yojson.
- [OK] data/cpp.tmLanguage.json 1 Ezjsonm.
-
- Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/b980657de02bad9fb77b3d351d2f3643/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+002BU+002B'.
- Test Successful in 0.034s. 2 tests run.
- File "test/cram/cli_reason.t", line 1, characters 0-0:
- /usr/local/bin/git --no-pager diff --no-index --color=always -u _build/default/test/cram/cli_reason.t _build/default/test/cram/cli_reason.t.corrected
- diff --git a/_build/default/test/cram/cli_reason.t b/_build/default/test/cram/cli_reason.t.corrected
- index 1070df1..fda56fb 100644
- --- a/_build/default/test/cram/cli_reason.t
- +++ b/_build/default/test/cram/cli_reason.t.corrected
- @@ -1,12 +1,5 @@
- Reason bundled grammar works through the CLI
- $ printf 'let x = 1;\n' | ochre reason --format tokens
- - line 1:
- - "let" storage.type, source.reason
- - " " source.reason
- - "x" entity.name.function, source.reason
- - " " source.reason
- - "=" keyword.control.less, source.reason
- - " " source.reason
- - "1" constant.numeric, source.reason
- - ";" message.error, keyword.control, keyword.operator, variable.interpolation, variable.other.class.js, source.reason
- - "\n" source.reason
- + ochre: No bundled grammar for 'reason'. Available: . Use --grammar to provide
- + one.
- + [124]
- (cd _build/.sandbox/b8ed934e7db9f16d6af7218648d93f36/default/test && ./test_ochre.exe)
- Testing `Ochre'.
- This run has ID `RSFBEQ46'.
-
- [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.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/b8ed934e7db9f16d6af7218648d93f36/default/test/_build/_tests/Ochre'.
- Test Successful in 0.004s. 27 tests run.
[ERROR] The compilation of ochre-cli.1.0.0 failed at "dune build -p ochre-cli -j 39 @install @runtest".
#=== ERROR while compiling ochre-cli.1.0.0 ====================================#
# context 2.5.0 | freebsd/x86_64 | ocaml-base-compiler.5.4.1 | pinned(https://github.com/davesnx/ochre/releases/download/1.0.0/ochre-1.0.0.tbz)
# path ~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0
# command ~/.opam/5.4.1/bin/dune build -p ochre-cli -j 39 @install @runtest
# exit-code 1
# env-file ~/.opam/log/ochre-cli-43106-534624.env
# output-file ~/.opam/log/ochre-cli-43106-534624.out
### output ###
# (cd _build/.sandbox/5eeda91ce0715e4a2f0f5b5a35cd9a8d/default/vendor/ocaml-oniguruma/test && ./test_misc.exe)
# 6.9.10
# (cd _build/.sandbox/ed0a8c1b4cf34a208718b172e0326efd/default/vendor/ocaml-textmate-language/test && ./test_find.exe)
# Testing `Finding'.
# This run has ID `6BJBPE7J'.
#
# [OK] data/multiwhile.json 0 Yojson.
# [OK] data/multiwhile.json 1 Ezjsonm.
#
# Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/ed0a8c1b4cf34a208718b172e0326efd/default/vendor/ocaml-textmate-language/test/_build/_tests/Finding'.
# Test Successful in 0.000s. 2 tests run.
# (cd _build/.sandbox/9126db68a433a48952787ac786b59aa9/default/vendor/ocaml-textmate-language/test && ./test_ocaml.exe)
# Testing `OCaml'.
# This run has ID `8DM18XGA'.
#
# [OK] data/ocaml.tmLanguage.json 0 Yojson.
# [OK] data/ocaml.tmLanguage.json 1 Ezjsonm.
#
# Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/9126db68a433a48952787ac786b59aa9/default/vendor/ocaml-textmate-language/test/_build/_tests/OCaml'.
# Test Successful in 0.003s. 2 tests run.
# (cd _build/.sandbox/48b679fcf5f3dc7ee61bdafafe040bc3/default/vendor/ocaml-textmate-language/test && ./test_tokenize.exe)
# Testing `Highlighting'.
# This run has ID `W8JZ332D'.
#
# [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.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/48b679fcf5f3dc7ee61bdafafe040bc3/default/vendor/ocaml-textmate-language/test/_build/_tests/Highlighting'.
# Test Successful in 0.004s. 25 tests run.
# (cd _build/.sandbox/bf7884fc30d9e339c4f9d5269dd52a4f/default/vendor/ocaml-textmate-language/test && ./test_csharp.exe)
# Testing `C#'.
# This run has ID `JA3MTO1E'.
#
# [OK] data/csharp.tmLanguage 0 Plist.
#
# Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/bf7884fc30d9e339c4f9d5269dd52a4f/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+0023'.
# Test Successful in 0.005s. 1 test run.
# (cd _build/.sandbox/b980657de02bad9fb77b3d351d2f3643/default/vendor/ocaml-textmate-language/test && ./test_cpp.exe)
# Testing `C++'.
# This run has ID `LHVP5C4P'.
#
# [OK] data/cpp.tmLanguage.json 0 Yojson.
# [OK] data/cpp.tmLanguage.json 1 Ezjsonm.
#
# Full test results in `~/.opam/5.4.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/b980657de02bad9fb77b3d351d2f3643/default/vendor/ocaml-textmate-language/test/_build/_tests/CU+002BU+002B'.
# Test Successful in 0.034s. 2 tests run.
# File "test/cram/cli_reason.t", line 1, characters 0-0:
# /usr/local/bin/git --no-pager diff --no-index --color=always -u _build/default/test/cram/cli_reason.t _build/default/test/cram/cli_reason.t.corrected
# diff --git a/_build/default/test/cram/cli_reason.t b/_build/default/test/cram/cli_reason.t.corrected
# index 1070df1..fda56fb 100644
# --- a/_build/default/test/cram/cli_reason.t
# +++ b/_build/default/test/cram/cli_reason.t.corrected
# @@ -1,12 +1,5 @@
# Reason bundled grammar works through the CLI
# $ printf 'let x = 1;\n' | ochre reason --format tokens
# - line 1:
# - "let" storage.type, source.reason
# - " " source.reason
# - "x" entity.name.function, source.reason
# - " " source.reason
# - "=" keyword.control.less, source.reason
# - " " source.reason
# - "1" constant.numeric, source.reason
# - ";" message.error, keyword.control, keyword.operator, variable.interpolation, variable.other.class.js, source.reason
# - "\n" source.reason
# + ochre: No bundled grammar for 'reason'. Available: . Use --grammar to provide
# + one.
# + [124]
# (cd _build/.sandbox/b8ed934e7db9f16d6af7218648d93f36/default/test && ./test_ochre.exe)
# Testing `Ochre'.
# This run has ID `RSFBEQ46'.
#
# [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.1/.opam-switch/build/ochre-cli.1.0.0/_build/.sandbox/b8ed934e7db9f16d6af7218648d93f36/default/test/_build/_tests/Ochre'.
# Test Successful in 0.004s. 27 tests run.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions failed
│ λ build ochre-cli 1.0.0
└─
╶─ No changes have been performed
'opam reinstall --with-test --verbose ochre-cli.1.0.0' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
jail: /usr/bin/su -l opam -c cd '/home/opam' && env OPAM_REPO_CI='true' CI='true' OPAMPRECISETRACKING='1' OPAMERRLOGLEN='0' OPAMDOWNLOADJOBS='1' '/usr/bin/env' 'bash' '-c' '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 "\"freebsd-14.3\""; 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': failed
"jail" "-c" "name=obuilder_52585_8536" "mount.devfs" "path=/obuilder/result/8fe26357a9ee48cd2cf0ddfb1376b0588d05a7d176501033c597fd9ea9980c2e/rootfs" "vnet" "exec.start=/sbin/ifconfig lo0 127.0.0.1/8" "command=/usr/bin/su" "-l" "opam" "-c" "cd '/home/opam' && env OPAM_REPO_CI='true' CI='true' OPAMPRECISETRACKING='1' OPAMERRLOGLEN='0' OPAMDOWNLOADJOBS='1' '/usr/bin/env' 'bash' '-c' '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 "\"freebsd-14.3\""; 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'" failed with exit status 1
2026-04-12 18:53.11: Job failed: Failed: Build failed
2026-04-12 18:53.11: Log analysis:
2026-04-12 18:53.11: >>>
[ERROR] The compilation of ochre-cli.1.0.0 failed at "dune build -p ochre-cli -j 39 @install @runtest".
(score = 20)
2026-04-12 18:53.11: >>>
[ERROR] The compilation of ochre-cli.1.0.0 failed at "dune build -p ochre-cli -j 39 @install @runtest".
(score = 20)
2026-04-12 18:53.11: The compilation of ochre-cli.1.0.0 failed at "dune build -p ochre-cli -j 39 @install @runtest".