-
Notifications
You must be signed in to change notification settings - Fork 511
/
Copy pathazure-pipelines-ci.yml
56 lines (48 loc) · 1.09 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
name: CI-$(Build.SourceBranchName)-$(Date:yyyyMMdd)$(Rev:.rr)
pr: none
trigger:
branches:
include:
- release
variables:
# Don't download unneeded packages
- name: DOTNET_NOLOGO
value: 'true'
# Improve performance by not sending telemetry
- name: DOTNET_CLI_TELEMETRY_OPTOUT
value: 'true'
# Improve performance by not generating certificates
- name: DOTNET_GENERATE_ASPNET_CERTIFICATE
value: 'false'
resources:
repositories:
- repository: PowerShellEditorServices
type: github
endpoint: GitHub
name: PowerShell/PowerShellEditorServices
ref: main
jobs:
- job: windows2022
displayName: Windows 2022
pool:
vmImage: windows-2022
steps:
- template: templates/ci-general.yml
- job: windows2019
displayName: Windows 2019
pool:
vmImage: windows-2019
steps:
- template: templates/ci-general.yml
- job: macOS12
displayName: macOS 12
pool:
vmImage: macOS-12
steps:
- template: templates/ci-general.yml
- job: ubuntu2004
displayName: Ubuntu 20.04
pool:
vmImage: ubuntu-20.04
steps:
- template: templates/ci-general.yml