File tree Expand file tree Collapse file tree 2 files changed +39
-10
lines changed Expand file tree Collapse file tree 2 files changed +39
-10
lines changed Original file line number Diff line number Diff line change 1
- trigger :
2
- - master
3
- - release/*
1
+ # Don't run CI for this config yet. We're not ready to move official builds on to Azure Pipelines
2
+ trigger : none
3
+
4
+ # Run PR validation on all branches
5
+ pr :
6
+ branches :
7
+ include :
8
+ - ' *'
4
9
5
10
jobs :
6
- - template : jobs/default-build.yml
7
- parameters :
8
- jobName : PR_FastCheck
9
- jobDisplayName : Fast Check
10
- agentOs : Windows
11
- buildArgs : " /t:FastCheck"
12
11
- template : jobs/default-build.yml
13
12
parameters :
14
13
jobName : Windows_Build
15
- jobDisplayName : " Build: Windows"
14
+ jobDisplayName : " Build and test : Windows"
16
15
agentOs : Windows
17
16
beforeBuild :
18
17
- powershell : " & ./src/IISIntegration/tools/UpdateIISExpressCertificate.ps1"
Original file line number Diff line number Diff line change
1
+ # This configuration is temporary while we work on getting all unit tests to pass on PR checks
2
+
3
+ # Don't run CI for this config
4
+ trigger : none
5
+
6
+ # Run PR validation on all branches
7
+ pr :
8
+ branches :
9
+ include :
10
+ - ' *'
11
+
12
+ jobs :
13
+ - template : jobs/default-build.yml
14
+ parameters :
15
+ jobName : Windows_Build
16
+ jobDisplayName : " Build only : Windows"
17
+ agentOs : Windows
18
+ buildArgs : ' /p:SkipTests=true'
19
+ - template : jobs/default-build.yml
20
+ parameters :
21
+ jobName : macOs_Build
22
+ jobDisplayName : " Build only : macOS"
23
+ agentOs : macOS
24
+ buildArgs : ' /p:SkipTests=true'
25
+ - template : jobs/default-build.yml
26
+ parameters :
27
+ jobName : Linux_Build
28
+ jobDisplayName : " Build only : Linux"
29
+ agentOs : Linux
30
+ buildArgs : ' /p:SkipTests=true'
You can’t perform that action at this time.
0 commit comments