save checkpoint. addition features and their state. check some ofthem

This commit is contained in:
master
2026-02-10 07:54:44 +02:00
parent 4bdc298ec1
commit 5593212b41
211 changed files with 10248 additions and 1208 deletions

View File

@@ -583,6 +583,23 @@ run_dotnet_build() {
return $result
}
run_repro_policy_checks() {
log_subsection "Repro Bundle Policy Checks"
local policy_script="$REPO_ROOT/devops/tools/verify-repro-bundle-policy.sh"
if [[ ! -f "$policy_script" ]]; then
log_error "Repro policy script not found: $policy_script"
return 1
fi
if [[ "$DRY_RUN" == "true" ]]; then
log_info "[DRY-RUN] Would execute: bash \"$policy_script\""
return 0
fi
bash "$policy_script"
}
# =============================================================================
# MODE IMPLEMENTATIONS
# =============================================================================
@@ -658,6 +675,7 @@ run_pr_mode() {
# Build .NET solution
run_dotnet_build || return 1
run_repro_policy_checks || return 1
# Run each .NET category
if [[ -n "$SPECIFIC_CATEGORY" ]]; then