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 1295bc69638 IGNITE-27304: Improve analyzing step
1295bc69638 is described below
commit 1295bc69638d902f58e49549df47e306842aa53b
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 18 20:28:24 2026 +0100
IGNITE-27304: Improve analyzing step
---
.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1 | 2 +-
.teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
index 096bfac122e..92836b7fa72 100644
--- a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
+++ b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
@@ -1,7 +1,7 @@
$dumpsDir = "%PATH__CRASH_DUMPS%"
$binDir = "%PATH__CMAKE_BUILD_DIRECTORY%\Debug\bin"
$cdb = "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe"
-$symPath = "srv*C:\symbols*https://msdl.microsoft.com/download/symbols;$binDir"
+$symPath =
"srv*%PATH__DEBUG_SYMBOLS_DIR%*https://msdl.microsoft.com/download/symbols;$binDir"
if (-not (Test-Path $dumpsDir)) {
Write-Host "Dumps directory '$dumpsDir' does not exist, skipping."
diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index aca1795b584..ac001ea87c2 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -35,6 +35,7 @@ object PlatformCppTestsWindows : BuildType({
hiddenText("PATH__CRASH_DUMPS",
"""%PATH__CMAKE_BUILD_DIRECTORY%\dumps""")
hiddenText("PATH__UNIT_TESTS_RESULT",
"""%PATH__CMAKE_BUILD_DIRECTORY%\cpp_unit_test_results.xml""")
hiddenText("PATH__WORKING_DIR",
"""%teamcity.build.checkoutDir%\%VCSROOT__IGNITE3%\modules\platforms\cpp""")
+ hiddenText("PATH__DEBUG_SYMBOLS_DIR",
"""%teamcity.agent.home.dir%\cpp_debug\symbols""")
hiddenText("env.CPP_STAGING", """%PATH__WORKING_DIR%\cpp_staging""")
}