Commit 3d0ffcc
committed
fix(ci): disable pip cache in build-wasm to prevent cache failures
Disabled setup-python pip caching that was causing persistent 400 errors
on every workflow run.
Root cause: Large ML packages (torch ~700MB-2GB, transformers ~500MB-1GB,
optimum, onnxruntime) create a 2-4GB pip cache that consistently fails
GitHub's cache service with 400 errors and service unavailability.
Impact:
- Removes cache service errors from workflow annotations
- Adds ~2-3 minutes to build time for pip install
- AI models output is still cached (no change to overall build time)
The AI models themselves are cached separately via actions/cache, so the
overall build time impact is minimal. Pip dependencies are fast to download
compared to the 10-15 minute model conversion process.1 parent 50458c3 commit 3d0ffcc
1 file changed
Lines changed: 5 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
156 | | - | |
157 | | - | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
158 | 161 | | |
159 | 162 | | |
160 | 163 | | |
| |||
0 commit comments