-
Notifications
You must be signed in to change notification settings - Fork 10.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create temporary PR validation which just compiles, without tests (#4478
- Loading branch information
1 parent
5c2a701
commit de994e0
Showing
2 changed files
with
39 additions
and
10 deletions.
There are no files selected for viewing
19 changes: 9 additions & 10 deletions
19
.azure/pipelines/fast-pr-validation.yml → .azure/pipelines/ci.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This configuration is temporary while we work on getting all unit tests to pass on PR checks | ||
|
||
# Don't run CI for this config | ||
trigger: none | ||
|
||
# Run PR validation on all branches | ||
pr: | ||
branches: | ||
include: | ||
- '*' | ||
|
||
jobs: | ||
- template: jobs/default-build.yml | ||
parameters: | ||
jobName: Windows_Build | ||
jobDisplayName: "Build only : Windows" | ||
agentOs: Windows | ||
buildArgs: '/p:SkipTests=true' | ||
- template: jobs/default-build.yml | ||
parameters: | ||
jobName: macOs_Build | ||
jobDisplayName: "Build only : macOS" | ||
agentOs: macOS | ||
buildArgs: '/p:SkipTests=true' | ||
- template: jobs/default-build.yml | ||
parameters: | ||
jobName: Linux_Build | ||
jobDisplayName: "Build only : Linux" | ||
agentOs: Linux | ||
buildArgs: '/p:SkipTests=true' |