Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions final_check.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Write-Host "=== EDGE-TINYML PRODUCTION READINESS CHECK ===" -ForegroundColor Cyan

= @(
$files = @(
"scripts/production_logger.py",
"scripts/metrics_exporter.py",
".github/workflows/ci.yml",
Expand All @@ -10,22 +10,20 @@
"tests/perf/windows_optimized_bench.py"
)

= True
foreach ( in ) {
if (Test-Path ) {
Write-Host " ✅ " -ForegroundColor Green
$allPresent = $true
foreach ($file in $files) {
if (Test-Path $file) {
Write-Host " ✅ $file" -ForegroundColor Green
} else {
Write-Host " ❌ " -ForegroundColor Red
= False
Write-Host " ❌ $file" -ForegroundColor Red
$allPresent = $false
}
}

if () {
Write-Host "
🎯 ALL SYSTEMS READY FOR PRODUCTION!" -ForegroundColor Green
if ($allPresent) {
Write-Host "`n🎯 ALL SYSTEMS READY FOR PRODUCTION!" -ForegroundColor Green
} else {
Write-Host "
⚠️ Some files missing" -ForegroundColor Yellow
Write-Host "`n⚠️ Some files missing" -ForegroundColor Yellow
}

Write-Host "
Expand Down
Loading