Organisationscraigfeprogress4463ea (main)debian-13-5.5+flambda_opam-2.5

debian-13-5.5+flambda_opam-2.5

Link Copied
Code Copied

Logs

2026-06-30 12:14.31: New job: test craigfe/progress https://github.com/craigfe/progress.git#refs/heads/main (4463ead8286d559d2d4a5d6e1797a7b645541716) (linux-x86_64:debian-13-5.5+flambda_opam-2.5)
Base: ocaml/opam:debian-13-ocaml-5.5-flambda@sha256:ff3c0d26a0e67b19ad6c7504feb409e29468beaa3af825a06e0543bb3ba4808f
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/craigfe/progress.git" -b "main" && cd "progress" && git reset --hard 4463ead8
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.5-flambda@sha256:ff3c0d26a0e67b19ad6c7504feb409e29468beaa3af825a06e0543bb3ba4808f
# debian-13-5.5+flambda_opam-2.5
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam
RUN cd ~/opam-repository && (git cat-file -e 8cd35acddd18fa903782ac90de78467ca3e3b506 || git fetch origin master) && git reset -q --hard 8cd35acddd18fa903782ac90de78467ca3e3b506 && git log --no-decorate -n1 --oneline
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN opam update -u
COPY --chown=1000:1000 terminal.opam progress.opam ./
RUN opam pin add -yn terminal.dev './' && \
opam pin add -yn progress.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.2.1.1 compiler-cloning.enabled dune.3.24.0 fmt.0.11.0 logs.0.10.0 mtime.2.1.0 ocaml.5.5.0 ocaml-compiler.5.5.0 ocaml-syntax-shims.1.0.0 ocaml-variants.5.5.0+options ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 re.1.14.0 stdlib-shims.0.3.0 topkg.1.1.1 uucp.17.0.0 uutf.1.0.4"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.5 --depext-only -y terminal.dev progress.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build


END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK


2026-06-30 12:14.31: Using cache hint "craigfe/progress-ocaml/opam:debian-13-ocaml-5.5-flambda@sha256:ff3c0d26a0e67b19ad6c7504feb409e29468beaa3af825a06e0543bb3ba4808f-debian-13-5.5+flambda_opam-2.5-e77228d8ed0499eb1c65387db1a28f48"
2026-06-30 12:14.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.5-flambda@sha256:ff3c0d26a0e67b19ad6c7504feb409e29468beaa3af825a06e0543bb3ba4808f)
(comment debian-13-5.5+flambda_opam-2.5)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 8cd35acddd18fa903782ac90de78467ca3e3b506 || git fetch origin master) && git reset -q --hard 8cd35acddd18fa903782ac90de78467ca3e3b506 && git log --no-decorate -n1 --oneline"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update -u"))
(copy (src terminal.opam progress.opam) (dst ./))
(run (network host)
(shell  "opam pin add -yn terminal.dev './' && \
\nopam pin add -yn progress.dev './'"))
(run (shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.2.1.1 compiler-cloning.enabled dune.3.24.0 fmt.0.11.0 logs.0.10.0 mtime.2.1.0 ocaml.5.5.0 ocaml-compiler.5.5.0 ocaml-syntax-shims.1.0.0 ocaml-variants.5.5.0+options ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 re.1.14.0 stdlib-shims.0.3.0 topkg.1.1.1 uucp.17.0.0 uutf.1.0.4")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.5 --depext-only -y terminal.dev progress.dev $DEPS"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst /src))
(run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)


2026-06-30 12:14.31: Waiting for resource in pool OCluster
2026-06-30 15:55.10: Waiting for worker…
2026-06-30 15:57.19: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 4463ead Merge pull request #53 from craigfe/prepare-v0.5.0


(from ocaml/opam:debian-13-ocaml-5.5-flambda@sha256:ff3c0d26a0e67b19ad6c7504feb409e29468beaa3af825a06e0543bb3ba4808f)
2026-06-30 15:57.19 ---> using "ca1ca96b49eace0269f292f6a41c2d61fe7a0a339088047cbb5b7983bd03e7c1" from cache


/: (comment debian-13-5.5+flambda_opam-2.5)


/: (user (uid 1000) (gid 1000))


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam"))
2026-06-30 15:57.19 ---> using "8021a51f9e0131b4e9f10f3b13c2e39af8804708461badd9878a3f37535009ca" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 8cd35acddd18fa903782ac90de78467ca3e3b506 || git fetch origin master) && git reset -q --hard 8cd35acddd18fa903782ac90de78467ca3e3b506 && git log --no-decorate -n1 --oneline"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
b85f65c75d..8cd35acddd  master     -> origin/master
8cd35acddd Merge pull request #30092 from shonfeder/release-dune-3.24.0
2026-06-30 15:57.19 ---> using "a9fb317fdbfa359e64e9278be34bbbba666d5a2dcbe792396fbb558d04d0df73" from cache


