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 8df71b69591 IGNITE-27304: Fix
8df71b69591 is described below
commit 8df71b69591c24a946a7f97fd7000ed643ca6f35
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 18 10:09:44 2026 +0100
IGNITE-27304: Fix
---
.teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index 7b1f139277d..e404e7a1b90 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -132,17 +132,17 @@ object PlatformCppTestsWindows : BuildType({
${'$'}dumpNames = ${'$'}dumps | ForEach-Object {
(${'$'}_.BaseName -split "\.exe")[0] }
- ${'$'}exes = Get-ChildItem -Path "${'$'}binDir\*" -File
-Include "*.exe" |
- Where-Object { ${'$'}dumpNames -contains
${'$'}_.BaseName }
+ ${'$'}exes = @(Get-ChildItem -Path "${'$'}binDir\*" -File
-Include "*.exe" |
+ Where-Object { ${'$'}dumpNames -contains
${'$'}_.BaseName })
- ${'$'}dlls = Get-ChildItem -Path "${'$'}binDir\*" -File
-Include "*.dll"
+ ${'$'}dlls = @(Get-ChildItem -Path "${'$'}binDir\*" -File
-Include "*.dll")
- ${'$'}binaryNames = (${'$'}exes + ${'$'}dlls) |
ForEach-Object { ${'$'}_.BaseName }
+ ${'$'}binaryNames = @((${'$'}exes + ${'$'}dlls) |
ForEach-Object { ${'$'}_.BaseName })
- ${'$'}pdbs = Get-ChildItem -Path "${'$'}binDir\*" -File
-Include "*.pdb" |
- Where-Object { ${'$'}binaryNames -contains
${'$'}_.BaseName }
+ ${'$'}pdbs = @(Get-ChildItem -Path "${'$'}binDir\*" -File
-Include "*.pdb" |
+ Where-Object { ${'$'}binaryNames -contains
${'$'}_.BaseName })
- ${'$'}filesToCopy = ${'$'}exes + ${'$'}dlls + ${'$'}pdbs
+ ${'$'}filesToCopy = @(${'$'}exes + ${'$'}dlls + ${'$'}pdbs)
if (${'$'}filesToCopy.Count -eq 0) {
Write-Host "Warning: no matching binaries found in
'${'$'}binDir'."
exit 0