Build:
- 0
2026-02-26 17:31.26: New job: test toffee.0.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29312/head (8c083980be49cd4fc405e80bab0aa50d6cebdaac)
on debian-unstable-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/29312/head" && git reset --hard 8c083980
git fetch origin master
git merge --no-edit 5119fbb0776fa3cd71b09f40a51e40f783c539bf
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be
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 toffee.0.1.0 0.1.0
RUN opam reinstall toffee.0.1.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 "\"debian-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'toffee.0.1.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 toffee.0.1.0) || true
RUN opam reinstall --with-test --verbose toffee.0.1.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 "\"debian-unstable\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'toffee.0.1.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-02-26 17:31.26: Using cache hint "ocaml/opam:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be-toffee.0.1.0-8c083980be49cd4fc405e80bab0aa50d6cebdaac"
2026-02-26 17:31.26: Using OBuilder spec:
((from ocaml/opam:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be)
(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 toffee.0.1.0 0.1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall toffee.0.1.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 \"\\\"debian-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'toffee.0.1.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 toffee.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose toffee.0.1.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 \"\\\"debian-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'toffee.0.1.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-02-26 17:31.26: Waiting for resource in pool OCluster
2026-02-27 02:10.33: Waiting for worker…
2026-02-27 02:12.35: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 5119fbb077 Merge pull request #29462 from Octachron/OCaml_5.5.0_alpha1
Updating 5119fbb077..8c083980be
Fast-forward
packages/matrix-eio/matrix-eio.0.1.0/opam | 42 ++++++++++++++++++++++++++
packages/matrix/matrix.0.1.0/opam | 42 ++++++++++++++++++++++++++
packages/mosaic/mosaic.0.1.0/opam | 46 +++++++++++++++++++++++++++++
packages/toffee/toffee.0.1.0/opam | 42 ++++++++++++++++++++++++++
packages/tree-sitter/tree-sitter.0.1.0/opam | 41 +++++++++++++++++++++++++
5 files changed, 213 insertions(+)
create mode 100644 packages/matrix-eio/matrix-eio.0.1.0/opam
create mode 100644 packages/matrix/matrix.0.1.0/opam
create mode 100644 packages/mosaic/mosaic.0.1.0/opam
create mode 100644 packages/toffee/toffee.0.1.0/opam
create mode 100644 packages/tree-sitter/tree-sitter.0.1.0/opam
(from ocaml/opam:debian-unstable-ocaml-5.4@sha256:052f22dabdce2fd49d2657b43d9a8b598f7c630053dc1783ae228858491ae3be)
2026-02-27 02:13.07 ---> using "fc5f960075c978ec0e06c84f3560d8c857fd1defcad50daa8249e5300ed026cd" 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-02-27 02:13.07 ---> using "a7f8c42e1023ddd99516cc6b1dc5b5dd09b982c94c2d9bafb265d941baa4edb3" 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-02-27 02:13.07 ---> using "40835c6e6561451717592bb071d803f4abc6eff8c12465b59acc83781bff9a41" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=unknown
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# 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-02-27 02:13.07 ---> using "7b5982cab09db920dad7f5c3f06736d0cb94f99f187c29315a802b971a823bb4" 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-02-27 02:13.07 ---> using "212109850733c17a00b6ed0a6b4ce46d24fe6b211c30948949a3d5ebbe52a4c7" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-27 02:13.15 ---> saved as "7d81a78b836dcb6422e0bfc7e61366e7ec78e3451917ac5d62926cca20a7fec2"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-27 02:13.31 ---> saved as "5cc82af9f09938493f15908349a2f1568bb0a2b46cc6c7e9c62b7079db921d6d"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian unstable InRelease [187 kB]
- Get:2 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-02-26-2000.23-F-2026-02-14-1403.05.pdiff [984 kB]
- Get:3 http://deb.debian.org/debian unstable/main amd64 Packages T-2026-02-26-2000.23-F-2026-02-14-1403.05.pdiff [984 kB]
- Fetched 1235 kB in 3s (475 kB/s)
- Reading package lists...
-
2026-02-27 02:13.35 ---> saved as "ac349074038a1bb3a718e2c9743416863a0439f90f914dcb3b7823ff2748aa44"
/home/opam: (run (shell "opam pin add -k version -yn toffee.0.1.0 0.1.0"))
toffee is now pinned to version 0.1.0
2026-02-27 02:13.35 ---> saved as "8202598735075df1ee0c65264706751ee634440c1b217db32bb1c6b0d4b28680"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall toffee.0.1.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 \"\\\"debian-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'toffee.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
toffee.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install dune 3.21.1 [required by toffee]
- install toffee 0.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.1 (cached)
-> retrieved toffee.0.1.0 (cached)
-> installed dune.3.21.1
-> installed toffee.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 02:14.01 ---> saved as "7d121a8d5b72da56377190936bb6366dcffb1b35fd02ec3cc0d7aa42665eb94f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test toffee.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile toffee 0.1.0 (pinned)
=== install 7 packages
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_windtrap 0.1.0 [required by toffee]
- install ppxlib 0.37.0 [required by ppx_windtrap]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install windtrap 0.1.0 [required by toffee]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_windtrap.0.1.0, windtrap.0.1.0 (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.37.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)
-> installed ocaml-compiler-libs.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> removed toffee.0.1.0
-> installed windtrap.0.1.0
-> installed ppxlib.0.37.0
-> installed ppx_windtrap.0.1.0
-> installed toffee.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 02:14.31 ---> saved as "534b158457c93099c06ebd00c802c53af53b0172b38e424fbc5ee079ecc17b6e"
/home/opam: (run (shell "opam reinstall --with-test --verbose toffee.0.1.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 \"\\\"debian-unstable\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'toffee.0.1.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 toffee 0.1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [toffee: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "toffee" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/toffee.0.1.0)
- (cd _build/default/toffee/test && ./test_grid.exe)
-
- Testing Toffee Grid Tests.
-
- ..............
-
- All tests passed in 919μs. 14 tests run.
-
- Test output saved to ~/.opam/5.4/.opam-switch/build/toffee.0.1.0/_build/_tests/Toffee Grid Tests/SWXKUN8B/
- (cd _build/default/toffee/test && ./test_toffee.exe)
-
- Testing Toffee Tests.
-
- .......................
-
- All tests passed in 4ms. 23 tests run.
-
- Test output saved to ~/.opam/5.4/.opam-switch/build/toffee.0.1.0/_build/_tests/Toffee Tests/TU5Y7MUC/
- (cd _build/default/toffee/test/generated && ./test_runner.exe)
-
- Testing Toffee Layout Tests.
-
- ............................................................ [60/1978]
- ............................................................ [120/1978]
- ............................................................ [180/1978]
- ............................................................ [240/1978]
- ............................................................ [300/1978]
- ............................................................ [360/1978]
- ............................................................ [420/1978]
- ............................................................ [480/1978]
- ............................................................ [540/1978]
- ............................................................ [600/1978]
- ............................................................ [660/1978]
- ............................................................ [720/1978]
- ............................................................ [780/1978]
- ............................................................ [840/1978]
- ............................................................ [900/1978]
- ............................................................ [960/1978]
- ............................................................ [1020/1978]
- ............................................................ [1080/1978]
- ............................................................ [1140/1978]
- ............................................................ [1200/1978]
- ............................................................ [1260/1978]
- ............................................................ [1320/1978]
- ............................................................ [1380/1978]
- ............................................................ [1440/1978]
- ............................................................ [1500/1978]
- ............................................................ [1560/1978]
- ............................................................ [1620/1978]
- ............................................................ [1680/1978]
- ............................................................ [1740/1978]
- ............................................................ [1800/1978]
- ............................................................ [1860/1978]
- ............................................................ [1920/1978]
- ..........................................................
-
- All tests passed in 187ms. 1978 tests run.
-
- Test output saved to ~/.opam/5.4/.opam-switch/build/toffee.0.1.0/_build/_tests/Toffee Layout Tests/J24B0P2G/
-> compiled toffee.0.1.0
-> removed toffee.0.1.0
-> installed toffee.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 02:14.43 ---> saved as "425be2c4d2d130d779f2d970df144ac9affc7d20655682edfb1fc29c117528f3"
Job succeeded
2026-02-27 02:14.50: Job succeeded