/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then 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.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] synchronised from git+file:///home/opam/opam-repository
2026-06-30 15:57.19 ---> using "585795d119dd20c2f4f575c9a4ef503de041940b86a9c63b202a544cca1394bc" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 7.0.0-22-generic
The OCaml toplevel, version 5.5.0
2.5.1
2026-06-30 15:57.19 ---> using "2931cc0dd33355dee90a307d9c091c3654fed04307f6c4cb35a551f5ebc40b8d" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2026-06-30 15:57.19 ---> using "75110a309c5fe63c69a6b5079f82dfad2977f36e521a2b04fc83237126978b16" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update -u"))


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository


The following actions will be performed:
=== recompile 7 packages
- recompile base-domains     base                   [uses ocaml]
- recompile base-effects     base                   [uses ocaml]
- recompile base-nnp         base                   [uses base-domains]
- recompile ocaml            5.5.0                  [uses ocaml-variants]
- recompile ocaml-compiler   5.5.0                  [upstream or system changes]
- recompile ocaml-variants   5.5.0+options (pinned) [uses ocaml-compiler]
- recompile opam-depext      1.2.3                  [uses ocaml]
=== install 1 package
- install   compiler-cloning enabled                [required by ocaml-compiler]


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml.5.5.0  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> installed compiler-cloning.enabled
-> retrieved ocaml-compiler.5.5.0  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.5.0
-> removed   ocaml-variants.5.5.0+options
-> removed   ocaml-compiler.5.5.0
-> installed ocaml-compiler.5.5.0
-> installed ocaml-variants.5.5.0+options
-> installed ocaml.5.5.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
Done.


<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead


<><> ocaml-compiler.5.5.0 installed successfully ><><><><><><><><><><><><><><><>
=> This switch had to be compiled from sources, but future switches with the 🐌
same compiler version and configuration should assemble instantly.
# To update the current shell environment, run: eval $(opam env)
2026-06-30 15:57.19 ---> using "61e1258bf627ca002e704fa4eb3d7ebb833316ba34f40d2efc85e1aa45297e22" from cache


/src: (copy (src terminal.opam progress.opam) (dst ./))
2026-06-30 15:57.19 ---> saved as "9a77c178c52d04abcf61e26c55b5e5d6f53c6559ca81011dd1dd92c82c282687"


