Refactor code structure for improved readability and maintainability
mandatory-regression-gate / deterministic-tests (push) Has been cancelled
mandatory-regression-gate / protected-performance-path (push) Has been cancelled

This commit is contained in:
Your Name
2026-07-23 15:34:05 +03:00
parent 593522e83f
commit 8447b2d796
21 changed files with 3439 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
@echo off
REM Canonical HCIE workspace build entry point (Windows)
REM Usage: build.bat [cargo-flags...]
setlocal enabledelayedexpansion
set ROOT_DIR=%~dp0
if "%~1"=="" (
set CARGO_ARGS=--workspace
) else (
set CARGO_ARGS=%*
)
call "%ROOT_DIR%scripts\cargo-with-build-id.bat" build %CARGO_ARGS%
exit /b %ERRORLEVEL%