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 608b81f8ace IGNITE-27304: Debug
608b81f8ace is described below
commit 608b81f8aceb9358975bb5c7b87d3d0f9930ef38
Author: Igor Sapego <[email protected]>
AuthorDate: Tue Mar 17 18:48:28 2026 +0100
IGNITE-27304: Debug
---
.teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index b69b9d3edc9..e1a850654d7 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -112,6 +112,8 @@ object PlatformCppTestsWindows : BuildType({
${'$'}dumpsDir = "%PATH__CRASH_DUMPS%"
Write-Host "CMake build dir: %PATH__CMAKE_BUILD_DIRECTORY%"
+ Get-ChildItem -Path %PATH__CMAKE_BUILD_DIRECTORY%
+
Write-Host "Working dir: %PATH__WORKING_DIR%"
Write-Host "Dumps dir: %PATH__CRASH_DUMPS%"
@@ -128,7 +130,7 @@ object PlatformCppTestsWindows : BuildType({
Write-Host "Found ${'$'}(${'$'}dumps.Count) dump file(s),
collecting binaries from CMake build directory."
- ${'$'}cmakeBuildDir = "%PATH__CMAKE_BUILD_DIRECTORY%\bin"
+ ${'$'}cmakeBuildDir = "%PATH__CMAKE_BUILD_DIRECTORY%"
Get-ChildItem -Path "${'$'}cmakeBuildDir\*" -File -Include
"*.exe", "*.dll", "*.pdb" | ForEach-Object {
Copy-Item -Path ${'$'}_.FullName -Destination
${'$'}dumpsDir -Force
Write-Host "Copied: ${'$'}(${'$'}_.Name)"