Build:
- 0
2026-01-11 16:16.00: New job: test art.0.3.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29208/head (70a5ab9e9ed05229ac91502f2531fa702bc45c46)
on ubuntu-24.04-ocaml-5.4/riscv64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29208/head" && git reset --hard 70a5ab9e
git fetch origin master
git merge --no-edit 9494b89e2b7e50e5ddf5a9bd4da0253ae3b959b9
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9bff552cb5ef016775fbc2b089a0ba3bfe8e32856b8ce728e3dd5e03628c74f9
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 art.0.3.0 0.3.0
RUN opam reinstall art.0.3.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'art.0.3.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 art.0.3.0) || true
RUN opam reinstall --with-test --verbose art.0.3.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 "\"ubuntu-24.04\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'art.0.3.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-01-11 16:16.00: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9bff552cb5ef016775fbc2b089a0ba3bfe8e32856b8ce728e3dd5e03628c74f9-art.0.3.0-70a5ab9e9ed05229ac91502f2531fa702bc45c46"
2026-01-11 16:16.00: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9bff552cb5ef016775fbc2b089a0ba3bfe8e32856b8ce728e3dd5e03628c74f9)
(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 art.0.3.0 0.3.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall art.0.3.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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'art.0.3.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 art.0.3.0) || true"))
(run (shell "opam reinstall --with-test --verbose art.0.3.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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'art.0.3.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-01-11 16:16.00: Waiting for resource in pool OCluster
2026-01-11 16:16.01: Waiting for worker…
2026-01-12 00:09.00: Got resource from pool OCluster
Building on riscv-bm-02.sw.ci.dev
All commits already cached
Updating files: 14% (2686/19170)
Updating files: 15% (2876/19170)
Updating files: 16% (3068/19170)
Updating files: 17% (3259/19170)
Updating files: 18% (3451/19170)
Updating files: 19% (3643/19170)
Updating files: 20% (3834/19170)
Updating files: 21% (4026/19170)
Updating files: 22% (4218/19170)
Updating files: 23% (4410/19170)
Updating files: 24% (4601/19170)
Updating files: 25% (4793/19170)
Updating files: 26% (4985/19170)
Updating files: 27% (5176/19170)
Updating files: 27% (5262/19170)
Updating files: 28% (5368/19170)
Updating files: 29% (5560/19170)
Updating files: 30% (5751/19170)
Updating files: 31% (5943/19170)
Updating files: 32% (6135/19170)
Updating files: 33% (6327/19170)
Updating files: 34% (6518/19170)
Updating files: 35% (6710/19170)
Updating files: 36% (6902/19170)
Updating files: 37% (7093/19170)
Updating files: 38% (7285/19170)
Updating files: 39% (7477/19170)
Updating files: 40% (7668/19170)
Updating files: 41% (7860/19170)
Updating files: 41% (7898/19170)
Updating files: 42% (8052/19170)
Updating files: 43% (8244/19170)
Updating files: 44% (8435/19170)
Updating files: 45% (8627/19170)
Updating files: 46% (8819/19170)
Updating files: 47% (9010/19170)
Updating files: 48% (9202/19170)
Updating files: 49% (9394/19170)
Updating files: 50% (9585/19170)
Updating files: 51% (9777/19170)
Updating files: 52% (9969/19170)
Updating files: 53% (10161/19170)
Updating files: 53% (10263/19170)
Updating files: 54% (10352/19170)
Updating files: 55% (10544/19170)
Updating files: 56% (10736/19170)
Updating files: 57% (10927/19170)
Updating files: 58% (11119/19170)
Updating files: 59% (11311/19170)
Updating files: 60% (11502/19170)
Updating files: 61% (11694/19170)
Updating files: 62% (11886/19170)
Updating files: 63% (12078/19170)
Updating files: 64% (12269/19170)
Updating files: 65% (12461/19170)
Updating files: 65% (12612/19170)
Updating files: 66% (12653/19170)
Updating files: 67% (12844/19170)
Updating files: 68% (13036/19170)
Updating files: 69% (13228/19170)
Updating files: 70% (13419/19170)
Updating files: 71% (13611/19170)
Updating files: 72% (13803/19170)
Updating files: 73% (13995/19170)
Updating files: 74% (14186/19170)
Updating files: 75% (14378/19170)
Updating files: 76% (14570/19170)
Updating files: 77% (14761/19170)
Updating files: 77% (14913/19170)
Updating files: 78% (14953/19170)
Updating files: 79% (15145/19170)
Updating files: 80% (15336/19170)
Updating files: 81% (15528/19170)
Updating files: 82% (15720/19170)
Updating files: 83% (15912/19170)
Updating files: 84% (16103/19170)
Updating files: 85% (16295/19170)
Updating files: 86% (16487/19170)
Updating files: 87% (16678/19170)
Updating files: 88% (16870/19170)
Updating files: 89% (17062/19170)
Updating files: 90% (17253/19170)
Updating files: 90% (17292/19170)
Updating files: 91% (17445/19170)
Updating files: 92% (17637/19170)
Updating files: 93% (17829/19170)
Updating files: 94% (18020/19170)
Updating files: 95% (18212/19170)
Updating files: 96% (18404/19170)
Updating files: 97% (18595/19170)
Updating files: 98% (18787/19170)
Updating files: 99% (18979/19170)
Updating files: 100% (19170/19170)
Updating files: 100% (19170/19170), done.
HEAD is now at 9494b89e2b Merge pull request #29194 from jeong-sik/qdrant.0.1.0
Updating 9494b89e2b..70a5ab9e9e
Fast-forward
packages/art/art.0.3.0/opam | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
create mode 100644 packages/art/art.0.3.0/opam
(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:9bff552cb5ef016775fbc2b089a0ba3bfe8e32856b8ce728e3dd5e03628c74f9)
2026-01-12 00:09.12 ---> using "689ddea16ea907d91a71afb5843fb8b44a64bac032a0ba733eaa3efb6356e0e9" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-12 00:09.12 ---> using "c813c95b19ffe348086e9ccc0b7aeeaf4f84e446b2024854ed2278424d70ab2e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-12 00:09.12 ---> using "16ac455a0976715e257ed15ea28f29c99c775e93c95e6fa58fcd42c58ea86af6" 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=riscv64 os=linux os-distribution=ubuntu os-version=24.04
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 3
# 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-01-12 00:09.12 ---> using "610ff6510bf4b82f4135632b13314104b111bca132a68c35eae3b521d15c7d4e" 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-01-12 00:09.12 ---> using "2b6a2b19b669bec7bee8b7e9ecc92ede7dc888197d5c163cee03b649b5d8f0f1" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-12 00:09.18 ---> using "a7953f4a5fb7dd695d978b27231eaa9a0c17883dbe0be2613ff347b9b1f9c812" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-12 00:09.18 ---> using "8212dbc7ce4f553dc4aec956da520f0e0698ca793dc66c51154bac253682f6a5" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://ports.ubuntu.com/ubuntu-ports noble InRelease
- Get:2 http://ports.ubuntu.com/ubuntu-ports noble-updates InRelease [126 kB]
- Get:3 http://ports.ubuntu.com/ubuntu-ports noble-backports InRelease [126 kB]
- Get:4 http://ports.ubuntu.com/ubuntu-ports noble-security InRelease [126 kB]
- Get:5 http://ports.ubuntu.com/ubuntu-ports noble-updates/main riscv64 Packages [901 kB]
- Get:6 http://ports.ubuntu.com/ubuntu-ports noble-updates/universe riscv64 Packages [1469 kB]
- Get:7 http://ports.ubuntu.com/ubuntu-ports noble-security/universe riscv64 Packages [926 kB]
- Get:8 http://ports.ubuntu.com/ubuntu-ports noble-security/main riscv64 Packages [580 kB]
- Fetched 4255 kB in 2s (2054 kB/s)
- Reading package lists...
-
2026-01-12 00:09.18 ---> using "fd326e7de9635173d9fe30e0274c3e5fdca2dd6a9232b0fcf04711556ca1fd04" from cache
/home/opam: (run (shell "opam pin add -k version -yn art.0.3.0 0.3.0"))
art is now pinned to version 0.3.0
2026-01-12 00:09.18 ---> using "6b2a026b2723c446facf06b6efb3549a8fcede267248f9a7f8c1a6ad8eb2b6d1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall art.0.3.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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'art.0.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
art.0.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install art 0.3.0 (pinned)
- install dune 3.20.2 [required by art]
- install fmt 0.11.0 [required by art]
- install ocamlbuild 0.16.1 [required by fmt]
- install ocamlfind 1.9.8 [required by fmt]
- install topkg 1.1.1 [required by fmt]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved art.0.3.0 (https://github.com/dinosaure/art/releases/download/v0.3.0/art-0.3.0.tbz)
-> retrieved dune.3.20.2 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed dune.3.20.2
-> installed art.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-12 00:09.18 ---> using "83ffd41b91ab61d2a70fd212877dbee11dee0d76740f48ec462f2784d02d34b5" from cache
/home/opam: (run (network host)
(shell "(opam reinstall --with-test art.0.3.0) || true"))
The following actions will be performed:
=== recompile 2 packages
- recompile art 0.3.0 (pinned)
- recompile fmt 0.11.0 [uses cmdliner]
=== install 11 packages
- install afl-persistent 1.4 [required by crowbar, monolith]
- install alcotest 1.9.1 [required by art]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest, crowbar]
- install crowbar 0.2.2 [required by art]
- install monolith 20250922 [required by art]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install pprint 20230830 [required by monolith]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.4 (https://opam.ocaml.org/cache)
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> installed afl-persistent.1.4
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved crowbar.0.2.2 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved monolith.20250922 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved pprint.20230830 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> installed pprint.20230830
-> installed ocaml-syntax-shims.1.0.0
-> installed monolith.20250922
-> installed re.1.14.0
-> installed stdlib-shims.0.3.0
-> removed art.0.3.0
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed crowbar.0.2.2
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
-> installed art.0.3.0
Done.
<><> afl-persistent.1.4 installed successfully ><><><><><><><><><><><><><><><><>
=> afl-persistent is installed, but since the current OCaml compiler does
not enable AFL instrumentation by default, most packages will not be
instrumented and fuzzing with afl-fuzz may not be effective.
To globally enable AFL instrumentation, create an OCaml switch like:
opam switch create 5.4.0+afl ocaml-variants.5.4.0+options ocaml-option-afl
# To update the current shell environment, run: eval $(opam env)
2026-01-12 00:10.43 ---> saved as "c2453e135d7bd08d06bf041ce6b0820ca6d9ab7086b4a5d087b204c630848637"
/home/opam: (run (shell "opam reinstall --with-test --verbose art.0.3.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 \"\\\"ubuntu-24.04\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'art.0.3.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 art 0.3.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [art: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "art" "-j" "3" (CWD=/home/opam/.opam/5.4/.opam-switch/build/art.0.3.0)
Processing 2/4: [art: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "art" "-j" "3" (CWD=/home/opam/.opam/5.4/.opam-switch/build/art.0.3.0)
- (cd _build/default/fuzz && ./fuzz.exe)
- art0: PASS
-
- art1: PASS
-
- art2: PASS
-
- art/minimum: PASS
-
- art/remove0: PASS
-
- art/remove1: PASS
-
- (cd _build/default/test && ./test.exe --color=always)
- Testing `art'.
- This run has ID `60CMGK6E'.
-
- [OK] art 0 test01.
- [OK] art 1 test02.
- [OK] art 2 test03.
- [OK] art 3 test04.
- [OK] art 4 test05.
- [OK] art 5 test06.
- [OK] art 6 test07.
- [OK] art 7 test08.
- [OK] art 8 test09.
- [OK] art 9 test10.
- [OK] art 10 test11.
- [OK] art 11 test12.
- [OK] art 12 test13.
- [OK] art 13 test14.
- [OK] art 14 test15.
- [OK] art 15 test31.
- [OK] art 16 test35.
- [OK] art 17 test36.
- [OK] art 18 test38.
- [OK] art 19 test39.
- [OK] minimum 0 test16.
- [OK] minimum 1 test17.
- [OK] minimum 2 test18.
- [OK] minimum 3 test19.
- [OK] minimum 4 test20.
- [OK] remove 0 test21.
- [OK] remove 1 test22.
- [OK] remove 2 test23.
- [OK] remove 3 test24.
- [OK] remove 4 test25.
- [OK] remove 5 test26.
- [OK] remove 6 test27.
- [OK] remove 7 test28.
- [OK] remove 8 test32.
- [OK] remove 9 test33.
- [OK] remove 10 test37.
- [OK] iter 0 test29.
- [OK] prefix_iter 0 test34.
- [OK] caml 0 caml.
- [OK] caml 1 caml.
- [OK] caml 2 caml.
- [OK] caml 3 caml.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/art.0.3.0/_build/default/test/_build/_tests/art'.
- Test Successful in 2.542s. 42 tests run.
-> compiled art.0.3.0
-> removed art.0.3.0
-> installed art.0.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-12 00:11.10 ---> saved as "98ec072e8880be4cd67423cfb54daed569b2165f4551b480198e9735576be1cd"
Job succeeded
2026-01-12 00:11.48: Job succeeded