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 97353bfd361 IGNITE-27304: Debug
97353bfd361 is described below

commit 97353bfd361d6472d25b2946b16dc7fa42548a94
Author: Igor Sapego <[email protected]>
AuthorDate: Thu Mar 19 08:41:39 2026 +0100

    IGNITE-27304: Debug
---
 .../files/scripts/powershell/AnalyzeCrashDumps.ps1 | 23 +---------------------
 1 file changed, 1 insertion(+), 22 deletions(-)

diff --git a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1 
b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
index b16cd5d934f..c6e6e457f1e 100644
--- a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
+++ b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
@@ -1,7 +1,6 @@
 $dumpsDir = "%PATH__CRASH_DUMPS%"
 $binDir = "%PATH__CMAKE_BUILD_DIRECTORY%\Debug\bin"
 $cdb = "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe"
-$pdbcopy = "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\pdbcopy.exe"
 $symPath = 
"srv*%PATH__DEBUG_SYMBOLS_DIR%*https://msdl.microsoft.com/download/symbols;$binDir";
 
 if (-not (Test-Path $dumpsDir)) {
@@ -18,27 +17,7 @@ if ($dumps.Count -eq 0) {
 foreach ($dump in $dumps) {
     Write-Host "##teamcity[buildProblem description='Crash dump detected: 
$($dump.Name)']"
 
-    Write-Host "##teamcity[blockOpened name='PDB Debug 1: $($dump.Name)']"
-    & $pdbcopy $dump.FullName -p
-    Write-Host "##teamcity[blockClosed name='PDB Debug 1: $($dump.Name)']"
-
-    Write-Host "##teamcity[blockOpened name='PDB Debug 2: $($dump.Name)']"
-    & $cdb -z $dump.FullName -y $symPath -c ".reload /f; lm v m 
ignite_client_test; q"
-    Write-Host "##teamcity[blockClosed name='PDB Debug 2: $($dump.Name)']"
-
     Write-Host "##teamcity[blockOpened name='Crash analysis: $($dump.Name)']"
-    & $cdb -z $dump.FullName -y $symPath -c ".symopt+ 0x80000; .lines; 
!analyze -v; .ecxr; kn /f; q"
+    & $cdb -z $dump.FullName -y $symPath -c ".symopt+ 0x80000; .reload /f; 
.lines; !analyze -v; .ecxr; kL; q"
     Write-Host "##teamcity[blockClosed name='Crash analysis: $($dump.Name)']"
 }
-
-$pdbs = @(Get-ChildItem -Path $dumpsDir -File -Filter "*.pdb")
-if ($pdbs.Count -eq 0) {
-    Write-Host "No PDB files found in '$dumpsDir', skipping."
-    exit 0
-}
-
-foreach ($pdb in $pdbs) {
-    Write-Host "##teamcity[blockOpened name='PDB Debug 1: $($pdb.Name)']"
-    & $pdbcopy $pdb.FullName -p
-    Write-Host "##teamcity[blockClosed name='PDB Debug 1: $($pdb.Name)']"
-}
\ No newline at end of file

Reply via email to