This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch ignite-27304
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-27304 by this push:
new f36f7fdac28 IGNITE-27304: Improve analyzing step
f36f7fdac28 is described below
commit f36f7fdac285371044b13b3edabc6d7b5a171534
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 18 20:00:52 2026 +0100
IGNITE-27304: Improve analyzing step
---
.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1 | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
index 59a2fab2620..096bfac122e 100644
--- a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
+++ b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
@@ -15,9 +15,10 @@ if ($dumps.Count -eq 0) {
}
foreach ($dump in $dumps) {
+ Write-Host "##teamcity[buildProblem description='Crash dump detected:
$($dump.Name)']"
Write-Host "##teamcity[blockOpened name='Crash analysis: $($dump.Name)']"
- & $cdb -z $dump.FullName -y $symPath -c "!analyze -v; q"
+ & $cdb -z $dump.FullName -y $symPath -c ".symfix; .reload; !analyze -v; q"
Write-Host "##teamcity[blockClosed name='Crash analysis: $($dump.Name)']"
}