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 c4c431b896a IGNITE-27304: Fix
c4c431b896a is described below

commit c4c431b896aacbc5b2b2501bc04a7f45510d3c40
Author: Igor Sapego <[email protected]>
AuthorDate: Tue Mar 17 19:51:15 2026 +0100

    IGNITE-27304: Fix
---
 .teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt 
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index e1a850654d7..a1580ee82c9 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -112,8 +112,6 @@ 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%"
     
@@ -130,8 +128,8 @@ object PlatformCppTestsWindows : BuildType({
     
                     Write-Host "Found ${'$'}(${'$'}dumps.Count) dump file(s), 
collecting binaries from CMake build directory."
     
-                    ${'$'}cmakeBuildDir = "%PATH__CMAKE_BUILD_DIRECTORY%"    
-                    Get-ChildItem -Path "${'$'}cmakeBuildDir\*" -File -Include 
"*.exe", "*.dll", "*.pdb" | ForEach-Object {
+                    ${'$'}binDir = "%PATH__CMAKE_BUILD_DIRECTORY%\Debug\bin"   
 
+                    Get-ChildItem -Path "${'$'}binDir\*" -File -Include 
"*.exe", "*.dll", "*.pdb" | ForEach-Object {
                         Copy-Item -Path ${'$'}_.FullName -Destination 
${'$'}dumpsDir -Force
                         Write-Host "Copied: ${'$'}(${'$'}_.Name)"
                     }

Reply via email to