forked from wieslawsoltes/Svg.Skia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
119 lines (104 loc) · 3.79 KB
/
azure-pipelines.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: $(date:yyyyMMdd)$(rev:-rr)
resources:
repositories:
- repository: templates
endpoint: wieslawsoltes
type: github
name: wieslawsoltes/BuildTemplates
ref: refs/tags/v1.0.0
variables:
BuildConfiguration: 'Release'
BuildPlatform: 'Any CPU'
PublishFramework: 'net6.0'
PublishProject: ''
PublishRuntime: ''
jobs:
- template: Test-PowerShell.yml@templates
parameters:
name: 'Test_Windows'
vmImage: 'windows-2022'
BuildConfiguration: ${{ variables.BuildConfiguration }}
- template: Test-Bash.yml@templates
parameters:
name: 'Test_Linux'
vmImage: 'ubuntu-20.04'
BuildConfiguration: ${{ variables.BuildConfiguration }}
- template: Test-Bash.yml@templates
parameters:
name: 'Test_macOS'
vmImage: 'macOS-11'
BuildConfiguration: ${{ variables.BuildConfiguration }}
- template: Pack-MyGet.yml@templates
parameters:
name: 'Pack_MyGet'
vmImage: 'windows-2022'
BuildConfiguration: ${{ variables.BuildConfiguration }}
- template: Pack-NuGet.yml@templates
parameters:
name: 'Pack_NuGet'
vmImage: 'windows-2022'
BuildConfiguration: ${{ variables.BuildConfiguration }}
- template: Publish-PowerShell.yml@templates
parameters:
name: 'Publish_Windows_TestApp_Desktop'
vmImage: 'windows-2022'
BuildConfiguration: ${{ variables.BuildConfiguration }}
PublishFramework: ${{ variables.PublishFramework }}
PublishProject: 'TestApp.Desktop'
PublishRuntime: 'win7-x64'
- template: Publish-Bash.yml@templates
parameters:
name: 'Publish_Ubuntu_TestApp_Desktop'
vmImage: 'ubuntu-20.04'
BuildConfiguration: ${{ variables.BuildConfiguration }}
PublishFramework: ${{ variables.PublishFramework }}
PublishProject: 'TestApp.Desktop'
PublishRuntime: 'ubuntu.14.04-x64'
- template: Publish-Bash.yml@templates
parameters:
name: 'Publish_Debian_TestApp_Desktop'
vmImage: 'ubuntu-20.04'
BuildConfiguration: ${{ variables.BuildConfiguration }}
PublishFramework: ${{ variables.PublishFramework }}
PublishProject: 'TestApp.Desktop'
PublishRuntime: 'debian.8-x64'
- template: Publish-Bash.yml@templates
parameters:
name: 'Publish_macOS_TestApp_Desktop'
vmImage: 'macOS-11'
BuildConfiguration: ${{ variables.BuildConfiguration }}
PublishFramework: ${{ variables.PublishFramework }}
PublishProject: 'TestApp.Desktop'
PublishRuntime: 'osx.10.12-x64'
- template: Publish-PowerShell.yml@templates
parameters:
name: 'Publish_Windows_SvgSkiaConverter'
vmImage: 'windows-2022'
BuildConfiguration: ${{ variables.BuildConfiguration }}
PublishFramework: ${{ variables.PublishFramework }}
PublishProject: 'Svg.Skia.Converter'
PublishRuntime: 'win7-x64'
- template: Publish-Bash.yml@templates
parameters:
name: 'Publish_Ubuntu_SvgSkiaConverter'
vmImage: 'ubuntu-20.04'
BuildConfiguration: ${{ variables.BuildConfiguration }}
PublishFramework: ${{ variables.PublishFramework }}
PublishProject: 'Svg.Skia.Converter'
PublishRuntime: 'ubuntu.14.04-x64'
- template: Publish-Bash.yml@templates
parameters:
name: 'Publish_Debian_SvgSkiaConverter'
vmImage: 'ubuntu-20.04'
BuildConfiguration: ${{ variables.BuildConfiguration }}
PublishFramework: ${{ variables.PublishFramework }}
PublishProject: 'Svg.Skia.Converter'
PublishRuntime: 'debian.8-x64'
- template: Publish-Bash.yml@templates
parameters:
name: 'Publish_macOS_SvgSkiaConverter'
vmImage: 'macOS-11'
BuildConfiguration: ${{ variables.BuildConfiguration }}
PublishFramework: ${{ variables.PublishFramework }}
PublishProject: 'Svg.Skia.Converter'
PublishRuntime: 'osx.10.12-x64'