1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Testing - Marking Win retesting failed #314

This commit is contained in:
Pasukhin Dmitry 2025-02-01 00:04:55 +01:00 committed by GitHub
parent 8a067c43b7
commit 4012dc463e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -596,8 +596,15 @@ jobs:
if: steps.check_failures.outputs.failed_count > 0 if: steps.check_failures.outputs.failed_count > 0
run: | run: |
cd install/results/windows-x64-retest cd install/results/windows-x64-retest
$failedCount = 0
if (Test-Path tests.log) { 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) { if ($failedCount -gt 0) {
Write-Error "Number of FAILED tests ($failedCount) exceeds threshold of 0" Write-Error "Number of FAILED tests ($failedCount) exceeds threshold of 0"
echo "FAILED_COUNT=$failedCount" >> $env:GITHUB_ENV echo "FAILED_COUNT=$failedCount" >> $env:GITHUB_ENV
@ -830,8 +837,15 @@ jobs:
if: steps.check_failures.outputs.failed_count > 0 if: steps.check_failures.outputs.failed_count > 0
run: | run: |
cd install/results/windows-clang-x64-retest cd install/results/windows-clang-x64-retest
$failedCount = 0
if (Test-Path tests.log) { 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) { if ($failedCount -gt 0) {
Write-Error "Number of FAILED tests ($failedCount) exceeds threshold of 0" Write-Error "Number of FAILED tests ($failedCount) exceeds threshold of 0"
echo "FAILED_COUNT=$failedCount" >> $env:GITHUB_ENV echo "FAILED_COUNT=$failedCount" >> $env:GITHUB_ENV