Configure CI/CD build to properly build OrcaSlicer with Protobuf and codegen

This commit is contained in:
ExPikaPaka
2026-06-04 08:37:32 +02:00
parent a78ef9ce1c
commit 6e84139d60
8 changed files with 62 additions and 1 deletions

View File

@@ -126,6 +126,15 @@ if "%1"=="deps" goto :done
:slicer
echo "building Orca Slicer..."
cd %WP%
echo "generating config sources from proto..."
pip install grpcio-tools -q
python tools/run_codegen.py
if errorlevel 1 (
echo "ERROR: config codegen failed"
exit /b 1
)
mkdir %build_dir%
cd %build_dir%