- github
- ocaml
- opam-repository
- c52e39
- extras,opam-2.0-ocaml-4.14,spectrum.1.0.0.alpha2,tests
(not at the head of any monitored branch or PR)
2026-03-21 23:40.11: New job: test spectrum.1.0.0.alpha2, using opam 2.0
from https://github.com/ocaml/opam-repository.git#refs/pull/29581/head (c52e39f11b5df3e4bb74becd6c0b64f6f336b223)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29581/head" && git reset --hard c52e39f1
git fetch origin master
git merge --no-edit 76bf2ed9443fdee37e6f046c6295d358be3f8598
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn spectrum.1.0.0.alpha2 1.0.0.alpha2
RUN opam depext spectrum.1.0.0.alpha2 && opam reinstall spectrum.1.0.0.alpha2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'spectrum.1.0.0.alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam depext --with-test spectrum.1.0.0.alpha2 && opam reinstall --with-test spectrum.1.0.0.alpha2) || true
RUN opam depext --with-test spectrum.1.0.0.alpha2 && opam reinstall --with-test --verbose spectrum.1.0.0.alpha2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'spectrum.1.0.0.alpha2' && 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-21 23:40.11: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-spectrum.1.0.0.alpha2-c52e39f11b5df3e4bb74becd6c0b64f6f336b223"
2026-03-21 23:40.11: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "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 depext -u || true"))
(run (shell "opam pin add -k version -yn spectrum.1.0.0.alpha2 1.0.0.alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext spectrum.1.0.0.alpha2 && opam reinstall spectrum.1.0.0.alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'spectrum.1.0.0.alpha2' && 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 depext --with-test spectrum.1.0.0.alpha2 && opam reinstall --with-test spectrum.1.0.0.alpha2) || true"))
(run (shell "opam depext --with-test spectrum.1.0.0.alpha2 && opam reinstall --with-test --verbose spectrum.1.0.0.alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'spectrum.1.0.0.alpha2' && 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-21 23:40.11: Waiting for resource in pool OCluster
2026-03-21 23:45.56: Waiting for worker…
2026-03-21 23:49.07: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 86% (15947/18514)
Updating files: 87% (16108/18514)
Updating files: 88% (16293/18514)
Updating files: 89% (16478/18514)
Updating files: 90% (16663/18514)
Updating files: 91% (16848/18514)
Updating files: 92% (17033/18514)
Updating files: 93% (17219/18514)
Updating files: 94% (17404/18514)
Updating files: 95% (17589/18514)
Updating files: 96% (17774/18514)
Updating files: 97% (17959/18514)
Updating files: 98% (18144/18514)
Updating files: 99% (18329/18514)
Updating files: 100% (18514/18514)
Updating files: 100% (18514/18514), done.
HEAD is now at 76bf2ed944 Merge pull request #29572 from hannesm/release-letsencrypt-v2.0.0
Updating 76bf2ed944..c52e39f11b
Fast-forward
packages/spectrum/spectrum.1.0.0.alpha2/opam | 52 ++++++++++++++++++++++
.../spectrum_capabilities.1.0.0.alpha2/opam | 43 ++++++++++++++++++
.../spectrum_palette_ppx.1.0.0.alpha2/opam | 45 +++++++++++++++++++
.../spectrum_palettes.1.0.0.alpha2/opam | 42 +++++++++++++++++
.../spectrum_tools.1.0.0.alpha2/opam | 47 +++++++++++++++++++
5 files changed, 229 insertions(+)
create mode 100644 packages/spectrum/spectrum.1.0.0.alpha2/opam
create mode 100644 packages/spectrum_capabilities/spectrum_capabilities.1.0.0.alpha2/opam
create mode 100644 packages/spectrum_palette_ppx/spectrum_palette_ppx.1.0.0.alpha2/opam
create mode 100644 packages/spectrum_palettes/spectrum_palettes.1.0.0.alpha2/opam
create mode 100644 packages/spectrum_tools/spectrum_tools.1.0.0.alpha2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-21 23:49.10 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2026-03-21 23:49.10 ---> using "c343c3c6295981533755a1ca2c0ec379cf8991cedf65b273884f45bb69211880" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.
[WARNING] Recommended dependencies -- most packages rely on these:
- m4
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2026-03-21 23:50.21 ---> saved as "ec37f4969fa389f1d93f40c8a369ba074d0b0e28a83cb92c21189ed51e5fc57b"
/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version 2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-mccs+glpk
# install-criteria -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria -removed,-count[version-lag,solution],-new
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
2026-03-21 23:50.22 ---> saved as "1a5ecbfbfc9582e170b5ac395c88085a6267e6a7a0cc61c500ff92d9b7bd5356"
/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-21 23:50.36 ---> saved as "4b2335df7d21d8b42e5d811648a3c2c1a5799baf41f9d4d77f2f8561cd56c177"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-21 23:51.04 ---> saved as "2f16541f8b08423989d3bdf971c79b75dea6e43efbd617c2c3c3f21b306e041a"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository):
[INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
2026-03-21 23:51.18 ---> saved as "4e0f4c66470f12b6e016ad9e5f9b56724b7d35d57825a12c0482b1504030e8d8"
/home/opam: (run (network host)
(shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "sudo":
apt-get update
Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
Fetched 10.0 MB in 1s (7196 kB/s)
Reading package lists...
# OS package update successful
2026-03-21 23:51.22 ---> saved as "1e0dad57f9c9384bfb592f563445f999f49275b67bbf6bcb98dff72ce4f895b4"
/home/opam: (run (shell "opam pin add -k version -yn spectrum.1.0.0.alpha2 1.0.0.alpha2"))
spectrum is now pinned to version 1.0.0.alpha2
2026-03-21 23:51.23 ---> saved as "cbfb8028f7c4e81015d57b2d88889ce9954e8ceb45d21ac40dac298791d35c1e"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam depext spectrum.1.0.0.alpha2 && opam reinstall spectrum.1.0.0.alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'spectrum.1.0.0.alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
spectrum.1.0.0.alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
- install ocamlbuild 0.16.1 [required by gg]
- install dune 3.22.0 [required by spectrum]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install yojson 3.0.0 [required by spectrum_palette_ppx]
- install swhid_core 0.1 [required by opam-core]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install spdx_licenses 1.4.0 [required by opam-state]
- install sexplib0 v0.17.0 [required by ppxlib]
- install re 1.14.0 [required by spectrum]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install patch 3.1.0 [required by opam-state]
- install opam-file-format 2.1.6 [required by opam-format]
- install ocamlgraph 2.2.0 [required by opam-core]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install cppo 1.8.0 [required by ppx_deriving]
- install topkg 1.1.1 [required by gg]
- install sha 1.15.4 [required by opam-core]
- install ppxlib 0.37.0 [required by ppx_deriving]
- install uutf 1.0.4 [required by opam-core]
- install gg 1.0.0 [required by color, spectrum_tools]
- install ppx_deriving 6.1.1 [required by spectrum]
- install jsonm 1.0.2 [required by opam-core]
- install color 0.3.0 [required by spectrum]
- install oktree 0.2.4 [required by spectrum_palette_ppx]
- install opam-core 2.5.0 [required by opam-format]
- install spectrum_palette_ppx 1.0.0.alpha2 [required by spectrum_palettes, spectrum_tools]
- install opam-format 2.5.0 [required by opam-repository]
- install spectrum_palettes 1.0.0.alpha2 [required by spectrum]
- install opam-repository 2.5.0 [required by opam-state]
- install spectrum_tools 1.0.0.alpha2 [required by spectrum]
- install opam-state 2.5.0 [required by spectrum_capabilities]
- install spectrum_capabilities 1.0.0.alpha2 [required by spectrum]
- install spectrum 1.0.0.alpha2*
===== 33 to install =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[color.0.3.0] found in cache
[cppo.1.8.0] found in cache
[dune.3.22.0] found in cache
[gg.1.0.0] found in cache
[jsonm.1.0.2] found in cache
[ocaml-compiler-libs.v0.12.4] found in cache
[ocamlbuild.0.16.1] found in cache
[ocamlfind.1.9.8] found in cache
[ocamlgraph.2.2.0] found in cache
[oktree.0.2.4] found in cache
[opam-core.2.5.0] found in cache
[opam-file-format.2.1.6] found in cache
[opam-format.2.5.0] found in cache
[opam-repository.2.5.0] found in cache
[opam-state.2.5.0] found in cache
[patch.3.1.0] found in cache
[ppx_derivers.1.2.1] found in cache
[ppx_deriving.6.1.1] found in cache
[ppxlib.0.37.0] found in cache
[re.1.14.0] found in cache
[sexplib0.v0.17.0] found in cache
[sha.1.15.4] found in cache
[spdx_licenses.1.4.0] found in cache
[spectrum.1.0.0.alpha2] found in cache
[spectrum_capabilities.1.0.0.alpha2] found in cache
[spectrum_palette_ppx.1.0.0.alpha2] found in cache
[spectrum_palettes.1.0.0.alpha2] found in cache
[spectrum_tools.1.0.0.alpha2] found in cache
[stdlib-shims.0.3.0] found in cache
[swhid_core.0.1] found in cache
[topkg.1.1.1] found in cache
[uutf.1.0.4] found in cache
[yojson.3.0.0] found in cache
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed jsonm.1.0.2
-> installed gg.1.0.0
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed color.0.3.0
-> installed spdx_licenses.1.4.0
-> installed opam-file-format.2.1.6
-> installed patch.3.1.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed cppo.1.8.0
-> installed re.1.14.0
-> installed ocamlgraph.2.2.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed swhid_core.0.1
-> installed yojson.3.0.0
-> installed sha.1.15.4
-> installed opam-core.2.5.0
-> installed opam-format.2.5.0
-> installed opam-repository.2.5.0
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed opam-state.2.5.0
-> installed oktree.0.2.4
-> installed spectrum_capabilities.1.0.0.alpha2
-> installed spectrum_palette_ppx.1.0.0.alpha2
-> installed spectrum_palettes.1.0.0.alpha2
-> installed spectrum_tools.1.0.0.alpha2
-> installed spectrum.1.0.0.alpha2
Done.
# Run eval $(opam env) to update the current shell environment
2026-03-21 23:53.38 ---> saved as "976ac7bc3b34caf7f55cfa26ddeeab448588363e078bdd3d71bfce8ad717bc87"
/home/opam: (run (network host)
(shell "(opam depext --with-test spectrum.1.0.0.alpha2 && opam reinstall --with-test spectrum.1.0.0.alpha2) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
libx11-dev
libxft-dev
pkg-config
# The following system packages are needed:
The following command needs to be run through "sudo":
apt-get install -qq -yy libx11-dev libxft-dev pkg-config
Preconfiguring packages ...
Selecting previously unselected package bzip2-doc.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
Preparing to unpack .../00-bzip2-doc_1.0.8-6_all.deb ...
Unpacking bzip2-doc (1.0.8-6) ...
Selecting previously unselected package fonts-dejavu-mono.
Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ...
Unpacking fonts-dejavu-mono (2.37-8) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ...
Unpacking fonts-dejavu-core (2.37-8) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../03-fontconfig-config_2.15.0-2.3_amd64.deb ...
Unpacking fontconfig-config (2.15.0-2.3) ...
Selecting previously unselected package libbrotli-dev:amd64.
Preparing to unpack .../04-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
Selecting previously unselected package libbz2-dev:amd64.
Preparing to unpack .../05-libbz2-dev_1.0.8-6_amd64.deb ...
Unpacking libbz2-dev:amd64 (1.0.8-6) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../06-libexpat1-dev_2.7.1-2_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
Selecting previously unselected package libpng16-16t64:amd64.
Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u3_amd64.deb ...
Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../09-libfontconfig1_2.15.0-2.3_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../10-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
Selecting previously unselected package libpng-dev:amd64.
Preparing to unpack .../11-libpng-dev_1.6.48-1+deb13u3_amd64.deb ...
Unpacking libpng-dev:amd64 (1.6.48-1+deb13u3) ...
Selecting previously unselected package libfreetype-dev:amd64.
Preparing to unpack .../12-libfreetype-dev_2.13.3+dfsg-1+deb13u1_amd64.deb ...
Unpacking libfreetype-dev:amd64 (2.13.3+dfsg-1+deb13u1) ...
Selecting previously unselected package uuid-dev:amd64.
Preparing to unpack .../13-uuid-dev_2.41-5_amd64.deb ...
Unpacking uuid-dev:amd64 (2.41-5) ...
Selecting previously unselected package libpkgconf3:amd64.
Preparing to unpack .../14-libpkgconf3_1.8.1-4_amd64.deb ...
Unpacking libpkgconf3:amd64 (1.8.1-4) ...
Selecting previously unselected package pkgconf-bin.
Preparing to unpack .../15-pkgconf-bin_1.8.1-4_amd64.deb ...
Unpacking pkgconf-bin (1.8.1-4) ...
Selecting previously unselected package pkgconf:amd64.
Preparing to unpack .../16-pkgconf_1.8.1-4_amd64.deb ...
Unpacking pkgconf:amd64 (1.8.1-4) ...
Selecting previously unselected package libfontconfig-dev:amd64.
Preparing to unpack .../17-libfontconfig-dev_2.15.0-2.3_amd64.deb ...
Unpacking libfontconfig-dev:amd64 (2.15.0-2.3) ...
Selecting previously unselected package libfontconfig1-dev:amd64.
Preparing to unpack .../18-libfontconfig1-dev_2.15.0-2.3_amd64.deb ...
Unpacking libfontconfig1-dev:amd64 (2.15.0-2.3) ...
Selecting previously unselected package libpng-tools.
Preparing to unpack .../19-libpng-tools_1.6.48-1+deb13u3_amd64.deb ...
Unpacking libpng-tools (1.6.48-1+deb13u3) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../20-libxrender1_1%3a0.9.12-1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.12-1) ...
Selecting previously unselected package libxft2:amd64.
Preparing to unpack .../21-libxft2_2.3.6-1+b4_amd64.deb ...
Unpacking libxft2:amd64 (2.3.6-1+b4) ...
Selecting previously unselected package libxrender-dev:amd64.
Preparing to unpack .../22-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
Selecting previously unselected package libxft-dev:amd64.
Preparing to unpack .../23-libxft-dev_2.3.6-1+b4_amd64.deb ...
Unpacking libxft-dev:amd64 (2.3.6-1+b4) ...
Selecting previously unselected package pkg-config:amd64.
Preparing to unpack .../24-pkg-config_1.8.1-4_amd64.deb ...
Unpacking pkg-config:amd64 (1.8.1-4) ...
Setting up bzip2-doc (1.0.8-6) ...
Setting up libxrender1:amd64 (1:0.9.12-1) ...
Setting up libpkgconf3:amd64 (1.8.1-4) ...
Setting up libexpat1-dev:amd64 (2.7.1-2) ...
Setting up uuid-dev:amd64 (2.41-5) ...
Setting up fonts-dejavu-mono (2.37-8) ...
Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
Setting up fonts-dejavu-core (2.37-8) ...
Setting up pkgconf-bin (1.8.1-4) ...
Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
Setting up libxrender-dev:amd64 (1:0.9.12-1) ...
Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
Setting up libbz2-dev:amd64 (1.0.8-6) ...
Setting up libpng-tools (1.6.48-1+deb13u3) ...
Setting up fontconfig-config (2.15.0-2.3) ...
Setting up libpng-dev:amd64 (1.6.48-1+deb13u3) ...
Setting up pkgconf:amd64 (1.8.1-4) ...
Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
Setting up pkg-config:amd64 (1.8.1-4) ...
Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
Setting up libxft2:amd64 (2.3.6-1+b4) ...
Setting up libfreetype-dev:amd64 (2.13.3+dfsg-1+deb13u1) ...
Setting up libfontconfig-dev:amd64 (2.15.0-2.3) ...
Setting up libxft-dev:amd64 (2.3.6-1+b4) ...
Setting up libfontconfig1-dev:amd64 (2.15.0-2.3) ...
Processing triggers for libc-bin (2.41-12+deb13u1) ...
# OS packages installation successful
The following actions will be performed:
- install ptime 1.2.0 [required by junit]
- install cmdliner 2.1.0 [required by alcotest]
- install astring 0.8.5 [required by alcotest]
- install qcheck-core 0.91 [required by qcheck-alcotest]
- install seq base [required by tyxml]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- recompile uutf 1.0.4 [uses cmdliner]
- install tyxml 4.6.0 [required by junit]
- install alcotest 1.9.1 [required by spectrum]
- recompile jsonm 1.0.2 [uses uutf]
- install junit 2.3.0 [required by junit_alcotest]
- install qcheck-alcotest 0.91 [required by spectrum]
- recompile opam-core 2.5.0 [uses uutf]
- install junit_alcotest 2.3.0 [required by spectrum]
- recompile opam-format 2.5.0 [uses opam-core]
- recompile opam-repository 2.5.0 [uses opam-format]
- recompile opam-state 2.5.0 [uses opam-repository]
- recompile spectrum_capabilities 1.0.0.alpha2 [uses opam-state]
- recompile spectrum 1.0.0.alpha2*
===== 12 to install | 8 to recompile =====
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[alcotest.1.9.1] downloaded from cache at https://opam.ocaml.org/cache
[astring.0.8.5] downloaded from cache at https://opam.ocaml.org/cache
[cmdliner.2.1.0] downloaded from cache at https://opam.ocaml.org/cache
[fmt.0.11.0] downloaded from cache at https://opam.ocaml.org/cache
[jsonm.1.0.2] downloaded from cache at https://opam.ocaml.org/cache
[junit.2.3.0] downloaded from cache at https://opam.ocaml.org/cache
[junit_alcotest.2.3.0] found in cache
[ocaml-syntax-shims.1.0.0] downloaded from cache at https://opam.ocaml.org/cache
[opam-core.2.5.0] downloaded from cache at https://opam.ocaml.org/cache
[opam-format.2.5.0] found in cache
[opam-repository.2.5.0] found in cache
[opam-state.2.5.0] found in cache
[ptime.1.2.0] downloaded from cache at https://opam.ocaml.org/cache
[qcheck-alcotest.0.91] downloaded from cache at https://opam.ocaml.org/cache
[qcheck-core.0.91] found in cache
[seq.base/META.seq] downloaded from https://opam.ocaml.org/cache
[seq.base/seq.install] downloaded from https://opam.ocaml.org/cache
[spectrum_capabilities.1.0.0.alpha2] downloaded from https://github.com/anentropic/ocaml-spectrum/archive/refs/tags/1.0.0.alpha2.tar.gz
[tyxml.4.6.0] downloaded from cache at https://opam.ocaml.org/cache
[uutf.1.0.4] downloaded from cache at https://opam.ocaml.org/cache
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed seq.base
-> installed astring.0.8.5
-> installed ocaml-syntax-shims.1.0.0
-> installed ptime.1.2.0
-> installed qcheck-core.0.91
-> removed spectrum.1.0.0.alpha2
-> removed spectrum_capabilities.1.0.0.alpha2
-> removed opam-state.2.5.0
-> removed opam-repository.2.5.0
-> removed opam-format.2.5.0
-> removed opam-core.2.5.0
-> removed jsonm.1.0.2
-> removed uutf.1.0.4
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed jsonm.1.0.2
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.91
-> installed tyxml.4.6.0
-> installed junit.2.3.0
-> installed junit_alcotest.2.3.0
-> installed opam-core.2.5.0
-> installed opam-format.2.5.0
-> installed opam-repository.2.5.0
-> installed opam-state.2.5.0
-> installed spectrum_capabilities.1.0.0.alpha2
-> installed spectrum.1.0.0.alpha2
Done.
# Run eval $(opam env) to update the current shell environment
2026-03-21 23:55.03 ---> saved as "3d9a4542d3486efe9c3d4e3ab77ddc6578d1f5e2ae967682672ecedd25d50bd9"
/home/opam: (run (shell "opam depext --with-test spectrum.1.0.0.alpha2 && opam reinstall --with-test --verbose spectrum.1.0.0.alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'spectrum.1.0.0.alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# The following system packages are needed:
libx11-dev
libxft-dev
pkg-config
# All required OS packages found.
The following actions will be performed:
- recompile spectrum 1.0.0.alpha2*
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [spectrum: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "spectrum" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/spectrum.1.0.0.alpha2)
- (cd _build/default/lib/spectrum/test && ./test_properties.exe)
- qcheck random seed: 187860083
- Testing `Properties (spectrum)'.
- This run has ID `0BBWNEJ0'.
-
- [OK] Parser/Lexer properties 0 Style.of_string is case-...
- [OK] Parser/Lexer properties 1 compound tag: style,colo...
- [OK] Parser/Lexer properties 2 valid 6-digit hex tags a...
- [OK] Parser/Lexer properties 3 FORCE_COLOR: values 0->1...
- [OK] Parser/Lexer properties 4 non-TTY without FORCE_CO...
- [OK] Parser/Lexer properties 5 Stag produces same outpu...
-
- Full test results in `~/.opam/4.14/.opam-switch/build/spectrum.1.0.0.alpha2/_build/default/lib/spectrum/test/_build/_tests/Properties U+0028spectrumU+0029'.
- Test Successful in 0.041s. 6 tests run.
- (cd _build/default/lib/spectrum/test && ./test_serializers.exe)
- Testing `Serializers'.
- This run has ID `EZ10RU5D'.
-
- [OK] Capability-based output 0 serializer outputs.
- [OK] Empty token list 0 all serializers.
- [OK] Style controls 0 styles across serializers.
- [OK] Foreground colors 0 foreground RGB.
- [OK] Background colors 0 background RGB.
- [OK] Named colors 0 xterm256 named.
- [OK] Named colors 1 basic named.
- [OK] Multiple tokens 0 compound token list.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/spectrum.1.0.0.alpha2/_build/default/lib/spectrum/test/_build/_tests/Serializers'.
- Test Successful in 0.005s. 8 tests run.
- (cd _build/default/lib/spectrum/test && ./test_printer.exe)
- Testing `Printer'.
- This run has ID `E3R58GUM'.
-
- [OK] Exn Simple: Single style 0 Bold.
- [OK] Exn Simple: Single style 1 Bold (case-insensiti...
- [OK] Exn Simple: Single style 2 Rapid blink.
- [OK] Exn Simple: Single colour 0 Named (foreground): ...
- [OK] Exn Simple: Single colour 1 Named (foreground): ...
- [OK] Exn Simple: Single colour 2 Hex (foreground): FC9.
- [OK] Exn Simple: Single colour 3 Hex (foreground): f0...
- [OK] Exn Simple: Single colour 4 Named (background): ...
- [OK] Exn Simple: Single colour 5 Hex (background): FC9.
- [OK] Exn Simple: Single colour 6 Hex (background): f0...
- [OK] Exn Simple: Single colour 7 rgb(9, 21, 231).
- [OK] Exn Simple: Single colour 8 hsl(75 100 50).
- [OK] Exn Simple: Single colour 9 hsl(75 100% 50%).
- [OK] Exn Simple: Nested 0 0-3-0 tag stack.
- [OK] Exn Simple: Nested 1 0-5-0 deep nesting.
- [OK] Exn Simple: Format args 0 One string arg.
- [OK] Noexn Simple: Single style 0 Bold.
- [OK] Noexn Simple: Single style 1 Bold (case-insensiti...
- [OK] Noexn Simple: Single style 2 Rapid blink.
- [OK] Noexn Simple: Single colour 0 Named (foreground): ...
- [OK] Noexn Simple: Single colour 1 Named (foreground): ...
- [OK] Noexn Simple: Single colour 2 Hex (foreground): FC9.
- [OK] Noexn Simple: Single colour 3 Hex (foreground): f0...
- [OK] Noexn Simple: Single colour 4 Named (background): ...
- [OK] Noexn Simple: Single colour 5 Hex (background): FC9.
- [OK] Noexn Simple: Single colour 6 Hex (background): f0...
- [OK] Noexn Simple: Single colour 7 rgb(9, 21, 231).
- [OK] Noexn Simple: Single colour 8 hsl(75 100 50).
- [OK] Noexn Simple: Single colour 9 hsl(75 100% 50%).
- [OK] Noexn Simple: Nested 0 0-3-0 tag stack.
- [OK] Noexn Simple: Nested 1 0-5-0 deep nesting.
- [OK] Noexn Simple: Format args 0 One string arg.
- [OK] Exn Format: Single style 0 Bold.
- [OK] Exn Format: Single style 1 Bold (case-insensiti...
- [OK] Exn Format: Single style 2 Rapid blink.
- [OK] Exn Format: Single colour 0 Named (foreground): ...
- [OK] Exn Format: Single colour 1 Named (foreground): ...
- [OK] Exn Format: Single colour 2 Hex (foreground): FC9.
- [OK] Exn Format: Single colour 3 Hex (foreground): f0...
- [OK] Exn Format: Single colour 4 Named (background): ...
- [OK] Exn Format: Single colour 5 Hex (background): FC9.
- [OK] Exn Format: Single colour 6 Hex (background): f0...
- [OK] Exn Format: Single colour 7 rgb(9, 21, 231).
- [OK] Exn Format: Single colour 8 hsl(75 100 50).
- [OK] Exn Format: Single colour 9 hsl(75 100% 50%).
- [OK] Exn Format: Nested 0 0-3-0 tag stack.
- [OK] Exn Format: Nested 1 0-5-0 deep nesting.
- [OK] Exn Format: Format args 0 One string arg.
- [OK] Noexn Format: Single style 0 Bold.
- [OK] Noexn Format: Single style 1 Bold (case-insensiti...
- [OK] Noexn Format: Single style 2 Rapid blink.
- [OK] Noexn Format: Single colour 0 Named (foreground): ...
- [OK] Noexn Format: Single colour 1 Named (foreground): ...
- [OK] Noexn Format: Single colour 2 Hex (foreground): FC9.
- [OK] Noexn Format: Single colour 3 Hex (foreground): f0...
- [OK] Noexn Format: Single colour 4 Named (background): ...
- [OK] Noexn Format: Single colour 5 Hex (background): FC9.
- [OK] Noexn Format: Single colour 6 Hex (background): f0...
- [OK] Noexn Format: Single colour 7 rgb(9, 21, 231).
- [OK] Noexn Format: Single colour 8 hsl(75 100 50).
- [OK] Noexn Format: Single colour 9 hsl(75 100% 50%).
- [OK] Noexn Format: Nested 0 0-3-0 tag stack.
- [OK] Noexn Format: Nested 1 0-5-0 deep nesting.
- [OK] Noexn Format: Format args 0 One string arg.
- [OK] Exn: Invalid tags 0 Invalid color name (...
- [OK] Exn: Invalid tags 1 Invalid color name (...
- [OK] Exn: Invalid tags 2 Invalid color name (...
- [OK] Exn: Invalid tags 3 Invalid color name.
- [OK] Exn: Invalid tags 4 Invalid tag (not mat...
- [OK] Exn: Invalid tags 5 Invalid color name (...
- [OK] Exn: Invalid tags 6 Invalid tag (not mat...
- [OK] Exn: Invalid tags 7 Invalid color name (...
- [OK] Noexn: Invalid tags 0 Invalid color name (...
- [OK] Noexn: Invalid tags 1 Invalid color name (...
- [OK] Noexn: Invalid tags 2 Invalid color name (...
- [OK] Noexn: Invalid tags 3 Invalid color name.
- [OK] Noexn: Invalid tags 4 Invalid tag (not mat...
- [OK] Noexn: Invalid tags 5 Invalid color name (...
- [OK] Noexn: Invalid tags 6 Invalid tag (not mat...
- [OK] Noexn: Invalid tags 7 Invalid color name (...
- [OK] Noexn: Invalid tags 8 Recovery after inval...
-
- Full test results in `~/.opam/4.14/.opam-switch/build/spectrum.1.0.0.alpha2/_build/default/lib/spectrum/test/_build/_tests/Printer'.
- Test Successful in 0.024s. 81 tests run.
- (cd _build/default/lib/spectrum/test && ./test_parser.exe)
- Testing `Parser'.
- This run has ID `A1UTCUOM'.
-
- [OK] Style - Valid names 0 all valid style...
- [OK] Style - Invalid names 0 unknown and emp...
- [OK] Style - Invalid names 1 case insensitiv...
- [OK] Style - Code mapping 0 all styles to c...
- [OK] Colors - Named 0 valid xterm256 ...
- [OK] Colors - Named 1 invalid color n...
- [OK] Colors - Hex 0 valid hex formats.
- [OK] Colors - Hex 1 invalid hex for...
- [OK] Colors - RGB 0 valid RGB values.
- [OK] Colors - RGB 1 out of range RG...
- [OK] Colors - HSL 0 valid HSL values.
- [OK] Colors - HSL 1 out of range HS...
- [OK] Qualified colors 0 None qualifier ...
- [OK] Qualified colors 1 fg qualifier.
- [OK] Qualified colors 2 bg qualifier.
- [OK] Qualified colors 3 invalid qualifier.
- [OK] Token aggregation - Empty/Single 0 empty token list.
- [OK] Token aggregation - Empty/Single 1 single control.
- [OK] Token aggregation - Controls 0 multiple differ...
- [OK] Token aggregation - Controls 1 duplicate contr...
- [OK] Token aggregation - Colors 0 foreground color.
- [OK] Token aggregation - Colors 1 background color.
- [OK] Token aggregation - Colors 2 both colors.
- [OK] Token aggregation - Colors 3 multiple fg col...
- [OK] Token aggregation - Mixed 0 mixed controls ...
- [OK] RGBA conversion 0 color to rgba.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/spectrum.1.0.0.alpha2/_build/default/lib/spectrum/test/_build/_tests/Parser'.
- Test Successful in 0.012s. 26 tests run.
- (cd _build/default/lib/spectrum/test && ./test_lexer.exe)
- Testing `Lexer'.
- This run has ID `XV0C49SY'.
-
- [OK] Styles 0 Bold.
- [OK] Styles 1 Rapid blink.
- [OK] Styles 2 Overline.
- [OK] Named colors 0 Foreground (im...
- [OK] Named colors 1 Foreground (ex...
- [OK] Named colors 2 Background (ex...
- [OK] Named colors 3 Foreground (im...
- [OK] Named colors 4 Foreground (ex...
- [OK] Named colors 5 Background (ex...
- [OK] Compound (manually-defined tests) 0 red, bold, bg ...
- [OK] Compound (manually-defined tests) 1 ignores whites...
- [OK] Compound tags from named colors 0 Red,Underline.
- [OK] Compound tags from named colors 1 Underline,Red.
- [OK] Compound tags from named colors 2 Bg Red,Underline.
- [OK] Compound tags from named colors 3 Underline,Bg Red.
- [OK] Compound tags from named colors 4 dark-olive-gre...
- [OK] Compound tags from named colors 5 Bold,dark-oliv...
- [OK] Compound tags from named colors 6 Red,Underline,...
- [OK] Compound tags from named colors 7 Underline,Red,...
- [OK] Compound tags from named colors 8 Underline,Bg R...
- [OK] Compound tags from named colors 9 Underline,Bg R...
- [OK] Compound tags from named colors 10 Red,Bg Red,Und...
- [OK] Compound tags from named colors 11 Bg Red,Red,Und...
- [OK] Compound tags from named colors 12 Bg Red,Underli...
- [OK] Compound tags from named colors 13 Bg Red,Underli...
- [OK] Compound tags from named colors 14 Red,Bg Red,Bol...
- [OK] Compound tags from named colors 15 Bg Red,Red,Bol...
- [OK] Compound tags from named colors 16 Bg Red,Bold,Re...
- [OK] Compound tags from named colors 17 Bg Red,Bold,Un...
- [OK] Compound tags from named colors 18 Red,Underline,...
- [OK] Compound tags from named colors 19 Underline,Red,...
- [OK] Compound tags from named colors 20 Underline,Bold...
- [OK] Compound tags from named colors 21 Underline,Bold...
- [OK] Compound tags from named colors 22 Red,Bold,Under...
- [OK] Compound tags from named colors 23 Bold,Red,Under...
- [OK] Compound tags from named colors 24 Bold,Underline...
- [OK] Compound tags from named colors 25 Bold,Underline...
- [OK] Compound tags from named colors 26 Red,Bold,Bg Re...
- [OK] Compound tags from named colors 27 Bold,Red,Bg Re...
- [OK] Compound tags from named colors 28 Bold,Bg Red,Re...
- [OK] Compound tags from named colors 29 Bold,Bg Red,Un...
- [OK] Hex colors 0 Foreground (im...
- [OK] Hex colors 1 Foreground (ex...
- [OK] Hex colors 2 Background (ex...
- [OK] Hex colors 3 Foreground (im...
- [OK] Hex colors 4 Foreground (ex...
- [OK] Hex colors 5 Background (ex...
- [OK] Hex colors 6 Foreground (im...
- [OK] Hex colors 7 Foreground (ex...
- [OK] Hex colors 8 Background (ex...
- [OK] Hex colors 9 Foreground (im...
- [OK] Hex colors 10 Foreground (ex...
- [OK] Hex colors 11 Background (ex...
- [OK] Compound tags from hex colors 0 #F00,Underline.
- [OK] Compound tags from hex colors 1 Underline,#F00.
- [OK] Compound tags from hex colors 2 Bg #f0c090,Bold.
- [OK] Compound tags from hex colors 3 Bold,Bg #f0c090.
- [OK] Compound tags from hex colors 4 #F00,Underline...
- [OK] Compound tags from hex colors 5 Underline,#F00...
- [OK] Compound tags from hex colors 6 Underline,Bg #...
- [OK] Compound tags from hex colors 7 Underline,Bg #...
- [OK] Compound tags from hex colors 8 #F00,Bg #f0c09...
- [OK] Compound tags from hex colors 9 Bg #f0c090,#F0...
- [OK] Compound tags from hex colors 10 Bg #f0c090,Und...
- [OK] Compound tags from hex colors 11 Bg #f0c090,Und...
- [OK] Compound tags from hex colors 12 #F00,Bg #f0c09...
- [OK] Compound tags from hex colors 13 Bg #f0c090,#F0...
- [OK] Compound tags from hex colors 14 Bg #f0c090,Bol...
- [OK] Compound tags from hex colors 15 Bg #f0c090,Bol...
- [OK] Compound tags from hex colors 16 #F00,Underline...
- [OK] Compound tags from hex colors 17 Underline,#F00...
- [OK] Compound tags from hex colors 18 Underline,Bold...
- [OK] Compound tags from hex colors 19 Underline,Bold...
- [OK] Compound tags from hex colors 20 #F00,Bold,Unde...
- [OK] Compound tags from hex colors 21 Bold,#F00,Unde...
- [OK] Compound tags from hex colors 22 Bold,Underline...
- [OK] Compound tags from hex colors 23 Bold,Underline...
- [OK] Compound tags from hex colors 24 #F00,Bold,Bg #...
- [OK] Compound tags from hex colors 25 Bold,#F00,Bg #...
- [OK] Compound tags from hex colors 26 Bold,Bg #f0c09...
- [OK] Compound tags from hex colors 27 Bold,Bg #f0c09...
- [OK] RGB colors 0 Fg (implicit):...
- [OK] RGB colors 1 Fg (implicit):...
- [OK] RGB colors 2 Fg (implicit):...
- [OK] RGB colors 3 Fg (explicit):...
- [OK] RGB colors 4 Bg (explicit):...
- [OK] RGB colors 5 Fg (explicit):...
- [OK] RGB colors 6 Fg (explicit):...
- [OK] HSL colors 0 Fg (implicit):...
- [OK] HSL colors 1 Fg (implicit):...
- [OK] HSL colors 2 Fg (implicit):...
- [OK] HSL colors 3 Fg (explicit):...
- [OK] HSL colors 4 Bg (explicit):...
- [OK] HSL colors 5 Fg (explicit):...
- [OK] HSL colors 6 Fg (explicit):...
- [OK] HSL colors 7 Fg (explicit):...
- [OK] HSL colors 8 Fg (explicit):...
- [OK] HSL colors 9 Fg (implicit):...
- [OK] Invalid tags 0 Invalid color ...
- [OK] Invalid tags 1 Invalid color ...
- [OK] Invalid tags 2 Invalid color ...
- [OK] Invalid tags 3 Invalid color ...
- [OK] Invalid tags 4 Invalid tag (n...
- [OK] Invalid tags 5 Invalid color ...
- [OK] Invalid tags 6 Invalid rgb co...
- [OK] Invalid tags 7 Invalid color ...
- [OK] Invalid tags 8 Invalid color ...
- [OK] Invalid tags 9 Invalid hsl co...
- [OK] Invalid tags 10 Invalid color ...
- [OK] Invalid tags 11 Invalid color ...
- [OK] Invalid tags 12 Invalid tag (n...
- [OK] Invalid tags 13 Invalid color ...
-
- Full test results in `~/.opam/4.14/.opam-switch/build/spectrum.1.0.0.alpha2/_build/default/lib/spectrum/test/_build/_tests/Lexer'.
- Test Successful in 0.020s. 112 tests run.
- (cd _build/default/lib/spectrum/test && ./test_stag.exe)
- Testing `Stag'.
- This run has ID `1VT4E8FM'.
-
- [OK] Styles 0 Bold.
- [OK] Styles 1 Dim.
- [OK] Styles 2 Italic.
- [OK] Styles 3 Underline.
- [OK] Styles 4 Blink.
- [OK] Styles 5 RapidBlink.
- [OK] Styles 6 Inverse.
- [OK] Styles 7 Hidden.
- [OK] Styles 8 Strikethru.
- [OK] Styles 9 Overline.
- [OK] Foreground colors 0 Named: red.
- [OK] Foreground colors 1 Hex short: FC9.
- [OK] Foreground colors 2 Hex long: f0c090.
- [OK] Foreground colors 3 Rgb: (9, 21, 231).
- [OK] Foreground colors 4 Hsl: (75, 100, 50).
- [OK] Background colors 0 Named: red.
- [OK] Background colors 1 Hex: FC9.
- [OK] Background colors 2 Rgb: (0, 0, 255).
- [OK] Compound tags 0 Bold + Fg.
- [OK] Compound tags 1 Bold + Fg + Bg.
- [OK] Nesting 0 Nested stags.
- [OK] Mixed stag and string tags 0 Stag then string tag.
- [OK] Error handling 0 Invalid color name.
- [OK] Error handling 1 Invalid hex.
- [OK] Error handling 2 Invalid RGB range.
-
- Full test results in `~/.opam/4.14/.opam-switch/build/spectrum.1.0.0.alpha2/_build/default/lib/spectrum/test/_build/_tests/Stag'.
- Test Successful in 0.006s. 25 tests run.
-> compiled spectrum.1.0.0.alpha2
-> removed spectrum.1.0.0.alpha2
-> installed spectrum.1.0.0.alpha2
Done.
# Run eval $(opam env) to update the current shell environment
2026-03-21 23:55.34 ---> saved as "3a7eaecc9a4243696f0ea13b52c93dcb4bc4019b20a9393f19a57c9baef51ab3"
Job succeeded
2026-03-21 23:56.10: Job succeeded