Build:
- 0
2026-03-06 17:49.54: New job: test textmate-language.0.5.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29488/head (f4a3b6ab39d16588aebcc0ef96e72161a098a707)
on fedora-42-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/29488/head" && git reset --hard f4a3b6ab
git fetch origin master
git merge --no-edit b48adbf3fd2f9d8f5aabbb140b32fde26b926b58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-5.4@sha256:7324a6a7326dac248e59a0d79d679298339b0c829dc9fa20ba49f231ff8b9562
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 textmate-language.0.5.0 0.5.0
RUN opam reinstall textmate-language.0.5.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 "\"fedora-42\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'textmate-language.0.5.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 textmate-language.0.5.0) || true
RUN opam reinstall --with-test --verbose textmate-language.0.5.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 "\"fedora-42\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'textmate-language.0.5.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-03-06 17:49.54: Using cache hint "ocaml/opam:fedora-42-ocaml-5.4@sha256:7324a6a7326dac248e59a0d79d679298339b0c829dc9fa20ba49f231ff8b9562-textmate-language.0.5.0-f4a3b6ab39d16588aebcc0ef96e72161a098a707"
2026-03-06 17:49.54: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:7324a6a7326dac248e59a0d79d679298339b0c829dc9fa20ba49f231ff8b9562)
(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 textmate-language.0.5.0 0.5.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall textmate-language.0.5.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 \"\\\"fedora-42\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'textmate-language.0.5.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 textmate-language.0.5.0) || true"))
(run (shell "opam reinstall --with-test --verbose textmate-language.0.5.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 \"\\\"fedora-42\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'textmate-language.0.5.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-03-06 17:49.54: Waiting for resource in pool OCluster
2026-03-06 17:49.55: Waiting for worker…
2026-03-06 17:49.57: Got resource from pool OCluster
Building on phoebe
All commits already cached
HEAD is now at b48adbf3fd Merge pull request #29505 from elias-utf8/opam-publish-qcaml.1.0.0
Merge made by the 'ort' strategy.
.../textmate-language/textmate-language.0.5.0/opam | 48 ++++++++++++++++++++++
1 file changed, 48 insertions(+)
create mode 100644 packages/textmate-language/textmate-language.0.5.0/opam
(from ocaml/opam:fedora-42-ocaml-5.4@sha256:7324a6a7326dac248e59a0d79d679298339b0c829dc9fa20ba49f231ff8b9562)
2026-03-06 17:50.41 ---> saved as "a49f58b55abe76883ddea67ccb72819080ce442b646a7844a647d73512cf63ee"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-06 17:50.41 ---> saved as "68c8ac7c23b2e796b3e34d82189e829fc9d9a49585d90710f8dad3aaadc7528c"
/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-03-06 17:51.08 ---> saved as "bedb7608363ef17208f25f249bfafedb69bdd733a85defd784c010d73525615a"
/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=fedora os-version=42
# 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 5.4
# invariant ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, 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.0
2026-03-06 17:51.09 ---> saved as "c27f4ed7ea3bc82a18d9f8b07039adeb06d7cbdae04d978f06a21e8e7808ad83"
/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-03-06 17:51.18 ---> saved as "ca3199d8d3c4268f7d3896c62b280b7e198ae7ed6bf042e2fff4f928072ba878"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-06 17:51.25 ---> saved as "d84b0111e0f666a66bb9686e259d78e35d47c07a53e16fe8304f7e8b2360e04a"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-06 17:51.48 ---> saved as "52f81cd334a43eb4848f0d6783be97b98c1bb69fe8208213c6c2d8ad229a081a"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 42 - x86_64 - Updates 100% | 128.3 KiB/s | 18.5 KiB | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-03-06 17:51.55 ---> saved as "c5639e2fa95d7e9938832002460f2c8d84d08b02b0105b599219b72e1d39f10c"
/home/opam: (run (shell "opam pin add -k version -yn textmate-language.0.5.0 0.5.0"))
textmate-language is now pinned to version 0.5.0
2026-03-06 17:51.55 ---> saved as "0ce78ac579f2be32cf479246edb83535ad5bc357f6e85fdd8d24d8a46a6fc9e5"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall textmate-language.0.5.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 \"\\\"fedora-42\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'textmate-language.0.5.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
textmate-language.0.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install conf-oniguruma 1 [required by oniguruma]
- install conf-pkg-config 4 [required by conf-oniguruma]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.1 [required by textmate-language]
- install dune-configurator 3.21.1 [required by oniguruma]
- install oniguruma 0.1.2 [required by textmate-language]
- install textmate-language 0.5.0 (pinned)
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/sbin/sudo "yum" "install" "-y" "oniguruma-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- oniguruma-devel x86_64 6.9.10-2.fc42 fedora 266.9 KiB
- Installing dependencies:
- oniguruma x86_64 6.9.10-2.fc42 fedora 763.1 KiB
-
- Transaction Summary:
- Installing: 2 packages
-
- Total size of inbound packages is 279 KiB. Need to download 279 KiB.
- After this operation, 1 MiB extra will be used (install 1 MiB, remove 0 B).
- [1/2] oniguruma-0:6.9.10-2.fc42.x86_64 100% | 4.2 MiB/s | 217.4 KiB | 00m00s
- [2/2] oniguruma-devel-0:6.9.10-2.fc42.x 100% | 1.0 MiB/s | 61.7 KiB | 00m00s
- --------------------------------------------------------------------------------
- [2/2] Total 100% | 1.3 MiB/s | 279.1 KiB | 00m00s
- Running transaction
- [1/4] Verify package files 100% | 400.0 B/s | 2.0 B | 00m00s
- [2/4] Prepare transaction 100% | 21.0 B/s | 2.0 B | 00m00s
- [3/4] Installing oniguruma-0:6.9.10-2.f 100% | 53.4 MiB/s | 765.2 KiB | 00m00s
- [4/4] Installing oniguruma-devel-0:6.9. 100% | 1.9 MiB/s | 269.8 KiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "oniguruma-devel"
- oniguruma-devel-6.9.10-2.fc42.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-oniguruma.1
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved oniguruma.0.1.2 (cached)
-> retrieved textmate-language.0.5.0 (cached)
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.1
-> installed oniguruma.0.1.2
-> installed textmate-language.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-06 17:52.53 ---> saved as "9819d0e987644ffeb2f611ba11216fd3cbd864e8756c0d1a265d4831ca86f60a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test textmate-language.0.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile textmate-language 0.5.0 (pinned)
=== install 26 packages
- install alcotest 1.9.1 [required by textmate-language]
- install astring 0.8.5 [required by alcotest]
- install base64 3.5.2 [required by plist-xml]
- install cmdliner 2.1.0 [required by alcotest]
- install cstruct 6.2.0 [required by hex]
- install ezjsonm 1.3.0 [required by textmate-language]
- install fmt 0.11.0 [required by alcotest]
- install hex 1.5.0 [required by ezjsonm]
- install ISO8601 0.2.6 [required by plist-xml]
- install jsonm 1.0.2 [required by ezjsonm]
- 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-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by jsonm, fmt, astring, etc.]
- install ocamlfind 1.9.8 [required by jsonm, fmt, astring, etc.]
- install plist-xml 0.5.1 [required by textmate-language]
- install re 1.14.0 [required by alcotest]
- install sexplib0 v0.17.0 [required by ezjsonm]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by jsonm, fmt, astring, etc.]
- install uutf 1.0.4 [required by alcotest, ezjsonm]
- install xmlm 1.4.0 [required by plist-xml]
- install yojson 3.0.0 [required by textmate-language]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved base64.3.5.2 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0 (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> 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 ISO8601.0.2.6 (https://opam.ocaml.org/cache)
-> retrieved jsonm.1.0.2 (https://opam.ocaml.org/cache)
-> installed ISO8601.0.2.6
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (https://opam.ocaml.org/cache)
-> installed menhirCST.20260209
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> installed menhirLib.20260209
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> installed menhirGLR.20260209
-> retrieved plist-xml.0.5.1 (https://opam.ocaml.org/cache)
-> installed menhirSdk.20260209
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> retrieved xmlm.1.4.0 (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.17.0
-> installed cmdliner.2.1.0
-> installed re.1.14.0
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> removed textmate-language.0.5.0
-> installed ocamlbuild.0.16.1
-> installed menhir.20260209
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed xmlm.1.4.0
-> installed astring.0.8.5
-> installed cstruct.6.2.0
-> installed plist-xml.0.5.1
-> installed hex.1.5.0
-> installed jsonm.1.0.2
-> installed alcotest.1.9.1
-> installed ezjsonm.1.3.0
-> installed textmate-language.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-06 17:53.18 ---> saved as "0d280d12b5ca220ac17c45807b1ab96d6356208f30464e62193085d490c2b05e"
/home/opam: (run (shell "opam reinstall --with-test --verbose textmate-language.0.5.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 \"\\\"fedora-42\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'textmate-language.0.5.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 textmate-language 0.5.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [textmate-language: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "textmate-language" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/textmate-language.0.5.0)
- (cd _build/default/test && ./test_tokenize.exe)
- Testing `Highlighting'.
- This run has ID `9SG5SLMO'.
-
- [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.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/textmate-language.0.5.0/_build/default/test/_build/_tests/Highlighting'.
- Test Successful in 0.001s. 8 tests run.
- (cd _build/default/test && ./test_ocaml.exe)
- Testing `OCaml'.
- This run has ID `WAFDXUM3'.
-
- [OK] data/ocaml.tmLanguage.json 0 Yojson.
- [OK] data/ocaml.tmLanguage.json 1 Ezjsonm.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/textmate-language.0.5.0/_build/default/test/_build/_tests/OCaml'.
- Test Successful in 0.001s. 2 tests run.
- (cd _build/default/test && ./test_find.exe)
- Testing `Finding'.
- This run has ID `18UUWCJI'.
-
- [OK] data/multiwhile.json 0 Yojson.
- [OK] data/multiwhile.json 1 Ezjsonm.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/textmate-language.0.5.0/_build/default/test/_build/_tests/Finding'.
- Test Successful in 0.000s. 2 tests run.
- (cd _build/default/test && ./test_csharp.exe)
- Testing `C#'.
- This run has ID `5UEUKCAB'.
-
- [OK] data/csharp.tmLanguage 0 Plist.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/textmate-language.0.5.0/_build/default/test/_build/_tests/CU+0023'.
- Test Successful in 0.000s. 1 test run.
- (cd _build/default/test && ./test_cpp.exe)
- Testing `C++'.
- This run has ID `EAIB52HV'.
-
- [OK] data/cpp.tmLanguage.json 0 Yojson.
- [OK] data/cpp.tmLanguage.json 1 Ezjsonm.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/textmate-language.0.5.0/_build/default/test/_build/_tests/CU+002BU+002B'.
- Test Successful in 0.003s. 2 tests run.
-> compiled textmate-language.0.5.0
-> removed textmate-language.0.5.0
-> installed textmate-language.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-06 17:53.23 ---> saved as "a20a51d528348f5ac431d42b1dc04cd694d161e84fc295d5fbd70bfde6295902"
Job succeeded
2026-03-06 17:53.30: Job succeeded