From 4012dc463e84f3a1ba48a3307e395a1dac2402a1 Mon Sep 17 00:00:00 2001 From: Pasukhin Dmitry Date: Sat, 1 Feb 2025 00:04:55 +0100 Subject: [PATCH] Testing - Marking Win retesting failed #314 --- .../workflows/build-and-test-multiplatform.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test-multiplatform.yml b/.github/workflows/build-and-test-multiplatform.yml index 9f3d71d80f..8c04035a42 100644 --- a/.github/workflows/build-and-test-multiplatform.yml +++ b/.github/workflows/build-and-test-multiplatform.yml @@ -596,8 +596,15 @@ jobs: if: steps.check_failures.outputs.failed_count > 0 run: | cd install/results/windows-x64-retest + $failedCount = 0 if (Test-Path tests.log) { - $failedCount = (Select-String -Path tests.log -Pattern "Total cases:.*FAILED" | ForEach-Object { $_.Matches } | ForEach-Object { $_.Groups[1].Value }) -as [int] + $content = Get-Content tests.log + $totalLine = $content | Select-String "Total cases:" + if ($totalLine) { + if ($totalLine -match "FAILED") { + $failedCount = ($totalLine | ForEach-Object { $_.Line -replace '.*?(\d+) FAILED.*','$1' }) -as [int] + } + } if ($failedCount -gt 0) { Write-Error "Number of FAILED tests ($failedCount) exceeds threshold of 0" echo "FAILED_COUNT=$failedCount" >> $env:GITHUB_ENV @@ -830,8 +837,15 @@ jobs: if: steps.check_failures.outputs.failed_count > 0 run: | cd install/results/windows-clang-x64-retest + $failedCount = 0 if (Test-Path tests.log) { - $failedCount = (Select-String -Path tests.log -Pattern "Total cases:.*FAILED" | ForEach-Object { $_.Matches } | ForEach-Object { $_.Groups[1].Value }) -as [int] + $content = Get-Content tests.log + $totalLine = $content | Select-String "Total cases:" + if ($totalLine) { + if ($totalLine -match "FAILED") { + $failedCount = ($totalLine | ForEach-Object { $_.Line -replace '.*?(\d+) FAILED.*','$1' }) -as [int] + } + } if ($failedCount -gt 0) { Write-Error "Number of FAILED tests ($failedCount) exceeds threshold of 0" echo "FAILED_COUNT=$failedCount" >> $env:GITHUB_ENV