/src: (run (network host)
(shell  "opam pin add -yn terminal.dev './' && \
\nopam pin add -yn progress.dev './'"))
[terminal.dev] synchronised (file:///src)
terminal is now pinned to file:///src (version dev)
[progress.dev] synchronised (file:///src)
progress is now pinned to file:///src (version dev)
2026-06-30 15:57.23 ---> saved as "b7ee4973310c44d45cbe64ae95c57c13b6df4d2384e3424f2b432081afb78d70"


/src: (run (shell "echo '(lang dune 3.0)' > './dune-project'"))
2026-06-30 15:57.23 ---> saved as "0cb51154b424447adfaabe9d2e785c05638ea72758ceb0befe6590f906924048"


/src: (env DEPS "alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.2.1.1 compiler-cloning.enabled dune.3.24.0 fmt.0.11.0 logs.0.10.0 mtime.2.1.0 ocaml.5.5.0 ocaml-compiler.5.5.0 ocaml-syntax-shims.1.0.0 ocaml-variants.5.5.0+options ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 re.1.14.0 stdlib-shims.0.3.0 topkg.1.1.1 uucp.17.0.0 uutf.1.0.4")


/src: (env CI true)


/src: (env OCAMLCI true)


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.5 --depext-only -y terminal.dev progress.dev $DEPS"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- 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-security trixie-security/main amd64 Packages [223 kB]
- Fetched 313 kB in 0s (887 kB/s)
- Reading package lists...
- 


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[progress.dev] synchronised (file:///src)
[terminal.dev] synchronised (file:///src)


[NOTE] Package ocaml-variants is already installed (current version is 5.5.0+options).
[NOTE] Package ocaml-compiler is already installed (current version is 5.5.0).
[NOTE] Package ocaml is already installed (current version is 5.5.0).
[NOTE] Package compiler-cloning is already installed (current version is enabled).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
# To update the current shell environment, run: eval $(opam env)
2026-06-30 15:57.32 ---> saved as "c1785aa18f3f8a4e64e512a981bfd1733d6a2dc9ab15c44566e9a87f19db7d98"


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-variants is already installed (current version is 5.5.0+options).
[NOTE] Package ocaml-compiler is already installed (current version is 5.5.0).
[NOTE] Package ocaml is already installed (current version is 5.5.0).
[NOTE] Package compiler-cloning is already installed (current version is enabled).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 16 packages
- install alcotest           1.9.1
- install astring            0.8.5
- install cmdliner           2.1.1
- install dune               3.24.0
- install fmt                0.11.0
- install logs               0.10.0
- install mtime              2.1.0
- install ocaml-syntax-shims 1.0.0
- install ocamlbuild         0.16.1
- install ocamlfind          1.9.8
- install optint             0.3.0
- install re                 1.14.0
- install stdlib-shims       0.3.0
- install topkg              1.1.1
- install uucp               17.0.0
- install uutf               1.0.4


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved cmdliner.2.1.1  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved uucp.17.0.0  (cached)
-> retrieved dune.3.24.0  (cached)
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed dune.3.24.0
-> installed stdlib-shims.0.3.0
-> installed uucp.17.0.0
-> installed optint.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed alcotest.1.9.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-06-30 15:58.35 ---> saved as "07d29b82f073509cc0f92af5e16d02e68e95334029cf84655e7cc310c198eb5c"


/src: (copy (src .) (dst /src))
2026-06-30 15:58.36 ---> saved as "d640fdbf18724a7a992e5da51293129b78deae1da5ea8aa10f412949cd49b507"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/terminal/tests/.test.eobjs/byte -I src/terminal/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/fmt -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/terminal/tests/.test.eobjs/byte/dune__exe__Common.cmi -no-alias-deps -opaque -open Dune__exe -o src/terminal/tests/.test.eobjs/native/dune__exe__Common.cmx -c -impl src/terminal/tests/common.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Test, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/terminal/tests/.test.eobjs/byte -I src/terminal/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/fmt -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/terminal/tests/.test.eobjs/byte/dune__exe__Test.cmi -no-alias-deps -opaque -open Dune__exe -o src/terminal/tests/.test.eobjs/native/dune__exe__Test.cmx -c -impl src/terminal/tests/test.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Formatters, and its interface was not compiled
with -opaque


File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Config, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/terminal/tests/.test.eobjs/byte -I src/terminal/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/fmt -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/terminal/tests/.test.eobjs/byte/dune__exe__Test_width.cmi -no-alias-deps -opaque -open Dune__exe -o src/terminal/tests/.test.eobjs/native/dune__exe__Test_width.cmx -c -impl src/terminal/tests/test_width.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Test, and its interface was not compiled with -opaque


File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Core, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/terminal/tests/.test.eobjs/byte -I src/terminal/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/fmt -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/terminal/tests/.test.eobjs/byte/dune__exe__Test_colours.cmi -no-alias-deps -opaque -open Dune__exe -o src/terminal/tests/.test.eobjs/native/dune__exe__Test_colours.cmx -c -impl src/terminal/tests/test_colours.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Test, and its interface was not compiled with -opaque


File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Core, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/progress/tests/.test.eobjs/byte -I src/progress/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/astring -I /home/opam/.opam/5.5/lib/fmt -I /home/opam/.opam/5.5/lib/mtime -I /home/opam/.opam/5.5/lib/optint -I src/progress/.progress.objs/byte -I src/progress/.progress.objs/native -I src/progress/engine/.progress_engine.objs/byte -I src/progress/engine/.progress_engine.objs/native -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/progress/tests/.test.eobjs/byte/dune__exe__Common.cmi -no-alias-deps -opaque -open Dune__exe -o src/progress/tests/.test.eobjs/native/dune__exe__Common.cmx -c -impl src/progress/tests/common.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Test, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/progress/tests/.test.eobjs/byte -I src/progress/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/astring -I /home/opam/.opam/5.5/lib/fmt -I /home/opam/.opam/5.5/lib/mtime -I /home/opam/.opam/5.5/lib/optint -I src/progress/.progress.objs/byte -I src/progress/.progress.objs/native -I src/progress/engine/.progress_engine.objs/byte -I src/progress/engine/.progress_engine.objs/native -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/progress/tests/.test.eobjs/byte/dune__exe__Test_flow_meter.cmi -no-alias-deps -opaque -open Dune__exe -o src/progress/tests/.test.eobjs/native/dune__exe__Test_flow_meter.cmx -c -impl src/progress/tests/test_flow_meter.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Test, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/progress/tests/.test.eobjs/byte -I src/progress/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/astring -I /home/opam/.opam/5.5/lib/fmt -I /home/opam/.opam/5.5/lib/mtime -I /home/opam/.opam/5.5/lib/optint -I src/progress/.progress.objs/byte -I src/progress/.progress.objs/native -I src/progress/engine/.progress_engine.objs/byte -I src/progress/engine/.progress_engine.objs/native -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/progress/tests/.test.eobjs/byte/dune__exe__Test_printers.cmi -no-alias-deps -opaque -open Dune__exe -o src/progress/tests/.test.eobjs/native/dune__exe__Test_printers.cmx -c -impl src/progress/tests/test_printers.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Test, and its interface was not compiled with -opaque


File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Core, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/progress/tests/.test.eobjs/byte -I src/progress/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/astring -I /home/opam/.opam/5.5/lib/fmt -I /home/opam/.opam/5.5/lib/mtime -I /home/opam/.opam/5.5/lib/optint -I src/progress/.progress.objs/byte -I src/progress/.progress.objs/native -I src/progress/engine/.progress_engine.objs/byte -I src/progress/engine/.progress_engine.objs/native -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/progress/tests/.test.eobjs/byte/dune__exe__Test_units.cmi -no-alias-deps -opaque -open Dune__exe -o src/progress/tests/.test.eobjs/native/dune__exe__Test_units.cmx -c -impl src/progress/tests/test_units.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Test, and its interface was not compiled with -opaque


File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Core, and its interface was not compiled with -opaque
(cd _build/default/src/terminal/tests && ./test.exe)
Testing `src/terminal/tests/test.ml'.
This run has ID `6KENSP4J'.


[OK]          colours          0   rgb.
[OK]          colours          1   hex.
[OK]          width            0   guess_width.
[OK]          width            1   truncate.


Full test results in `/src/_build/default/src/terminal/tests/_build/_tests/src-terminal-tests-test.ml'.
Test Successful in 0.001s. 4 tests run.
(cd _build/default && /home/opam/.opam/5.5/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/progress/tests/.test.eobjs/byte -I src/progress/tests/.test.eobjs/native -I /home/opam/.opam/5.5/lib/alcotest -I /home/opam/.opam/5.5/lib/astring -I /home/opam/.opam/5.5/lib/fmt -I /home/opam/.opam/5.5/lib/mtime -I /home/opam/.opam/5.5/lib/optint -I src/progress/.progress.objs/byte -I src/progress/.progress.objs/native -I src/progress/engine/.progress_engine.objs/byte -I src/progress/engine/.progress_engine.objs/native -I src/terminal/.terminal.objs/byte -I src/terminal/.terminal.objs/native -I src/terminal/ansi/.terminal_ansi.objs/byte -I src/terminal/ansi/.terminal_ansi.objs/native -cmi-file src/progress/tests/.test.eobjs/byte/dune__exe__Test.cmi -no-alias-deps -opaque -open Dune__exe -o src/progress/tests/.test.eobjs/native/dune__exe__Test.cmx -c -impl src/progress/tests/test.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Test, and its interface was not compiled with -opaque


File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Core, and its interface was not compiled with -opaque


File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Formatters, and its interface was not compiled
with -opaque


File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module
Alcotest_engine__Config, and its interface was not compiled with -opaque
(cd _build/default/src/progress/tests && ./test.exe)
Testing `src/progress/tests/test.ml'.
This run has ID `GKTWI0SF'.


[OK]          main                0   Pair.
[OK]          main                1   Unicode bar.
[OK]          main                2   Progress bar lifecycle....
[OK]          main                3   Progress bar width.
[OK]          main                4   Pre-provided counter....
[OK]          boxes               0   Unsized element not in box.
[OK]          boxes               1   Two unsized elements in box.
[OK]          units               0   percentage.
[OK]          units               1   bytes.
[OK]          units               2   duration.
[OK]          printers            0   int.
[OK]          printers            1   string.
[OK]          flow_meter          0   linear.
[OK]          flow_meter          1   non-linear.


Full test results in `/src/_build/default/src/progress/tests/_build/_tests/src-progress-tests-test.ml'.
Test Successful in 0.003s. 14 tests run.
2026-06-30 15:58.39 ---> saved as "81d24f3d6684d4f3cf4f4936ebb721ae83f38f2fb2c0a9ac3c28c87c727309b8"
Job succeeded
2026-06-30 15:58.39: Job succeeded