Fix test results publishing on Windows (#19364)
This commit is contained in:
parent
12eec080d5
commit
9908ffec0d
1 changed files with 7 additions and 4 deletions
|
@ -389,13 +389,16 @@ jobs:
|
|||
|
||||
CopyWithRelativeFolders "artifacts/log/" $targetFolder "*.binlog"
|
||||
CopyWithRelativeFolders "artifacts/log/" $targetFolder "*.log"
|
||||
CopyWithRelativeFolders "artifacts/TestResults/" $targetFolder "*.binlog"
|
||||
CopyWithRelativeFolders "artifacts/TestResults/" $targetFolder "*.diff"
|
||||
CopyWithRelativeFolders "artifacts/TestResults/" $targetFolder "Updated*.txt"
|
||||
CopyWithRelativeFolders "artifacts/TestResults/" $targetFolder "*.trx"
|
||||
CopyWithRelativeFolders "src/" $targetFolder "*.binlog"
|
||||
CopyWithRelativeFolders "src/" $targetFolder "*.log"
|
||||
|
||||
if (Test-Path "artifacts/TestResults/*") {
|
||||
CopyWithRelativeFolders "artifacts/TestResults/" $targetFolder "*.binlog"
|
||||
CopyWithRelativeFolders "artifacts/TestResults/" $targetFolder "*.diff"
|
||||
CopyWithRelativeFolders "artifacts/TestResults/" $targetFolder "Updated*.txt"
|
||||
CopyWithRelativeFolders "artifacts/TestResults/" $targetFolder "*.trx"
|
||||
}
|
||||
|
||||
# check if we have assets to publish
|
||||
if (Test-Path "artifacts/assets/Release/*") {
|
||||
echo "##vso[task.setvariable variable=hasAssets]true"
|
||||
|
|
Loading…
Reference in a new issue