forked from rwilson504/PCFControls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
232 lines (192 loc) · 6.16 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# Build the ColorPicker project utilizing npm and MSBuild
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
name: $(BuildVersionMajor).$(BuildVersionMinor).$(BuildVersionPatch).$(BuildVersionRevision)
trigger: none
# branches:
# include:
# - master
# paths:
# exclude:
# - *.md
# - *.yml
pr: none
variables:
#BUILD VERSION INFORMATION
BuildVersionMajor: 1
BuildVersionMinor: 1
BuildVersionPatch: 0
#sets a counter for the version number changing the Major or Minor version will reset this counter
#back to it's seed value
BuildVersionRevision: $[counter(format('{0}.{1}.{2}', variables['BuildVersionMajor'], variables['BuildVersionMinor'],variables['BuildVersionPatch']), 1)]
pool:
vmImage: 'windows-latest'
#COLOR PICKER
steps:
#Run npm install to get all required resources for the projectl
- task: Npm@1
inputs:
command: 'install'
workingDir: './ColorPicker/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './BooleanOptionset/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './BingMapsGrid/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './AzureMapsGrid/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './WorldDaylightMap/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './DetailListGrid/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './Calendar/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './CanvasFileDownloader/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './CanvasFileUploader/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './RotationalImage/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './RuntimeInfo/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './PDFFormFillCanvas/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './Frame/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './DadJoke/'
- task: Npm@1
inputs:
command: 'install'
workingDir: './DocxTemplatesCanvas/'
#PowerApps controls can be build using MSBuild and do not require the PCF CLI to be downloaded.
#The build command will utilize NuGet to go out and get all the resource packages it needs.
- task: MSBuild@1
inputs:
solution: '**/*.cdsproj'
msbuildArguments: '/t:build /p:Configuration=Release /restore'
#Copy the solution files to the build artifacts directory.
- task: CopyFiles@2
inputs:
SourceFolder: './ColorPicker/ColorPicker/ControlPicker/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- powershell: |
Rename-Item -Path "$(Build.ArtifactStagingDirectory)/ControlPicker_managed.zip" -NewName "ColorPicker_managed.zip"
displayName: 'Rename Control Picker to Color Picker'
- powershell: |
Rename-Item -Path "$(Build.ArtifactStagingDirectory)/ControlPicker.zip" -NewName "ColorPicker.zip"
displayName: 'Rename Control Picker to Color Picker'
- task: CopyFiles@2
inputs:
SourceFolder: './BooleanOptionset/BooleanOptionset/BooleanOptionsetControl/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './BingMapsGrid/BingMapsGrid/BingMapsGridControl/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './AzureMapsGrid/AzureMapsGrid/AzureMapsGridControl/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './WorldDaylightMap/Solution/RAWWorldDaylightMap/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './DetailListGrid/DetailListGrid/DetailListGridControl/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './Calendar/Calendar/CalendarControl/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './CanvasFileDownloader/Solution/CanvasFileDownloaderControl/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './CanvasFileUploader/Solution/CanvasFileUploaderComponent/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './RotationalImage/Solution/RotationalImageComponent/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './RuntimeInfo/Solution/RuntimeInfoComponent/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './PDFFormFillCanvas/Solutions/RAWPDFFormFillCanvas/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './DadJoke/Solution/RAW!DadJoke/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './Frame/Solution/RAWframe/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- task: CopyFiles@2
inputs:
SourceFolder: './DocxTemplatesCanvas/Solution/RAWDocxTemplatesCanvas/bin/Release/'
Contents: '*.zip'
TargetFolder: '$(Build.ArtifactStagingDirectory)'
#Publish the build artifacts.
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'
publishLocation: 'Container'
#GitHub Release
- task: GitHubRelease@1
condition: and(succeeded(), eq(variables['Release'], true))
inputs:
gitHubConnection: 'github.com_rwilson504'
repositoryName: 'rwilson504/PCFControls'
action: 'create'
target: '$(Build.SourceVersion)'
tagSource: 'userSpecifiedTag'
tag: '$(Build.BuildNumber)'
title: '$(Build.BuildNumber)'
changeLogCompareToRelease: 'lastFullRelease'
changeLogType: 'commitBased'