forked from wieslawsoltes/wmf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
53 lines (46 loc) · 1.45 KB
/
azure-pipelines.yml
File metadata and controls
53 lines (46 loc) · 1.45 KB
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
name: $(date:yyyyMMdd)$(rev:-rr)
resources:
repositories:
- repository: templates
endpoint: wieslawsoltes
type: github
name: wieslawsoltes/BuildTemplates
ref: refs/tags/v2.5.0
variables:
BuildConfiguration: 'Release'
BuildPlatform: 'Any CPU'
PublishFramework: 'netcoreapp3.1'
PublishProject: 'Console'
PublishRuntime: ''
Workloads: ''
jobs:
- template: Test-PowerShell.yml@templates
parameters:
name: 'Test_Windows'
vmImage: 'windows-2022'
BuildConfiguration: ${{ variables.BuildConfiguration }}
Workloads: ${{ variables.Workloads }} ios
- template: Test-Bash.yml@templates
parameters:
name: 'Test_Linux'
vmImage: 'ubuntu-20.04'
BuildConfiguration: ${{ variables.BuildConfiguration }}
Workloads: ${{ variables.Workloads }}
- template: Test-Bash.yml@templates
parameters:
name: 'Test_macOS'
vmImage: 'macOS-12'
BuildConfiguration: ${{ variables.BuildConfiguration }}
Workloads: ${{ variables.Workloads }} ios
- template: Pack-MyGet.yml@templates
parameters:
name: 'Pack_MyGet'
vmImage: 'windows-2022'
BuildConfiguration: ${{ variables.BuildConfiguration }}
Workloads: ${{ variables.Workloads }} ios
- template: Pack-NuGet.yml@templates
parameters:
name: 'Pack_NuGet'
vmImage: 'windows-2022'
BuildConfiguration: ${{ variables.BuildConfiguration }}
Workloads: ${{ variables.Workloads }} ios