File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ trigger :
2+ - 2.6.x
3+
4+ pr :
5+ - 2.6.x
6+
7+ jobs :
8+ - job : Windows_NT
9+ displayName : Windows NT
10+ pool :
11+ vmImage : vs2017-win2016
12+ strategy :
13+ matrix :
14+ Debug :
15+ _BuildConfig : Debug
16+ Release :
17+ _BuildConfig : Release
18+ steps :
19+ - checkout : self
20+ clean : true
21+ - script : .\eng\common\CIBuild.cmd -configuration $(_BuildConfig) -prepareMachine
22+ - task : PublishTestResults@2
23+ inputs :
24+ testResultsFormat : xUnit
25+ testResultsFiles : ' **/artifacts/TestResults/$(_BuildConfig)/*.xml'
26+ condition : always()
27+ - task : CopyFiles@2
28+ inputs :
29+ contents : ' artifacts/**'
30+ targetFolder : $(Build.ArtifactStagingDirectory)
31+ - task : PublishBuildArtifacts@1
32+ inputs :
33+ pathtoPublish : ' $(Build.ArtifactStagingDirectory)'
34+ artifactName : Windows_NT
You can’t perform that action at this time.
0 commit comments