Files
proxy-god/build_release.bat
Dr Jones 08683ab328
Some checks failed
CI / Test Python 3.10 (push) Has been cancelled
CI / Test Python 3.11 (push) Has been cancelled
CI / Test Python 3.12 (push) Has been cancelled
build: production Windows release pipeline (PyInstaller, SBOM, CI, signing hook)
2026-05-22 20:05:00 -07:00

28 lines
606 B
Batchfile

@echo off
setlocal
title Proxy God — production release build
cd /d "%~dp0"
echo.
echo === Proxy God: production release (tests + SBOM + zip) ===
echo.
where py >nul 2>nul && py -3 -c "import sys; assert sys.version_info>=(3,10)" 2>nul && goto RUN
where python >nul 2>nul && python -c "import sys; assert sys.version_info>=(3,10)" 2>nul && goto RUN
echo [X] Python 3.10+ not found on PATH.
pause
exit /b 1
:RUN
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\release_build.ps1" %*
if errorlevel 1 (
echo.
echo Release build FAILED.
pause
exit /b 1
)
echo.
pause
endlocal