From bc3f31e9591e497f05cfbb99cb9082a9ac94dc9c Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Mon, 20 Oct 2025 14:59:29 +0200 Subject: [PATCH] remove leaked detection --- .github/actions/flaky-retry/action.yml | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/actions/flaky-retry/action.yml b/.github/actions/flaky-retry/action.yml index 5c831e332f..eedf653641 100644 --- a/.github/actions/flaky-retry/action.yml +++ b/.github/actions/flaky-retry/action.yml @@ -37,14 +37,8 @@ runs: # Check if command succeeded if [ $exit_code -eq 0 ]; then - # Check for memory leaks even on success - if grep -q "leaked" "$output_file"; then - echo "Command exited with code 0 but output contains 'leaked'" - exit 1 - else - echo "Command succeeded" - exit 0 - fi + echo "Command succeeded" + exit 0 fi # Command failed - check if we should retry @@ -85,14 +79,8 @@ runs: # Check if command succeeded if ($exitCode -eq 0) { - # Check for memory leaks even on success - if ($output -like "*leaked*") { - Write-Host "Command exited with code 0 but output contains 'leaked'" - exit 1 - } else { - Write-Host "Command succeeded" - exit 0 - } + Write-Host "Command succeeded" + exit 0 } # Command failed - check if we should retry