-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
azure-pipelines.yml
176 lines (151 loc) · 5.55 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
####################################################################
# VSTS Build Configuration, Version 1.4
#
# (c)2022 superdev GmbH
####################################################################
name: $[format('{0}', variables['buildName'])]
pool:
vmImage: 'windows-2022'
trigger:
branches:
include:
- main
- develop
- feature/*
- bugfix/*
paths:
exclude:
- Docs/*
variables:
solution: 'Plugin.FirebasePushNotifications.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
majorVersion: 3
minorVersion: 0
patchVersion: $[counter(format('{0}.{1}', variables.majorVersion, variables.minorVersion), 0)]
${{ if eq(variables['Build.SourceBranch'], 'refs/heads/main') }}:
# Versioning: 1.0.0
semVersion: $[format('{0}.{1}.{2}', variables.majorVersion, variables.minorVersion, variables.patchVersion)]
${{ if and(ne(variables['Build.SourceBranch'], 'refs/heads/main'), not(startsWith(variables['Build.SourceBranch'], 'refs/pull/'))) }}:
# Versioning: 1.0.0-pre
semVersion: $[format('{0}.{1}.{2}-pre', variables.majorVersion, variables.minorVersion, variables.patchVersion)]
${{ if startsWith(variables['Build.SourceBranch'], 'refs/pull/') }}:
# Versioning: 1.0.0-pr.000000001
semVersion: $[format('{0}.{1}.{2}-pr.{3}', variables.majorVersion, variables.minorVersion, variables.patchVersion, variables['System.PullRequest.PullRequestId'])]
buildName: $[format('{0}', variables.semVersion)]
steps:
- task: Bash@3
displayName: 'Print all variables'
inputs:
targetType: 'inline'
script: 'env | sort'
- task: Assembly-Info-NetCore@3
displayName: 'Update Assembly Info'
inputs:
Path: '$(Build.SourcesDirectory)'
FileNames: |
**/*.csproj
InsertAttributes: true
FileEncoding: 'auto'
WriteBOM: false
Product: 'Plugin.FirebasePushNotifications'
Description: ''
Company: 'superdev GmbH'
Copyright: '(c) $(date:YYYY) superdev GmbH'
VersionNumber: '$(Build.BuildNumber)'
FileVersionNumber: '$(Build.BuildNumber)'
InformationalVersion: '$(Build.BuildNumber)'
PackageVersion: '$(Build.BuildNumber)'
LogLevel: 'verbose'
FailOnWarning: false
DisableTelemetry: false'
- task: UseDotNet@2
displayName: 'Use .NET 8.x'
inputs:
version: 8.x
- task: Bash@3
displayName: Install .NET MAUI
inputs:
targetType: 'inline'
script: |
dotnet nuget locals all --clear
dotnet workload install maui android ios maui-android maui-ios --source https://api.nuget.org/v3/index.json
- task: JavaToolInstaller@0
displayName: "Install Java"
inputs:
versionSpec: '11'
jdkArchitectureOption: 'x64'
jdkSourceOption: 'PreInstalled'
- task: NuGetToolInstaller@0
displayName: 'Use NuGet 6.x'
inputs:
versionSpec: 6.x
- task: DotNetCoreCLI@2
displayName: 'NuGet restore'
inputs:
command: restore
projects: '$(solution)'
- task: DownloadSecureFile@1
name: GoogleServiceFileAndroid
displayName: 'Download secure file google-services.json'
inputs:
secureFile: 'google-services.json'
- task: DownloadSecureFile@1
name: GoogleServiceFileiOS
displayName: 'Download secure file GoogleService-Info.plist'
inputs:
secureFile: 'GoogleService-Info.plist'
- task: CopyFiles@2
displayName: 'Copy file google-services.json'
inputs:
SourceFolder: '$(Agent.TempDirectory)'
Contents: '$(GoogleServiceFileAndroid.secureFilePath)'
TargetFolder: '$(Build.SourcesDirectory)\Samples\MauiSampleApp\Platforms\Android\Resources'
- task: CopyFiles@2
displayName: 'Copy file GoogleService-Info.plist'
inputs:
SourceFolder: '$(Agent.TempDirectory)'
Contents: '$(GoogleServiceFileiOS.secureFilePath)'
TargetFolder: '$(Build.SourcesDirectory)\Samples\MauiSampleApp\Platforms\iOS'
- task: DotNetCoreCLI@2
displayName: 'Build solution'
inputs:
projects: '$(solution)'
arguments: '--no-restore --configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: 'Run UnitTests'
inputs:
command: test
projects: '**/*.Tests.csproj'
arguments: '--no-restore --no-build --configuration $(buildConfiguration) /p:CollectCoverage=true /p:Exclude="[Microsoft*]*%2C[Mono*]*%2C[xunit*]*%2C[*.Testdata]*" /p:CoverletOutput=UnitTests.coverage.cobertura.xml /p:MergeWith=$(Build.SourcesDirectory)/Tests/CoverletOutput/coverage.json /p:CoverletOutputFormat=cobertura'
- task: Palmmedia.reportgenerator.reportgenerator-build-release-task.reportgenerator@4
displayName: 'Create Code Coverage Report'
inputs:
reports: '$(Build.SourcesDirectory)/Tests/**/*.coverage.cobertura*.xml'
targetdir: '$(Build.SourcesDirectory)/CodeCoverage'
reporttypes: 'Cobertura'
assemblyfilters: '-xunit*'
- task: DotNetCoreCLI@2
displayName: 'Pack Plugin.FirebasePushNotifications'
inputs:
command: pack
packagesToPack: Plugin.FirebasePushNotifications/Plugin.FirebasePushNotifications.csproj
versioningScheme: byEnvVar
versionEnvVar: semVersion
nobuild: true
- task: CopyFiles@2
displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)'
inputs:
SourceFolder: '$(system.defaultworkingdirectory)'
Contents: |
**\bin\$(BuildConfiguration)\**
**\bin\*.nupkg
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: PublishCodeCoverageResults@2
displayName: 'Publish code coverage'
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(Build.SourcesDirectory)/CodeCoverage/Cobertura.xml'
reportDirectory: '$(Build.SourcesDirectory)/CodeCoverage'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: drop'