Command: powershell -NoProfile -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Stop';
$folders=@(
'G:\My Drive\ChatGPT Bridge Data\fast-lane\inbox',
'G:\My Drive\ChatGPT Bridge Data\results'
);
$patterns=@('pc-bench-*','pc-apk-bench-*','apk-gradle-scan-*','bridge-health-*','bridge-job-status-*');
foreach($folder in $folders){
if(Test-Path -LiteralPath $folder){
foreach($pattern in $patterns){
Get-ChildItem -LiteralPath $folder -File -Filter $pattern -ErrorAction SilentlyContinue |
Remove-Item -Force -ErrorAction SilentlyContinue
}
}
}
Remove-Item -LiteralPath 'G:\My Drive\ChatGPT Bridge Data\evidence\pc-apk-benchmark-same-pipeline.json' -Force -ErrorAction SilentlyContinue;
Remove-Item -LiteralPath 'G:\My Drive\ChatGPT Bridge Data\fast-commands\pc_gradle_apk_same_pipeline.ps1' -Force -ErrorAction SilentlyContinue;
Remove-Item -LiteralPath 'C:\Users\ash\Documents\Codex\2026-08-26\worked-for-1m-5s-inference-ya\projects\apk_benchmark_same_pipeline' -Recurse -Force -ErrorAction SilentlyContinue;
Write-Output 'APK_BENCH_CLEANUP_OK'"
Directory: projects
Status: SUCCESS
Exit code: 0