File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -579,7 +579,7 @@ stages:
579
579
steps :
580
580
- script : .\restore.cmd -ci
581
581
displayName : Restore
582
- - script : .\build.cmd -ci -NoRestore -test -projects eng\helix\helix.proj /p:IsRequiredCheck=true /p:IsHelixJob=true /p:BuildAllProjects=true /p:BuildNative=false -bl
582
+ - script : .\build.cmd -ci -NoRestore -test -projects eng\helix\helix.proj /p:IsRequiredCheck=true /p:IsHelixJob=true /p:BuildAllProjects=true /p:BuildNative=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log -bl
583
583
displayName : Run build.cmd helix target
584
584
env :
585
585
SYSTEM_ACCESSTOKEN : $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
@@ -599,7 +599,7 @@ stages:
599
599
steps :
600
600
- script : .\restore.cmd -ci
601
601
displayName : Restore
602
- - script : .\build.cmd -ci -NoRestore -test -projects eng\helix\helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true /p:BuildAllProjects=true /p:BuildNative=true -bl
602
+ - script : .\build.cmd -ci -NoRestore -test -projects eng\helix\helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true /p:BuildAllProjects=true /p:BuildNative=true /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log -bl
603
603
displayName : Run build.cmd helix target
604
604
env :
605
605
SYSTEM_ACCESSTOKEN : $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
@@ -620,7 +620,7 @@ stages:
620
620
steps :
621
621
- script : ./restore.sh -ci
622
622
displayName : Restore
623
- - script : ./build.sh -ci --arch arm64 -test --no-build-nodejs -projects $(Build.SourcesDirectory)/eng/helix/helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true /p:BuildAllProjects=true /p:BuildNative=true -bl
623
+ - script : ./build.sh -ci --arch arm64 -test --no-build-nodejs -projects $(Build.SourcesDirectory)/eng/helix/helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true /p:BuildAllProjects=true /p:BuildNative=true /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log -bl
624
624
displayName : Run build.sh helix arm64 target
625
625
env :
626
626
SYSTEM_ACCESSTOKEN : $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
Original file line number Diff line number Diff line change @@ -109,4 +109,8 @@ if [ $? != 0 ]; then
109
109
# DO NOT EXIT
110
110
fi
111
111
112
+ echo " Copying artifacts/logs to $HELIX_WORKITEM_UPLOAD_ROOT /../"
113
+ shopt -s globstar
114
+ cp artifacts/log/** /* .log $HELIX_WORKITEM_UPLOAD_ROOT /../
115
+ cp artifacts/log/** /* .log $HELIX_WORKITEM_UPLOAD_ROOT /
112
116
exit $nonflaky_exitcode
Original file line number Diff line number Diff line change 16
16
</ItemGroup >
17
17
18
18
<PropertyGroup >
19
- <HelixSource >pr/dotnet/aspnetcore</HelixSource >
20
19
<HelixBuild >private-$(USERNAME)</HelixBuild >
21
20
<HelixBuild Condition =" '$(USERNAME)' == '' " >private-$(USER)</HelixBuild >
22
21
<IsExternal >true</IsExternal >
30
29
<HelixBuild >$(BUILD_BUILDNUMBER).$(TargetArchitecture).$(SYSTEM_JOBATTEMPT)</HelixBuild >
31
30
<WaitForWorkItemCompletion >true</WaitForWorkItemCompletion >
32
31
<EnableAzurePipelinesReporter >true</EnableAzurePipelinesReporter >
33
- <FailOnMissionControlTestFailure >true</FailOnMissionControlTestFailure >
32
+ <EnableXUnitReporter >true</EnableXUnitReporter >
34
33
</PropertyGroup >
35
34
36
35
<PropertyGroup Condition =" '$(ContinuousIntegrationBuild)' != 'true' " >
Original file line number Diff line number Diff line change 16
16
<IsWindowsHelixQueue Condition =" $(HelixTargetQueue.Contains('Windows')) or $(HelixTargetQueue.Contains('windows'))" >true</IsWindowsHelixQueue >
17
17
<HelixTestName >$(MSBuildProjectName)-$(TargetFramework)</HelixTestName >
18
18
<HelixUseArchive >false</HelixUseArchive >
19
- <LoggingTestingDisableFileLogging Condition =" '$(IsHelixJob)' == 'true'" >true </LoggingTestingDisableFileLogging >
19
+ <LoggingTestingDisableFileLogging Condition =" '$(IsHelixJob)' == 'true'" >false </LoggingTestingDisableFileLogging >
20
20
<NodeVersion >10.15.3</NodeVersion >
21
21
</PropertyGroup >
22
22
You can’t perform that action at this time.
0 commit comments