This repository has been archived by the owner on Jul 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a separate build pipeline for PR's
- Loading branch information
1 parent
c5246ea
commit 041215f
Showing
2 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
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,49 @@ | ||
trigger: | ||
branches: | ||
exclude: | ||
- master | ||
pr: | ||
- master | ||
|
||
jobs: | ||
- job: Linux | ||
pool: | ||
name: Hosted Ubuntu 1604 | ||
demands: npm | ||
strategy: | ||
matrix: | ||
node_10_x: | ||
node_version: 10.x | ||
node_12_x: | ||
node_version: 12.x | ||
steps: | ||
- template: .azure-pipelines/build.yml | ||
- template: .azure-pipelines/lint.yml | ||
- template: .azure-pipelines/test.yml | ||
- template: .azure-pipelines/package.yml | ||
|
||
- job: Windows | ||
pool: | ||
name: Hosted VS2017 | ||
demands: npm | ||
strategy: | ||
matrix: | ||
node_10_x: | ||
node_version: 10.x | ||
steps: | ||
- template: .azure-pipelines/build.yml | ||
- template: .azure-pipelines/lint.yml | ||
- template: .azure-pipelines/test.yml | ||
|
||
- job: macOS | ||
pool: | ||
name: Hosted macOS | ||
demands: npm | ||
strategy: | ||
matrix: | ||
node_10_x: | ||
node_version: 10.x | ||
steps: | ||
- template: .azure-pipelines/build.yml | ||
- template: .azure-pipelines/lint.yml | ||
- template: .azure-pipelines/test.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,6 @@ trigger: | |
branches: | ||
include: | ||
- master | ||
pr: | ||
- master | ||
|
||
jobs: | ||
- job: Linux | ||
|