File tree Expand file tree Collapse file tree 4 files changed +461
-519
lines changed
Expand file tree Collapse file tree 4 files changed +461
-519
lines changed Original file line number Diff line number Diff line change 1+ # Configure which branches trigger builds
2+ trigger :
3+ batch : true
4+ branches :
5+ include :
6+ - release/2.*
7+ - internal/release/2.*
8+
9+ # Run PR validation on all branches
10+ pr :
11+ branches :
12+ include :
13+ - ' *'
14+
15+ variables :
16+ - name : ASPNETCORE_TEST_LOG_MAXPATH
17+ value : " 200" # Keep test log file name length low enough for artifact zipping
18+ - name : DOTNET_HOME
19+ value : $(Agent.BuildDirectory)/.dotnet
20+ - name : TeamName
21+ value : AspNetCore
22+ - name : BuildNumberArg
23+ value : ' '
24+
25+ jobs :
26+ - template : jobs/default-build.yml
27+ parameters :
28+ jobName : Windows_Build
29+ jobDisplayName : " Build and test: Windows"
30+ buildArgs : $(BuildNumberArg)
31+ codeSign : true
32+ beforeBuild :
33+ - powershell : " & ./src/Servers/IIS/tools/UpdateIISExpressCertificate.ps1"
34+ displayName : Setup IISExpress test certificates
You can’t perform that action at this time.
0 commit comments