ci(benchmark): disable sccache summary annotations and fix tree output (#16233)

This commit is contained in:
Simo Lin
2025-12-31 11:05:21 -08:00
committed by GitHub
parent 2da49eec50
commit ace6f3005f
2 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -1024,7 +1024,7 @@ cargo build --release
# rustc-wrapper = "sccache"
```
> **Note:** sccache and incremental compilation are mutually exclusive—sccache cannot cache incrementally compiled crates. The project defaults to incremental compilation for faster local iteration. Use sccache for clean/release builds where caching across builds matters more.
> **Note:** sccache and incremental compilation are mutually exclusive—sccache cannot cache incrementally compiled crates. The project defaults to incremental compilation for faster local iteration. Use sccache for clean/release builds where caching across builds matters more. CI workflows use sccache with GitHub Actions cache backend for cross-job compilation caching.
---