File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 156
156
157
157
echo " Copying TestResults/TestResults to ."
158
158
cp TestResults/TestResults.xml testResults.xml
159
- echo " Copying artifacts/logs to $HELIX_WORKITEM_UPLOAD_ROOT /../"
160
- shopt -s globstar
161
- cp artifacts/log/** /* .log $HELIX_WORKITEM_UPLOAD_ROOT /../
162
- cp artifacts/log/** /* .log $HELIX_WORKITEM_UPLOAD_ROOT /
159
+ echo " Copying artifacts/logs to $HELIX_WORKITEM_UPLOAD_ROOT /"
160
+ cp ` find . -name \* .log` $HELIX_WORKITEM_UPLOAD_ROOT /../
161
+ cp ` find . -name \* .log` $HELIX_WORKITEM_UPLOAD_ROOT /
163
162
exit $exit_code
Original file line number Diff line number Diff line change 25
25
[Parameter (Mandatory = $true )]
26
26
[string ]$Project ,
27
27
[string ]$HelixQueues = " Windows.10.Amd64.Open" ,
28
- [string ]$TargetArchitecture = " " ,
28
+ [string ]$TargetArchitecture = " x64 " ,
29
29
[bool ]$RunQuarantinedTests = $false
30
30
)
31
31
$ErrorActionPreference = ' Stop'
@@ -39,4 +39,4 @@ $env:BUILD_REPOSITORY_NAME="aspnetcore"
39
39
$env: SYSTEM_TEAMPROJECT = " aspnetcore"
40
40
41
41
$HelixQueues = $HelixQueues -replace " ;" , " %3B"
42
- dotnet msbuild $Project / t:Helix / p:TargetArchitecture= " $TargetArchitecture " / p:IsRequiredCheck= true / p:IsHelixDaily= true / p:HelixTargetQueues= $HelixQueues / p:RunQuarantinedTests= $RunQuarantinedTests / p:_UseHelixOpenQueues= true
42
+ dotnet msbuild $Project / t:Helix / p:TargetArchitecture= " $TargetArchitecture " / p:IsRequiredCheck= true / p:IsHelixDaily= true / p:HelixTargetQueues= $HelixQueues / p:RunQuarantinedTests= $RunQuarantinedTests / p:_UseHelixOpenQueues= true / p:ASPNETCORE_TEST_LOG_DIR = artifacts / log
You can’t perform that action at this time.
0 commit comments