Skip to content

Commit de994e0

Browse files
authored
Create temporary PR validation which just compiles, without tests (#4478)
1 parent 5c2a701 commit de994e0

File tree

2 files changed

+39
-10
lines changed

2 files changed

+39
-10
lines changed

.azure/pipelines/fast-pr-validation.yml renamed to .azure/pipelines/ci.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
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+
- '*'
49

510
jobs:
6-
- template: jobs/default-build.yml
7-
parameters:
8-
jobName: PR_FastCheck
9-
jobDisplayName: Fast Check
10-
agentOs: Windows
11-
buildArgs: "/t:FastCheck"
1211
- template: jobs/default-build.yml
1312
parameters:
1413
jobName: Windows_Build
15-
jobDisplayName: "Build: Windows"
14+
jobDisplayName: "Build and test: Windows"
1615
agentOs: Windows
1716
beforeBuild:
1817
- powershell: "& ./src/IISIntegration/tools/UpdateIISExpressCertificate.ps1"
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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'

0 commit comments

Comments
 (0)