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
commit 2f6072f734b3cf2dea4548d771f23d09488eac1f Author: Igor Sapego <[email protected]> AuthorDate: Tue Mar 17 12:44:20 2026 +0100 IGNITE-27304: Minor fixes --- .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 a947faa49ea..038daf74268 100644 --- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt +++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt @@ -41,6 +41,7 @@ object PlatformCppTestsWindows : BuildType({ powerShell { name = "Build C++" + platform = PowerShellStep.Platform.x64 scriptMode = script { content = """ ${'$'}ErrorActionPreference = "Stop" @@ -102,6 +103,7 @@ object PlatformCppTestsWindows : BuildType({ } powerShell { name = "Collect PDBs for crash dumps" + platform = PowerShellStep.Platform.x64 scriptMode = script { content = """ ${'$'}dumpsDir = "%PATH__CRASH_DUMPS%" @@ -125,7 +127,7 @@ object PlatformCppTestsWindows : BuildType({ exit 1 } - Get-ChildItem -Path ${'$'}cmakeBuildDir -File -Include "*.exe", "*.dll", "*.pdb" | ForEach-Object { + Get-ChildItem -Path "${'$'}cmakeBuildDir\*" -File -Include "*.exe", "*.dll", "*.pdb" | ForEach-Object { Copy-Item -Path ${'$'}_.FullName -Destination ${'$'}dumpsDir -Force Write-Host "Copied: ${'$'}(${'$'}_.Name)" }
