save checkpoint. addition features and their state. check some ofthem
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user