CI(windows): pip --no-cache-dir to reduce disk use
Build binaries / macos (push) Successful in 44s
Build binaries / linux-amd64 (push) Successful in 1m26s
Build binaries / linux-arm64 (push) Successful in 1m51s
Build binaries / windows (push) Successful in 5m59s

Windows runs were failing with OSError 28 (No space left on device) while
downloading PySide6 -- the runner disk is full (compounded by leftover act
caches from earlier failed runs). --no-cache-dir avoids keeping wheel copies.
The runner still needs disk freed; this just trims the footprint.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016yT89n4zR4qbrySoSiEyZs
This commit is contained in:
2026-06-30 16:31:28 -04:00
parent 26a8f1a24c
commit 9ac85aea11
+2 -2
View File
@@ -38,8 +38,8 @@ jobs:
$env:Path = "$dir;$dir\Scripts;$env:Path"
}
& $py --version
& $py -m pip install --upgrade pip
& $py -m pip install -r requirements-gui.txt pyinstaller
& $py -m pip install --no-cache-dir --upgrade pip
& $py -m pip install --no-cache-dir -r requirements-gui.txt pyinstaller
& $py -m PyInstaller --noconfirm --onefile --windowed --name OBDash --add-data "profiles;profiles" run_gui.py
Copy-Item dist/OBDash.exe OBDash-windows.exe
- name: Publish to release