-
Notifications
You must be signed in to change notification settings - Fork 510
/
Copy pathazure-pipelines-ci.yml
62 lines (54 loc) · 1.3 KB
/
azure-pipelines-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)
variables:
# Don't download unneeded packages
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
value: 'true'
# Improve performance by not sending telemetry
- name: DOTNET_CLI_TELEMETRY_OPTOUT
value: 'true'
trigger:
branches:
include:
- master
resources:
repositories:
- repository: PowerShellEditorServices
type: github
endpoint: GitHub
name: PowerShell/PowerShellEditorServices
ref: master
jobs:
- job: PS51_Win2016
displayName: PowerShell 5.1 - Windows Server 2016
pool:
vmImage: vs2017-win2016
steps:
- template: templates/ci-general.yml
parameters:
pwsh: false
- job: PS51_Win2019
displayName: PowerShell 5.1 - Windows Server 2019
pool:
vmImage: windows-2019
steps:
- template: templates/ci-general.yml
parameters:
pwsh: false
- job: PS7_Win2019
displayName: PowerShell 7 - Windows Server 2019
pool:
vmImage: windows-2019
steps:
- template: templates/ci-general.yml
- job: PS7_macOS
displayName: PowerShell 7 - macOS 10.15
pool:
vmImage: macOS-10.15
steps:
- template: templates/ci-general.yml
- job: PS7_Ubuntu
displayName: PowerShell 7 - Ubuntu 20.04
pool:
vmImage: ubuntu-20.04
steps:
- template: templates/ci-general.yml