fix: separate CI cache volumes to prevent concurrent disk exhaustion

Each workflow job now uses its own cache directory to avoid multiple
runners on the same VPS writing to the same target dir simultaneously.
This commit is contained in:
2026-02-12 02:03:19 +03:00
parent 6e5d9ade17
commit 6700a35699
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -26,7 +26,7 @@ jobs:
container:
image: ${{ needs.preflight.outputs.IMAGE }}
volumes:
- /cache/cargo-target/pezkuwi-sdk:/cache/target
- /cache/cargo-target/pezkuwi-sdk-test-doc:/cache/target
env:
RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings"
SKIP_WASM_BUILD: 1
@@ -52,7 +52,7 @@ jobs:
container:
image: ${{ needs.preflight.outputs.IMAGE }}
volumes:
- /cache/cargo-target/pezkuwi-sdk:/cache/target
- /cache/cargo-target/pezkuwi-sdk-rustdoc:/cache/target
env:
SKIP_WASM_BUILD: 1
CARGO_INCREMENTAL: 0