From c5b84b4948305ae2d4c0ce85348c333f2bfea889 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Wed, 29 Apr 2026 09:31:28 -0300 Subject: [PATCH] fix(ci): revert CARGO_INCREMENTAL to 0 - sccache prohibits incremental sccache 0.7.5 errors with 'increment compilation is prohibited' when CARGO_INCREMENTAL=1. Keep at 0 and rely on the fixed touch-only-changed-files logic to preserve sccache cache hits. --- .forgejo/workflows/botserver.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/botserver.yaml b/.forgejo/workflows/botserver.yaml index 4fafc3b0..8080c0e9 100644 --- a/.forgejo/workflows/botserver.yaml +++ b/.forgejo/workflows/botserver.yaml @@ -16,7 +16,7 @@ jobs: runs-on: gbo env: RUSTC_WRAPPER: sccache - CARGO_INCREMENTAL: "1" + CARGO_INCREMENTAL: "0" PATH: "/home/gbuser/.cargo/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/sbin:/bin" steps: - name: Setup