On Mon, Jun 22, 2026 at 02:10:26PM +0200, Jonas Smedegaard wrote: > It seems fishy to me for a random error to persistently fail at your > setup and (with only few samples, but still) consistently succeed on > Debian buildds.
Please note that it does not consistently succeed on Debian buildds. On s390x, it fails in the exact same way it fails for me: https://buildd.debian.org/status/fetch.php?pkg=sass-grass&arch=s390x&ver=0.13.4-5&stamp=1782135004&raw=0 error[E0053]: method `debug` has an incompatible type for trait --> crates/lib/tests/macros.rs:189:32 | 189 | fn debug(&self, _location: SpanLoc, message: &str) { | ^^^^^^^ expected `codemap::SpanLoc`, found `SpanLoc` | = note: expected signature `fn(&TestLogger, codemap::SpanLoc, &_)` found signature `fn(&TestLogger, SpanLoc, &_)` help: change the parameter type to match the trait | 189 | fn debug(&self, _location: codemap::SpanLoc, message: &str) { | +++++++++ I infer from this failure that the bug is not architecture-specific and it may happen to anybody, probably a race condition of some kind. ( My offer for a VM to reproduce still holds. Please contact me privately for details ) Thanks.

