-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathazure-pipelines.yml
734 lines (655 loc) · 30.1 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
# .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
# name controls the Build.BuildNumber variable
# We'll use the BuildNumber as the final two components of our app's version number
#
# App version number componnents can only be 5 digits or the build fails
# So we'll design a number using a 2 digit year and 3 digit day of year
#
# NOTE: The documentation isn't clear if DayOfYear is always three digits, so
# we'll need to watch this.
#
# NOTE: A two-digit year is less than ideal, but we find ourselves in year 20
# and it's unlikely this will be around in 80 more years
name: $(Year:yy)$(DayOfYear).$(Rev:r)
trigger:
branches:
include:
- master
- "release/*"
- "staging/*"
pool:
vmImage: 'windows-2022'
variables:
# must be created in the azure UI under Pipelines > Library and specify accessKey, secretKey, region, and bucket
- group: 's3-public-bucket-upload'
# Holds all signing-related variables. Provide them the same was as the var group above.
- group: 'windows-code-sign'
- name: solution
value: '**/*.sln'
- name: projects
value: '**/*proj'
- name: buildPlatform
value: 'Any CPU'
- name: buildConfiguration
value: 'Release'
- name: versionBuildComponents
value: '.$(Build.BuildNumber)'
#resources:
# repositories:
# - repository: deploy-morphicweb
# type: github
# endpoint: raisingthefloor
# name: raisingthefloor/deploy-morphicweb
# ref: master
stages:
- stage: build
jobs:
- job: build
steps:
- task: UseDotNet@2
displayName: 'Use .NET Runtime 6.0.25 (install for AuzreSignTool 4.0.1)'
inputs:
packageType: runtime
version: 6.0.25
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: UseDotNet@2
displayName: 'Use .NET SDK 8.0.201'
inputs:
packageType: sdk
version: 8.0.201
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: DotNetCoreCLI@2
displayName: 'Install AzureSignTool 4.0.1'
inputs:
command: 'custom'
custom: 'tool'
arguments: 'install --global AzureSignTool --version 4.0.1'
# Set a $(BUILD_TYPE) variable
- bash: |
BUILD_TYPE="Development"
if [[ "${BRANCH}" == *"staging/"* ]]; then
BUILD_TYPE="Staging"
elif [[ "${BRANCH}" == *"release/"* ]]; then
BUILD_TYPE="Production"
fi
echo "##vso[task.setvariable variable=BUILD_TYPE]${BUILD_TYPE}"
env:
BRANCH: $(Build.SourceBranch)
BRANCH_NAME: $(Build.SourceBranchName)
- task: Bash@3
displayName: "write build info"
env:
BRANCH: $(Build.SourceBranch)
BRANCH_NAME: $(Build.SourceBranchName)
COMMIT: $(Build.SourceVersion)
BUILD_NUM: $(Build.BuildNumber)
inputs:
targetType: 'filePath'
filePath: set-build-info.sh
- task: MSBuild@1
displayName: "Build Morphic Client (x86)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: '$(Build.SourcesDirectory)\Morphic.Client\Morphic.Client.csproj'
configuration: '$(buildConfiguration)'
msbuildArguments: '/t:restore,build /p:RuntimeIdentifier=win-x86 /p:BuildType=$(BUILD_TYPE)'
- task: MSBuild@1
displayName: "Publish Morphic Client (x86)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: '$(Build.SourcesDirectory)\Morphic.Client\Morphic.Client.csproj'
configuration: '$(buildConfiguration)'
msbuildArguments: '/t:publish /p:RuntimeIdentifier=win-x86 /p:BuildType=$(BUILD_TYPE)'
# - task: CmdLine@2
# inputs:
# targetType: 'inline'
# script: >
# tree $(Build.SourcesDirectory)\Morphic.Client\bin /f
- task: CmdLine@2
displayName: 'sign morphic client exe (x86)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvs "$(SigningClientSecret)"
-kvt "$(AzureTenantId)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v
$(Build.SourcesDirectory)\Morphic.Client\bin\$(buildConfiguration)\net8.0-windows10.0.22621.0\win-x86\publish\Morphic.exe
- task: VSBuild@1
displayName: "restore installer dependencies"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup\Morphic.Setup.wixproj'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:restore'
- task: VSBuild@1
displayName: "restore installer dependencies (enterprise)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup.Enterprise\Morphic.Setup.Enterprise.wixproj'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:restore'
- task: VSBuild@1
displayName: "build installer (x86)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup\Morphic.Setup.wixproj'
platform: 'x86'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:BuildType=$(BUILD_TYPE) /p:BuildProjectReferences=false'
- task: CmdLine@2
displayName: 'sign installer (x86)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvt "$(AzureTenantId)"
-kvs "$(SigningClientSecret)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v $(System.DefaultWorkingDirectory)\Morphic.Setup\bin\Release\x86\en-US\MorphicSetup.msi
- publish: $(System.DefaultWorkingDirectory)\Morphic.Setup\bin\Release\x86\en-US\MorphicSetup.msi
displayName: "Cache MSI for upload (x86)"
artifact: msi-x86
- task: VSBuild@1
displayName: "build installer (x86 enterprise)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup.Enterprise\Morphic.Setup.Enterprise.wixproj'
platform: 'x86'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:BuildType=$(BUILD_TYPE) /p:BuildProjectReferences=false'
- task: CmdLine@2
displayName: 'sign installer (x86 enterprise)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvt "$(AzureTenantId)"
-kvs "$(SigningClientSecret)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v $(System.DefaultWorkingDirectory)\Morphic.Setup.Enterprise\bin\Release\x86\en-US\MorphicEnterpriseSetup.msi
- publish: $(System.DefaultWorkingDirectory)\Morphic.Setup.Enterprise\bin\Release\x86\en-US\MorphicEnterpriseSetup.msi
displayName: "Cache MSI for upload (x86 enterprise)"
artifact: msi-x86-enterprise
- task: MSBuild@1
displayName: "Build Morphic Client (x64)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: '$(Build.SourcesDirectory)\Morphic.Client\Morphic.Client.csproj'
configuration: '$(buildConfiguration)'
msbuildArguments: '/t:restore,build /p:RuntimeIdentifier=win-x64 /p:BuildType=$(BUILD_TYPE)'
# - task: MSBuild@1
# displayName: "Build Morphic Client Tests (x64)"
# env:
# VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
# inputs:
# solution: '$(Build.SourcesDirectory)\Morphic.Core.Tests\Morphic.Core.Tests.csproj'
# configuration: '$(buildConfiguration)'
# msbuildArguments: '/t:restore,build /p:RuntimeIdentifier=win-x64 /p:BuildType=$(BUILD_TYPE)'
# - task: MSBuild@1
# displayName: "Publish Morphic Client Tests (x64)"
# env:
# VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
# inputs:
# solution: '$(Build.SourcesDirectory)\Morphic.Core.Tests\Morphic.Core.Tests.csproj'
# configuration: '$(buildConfiguration)'
# msbuildArguments: '/t:publish /p:RuntimeIdentifier=win-x64 /p:BuildType=$(BUILD_TYPE)'
# - task: VSTest@2
# displayName: "execute tests (x64)"
# inputs:
# testAssemblyVer2: |
# **\bin\$(buildConfiguration)\**\publish\*.Tests.dll
# !**\obj\**
# !**\ref\**
# !**\Microsoft*.dll
# !**\xunit.runner.visualstudio.testadapter.dll
# !**\xunit.runner.visualstudio.dotnetcore.testadapter.dll
# platform: '$(buildPlatform)'
# configuration: '$(buildConfiguration)'
- task: MSBuild@1
displayName: "Publish Morphic Client (x64)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: '$(Build.SourcesDirectory)\Morphic.Client\Morphic.Client.csproj'
configuration: '$(buildConfiguration)'
msbuildArguments: '/t:publish /p:RuntimeIdentifier=win-x64 /p:BuildType=$(BUILD_TYPE)'
- task: CmdLine@2
inputs:
targetType: 'inline'
script: >
tree $(Build.SourcesDirectory)\Morphic.Client\bin /f
- task: CmdLine@2
displayName: 'sign morphic client exe (x64)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvs "$(SigningClientSecret)"
-kvt "$(AzureTenantId)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v
$(Build.SourcesDirectory)\Morphic.Client\bin\$(buildConfiguration)\net8.0-windows10.0.22621.0\win-x64\publish\Morphic.exe
- task: VSBuild@1
displayName: "restore installer dependencies"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup\Morphic.Setup.wixproj'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:restore'
- task: VSBuild@1
displayName: "restore installer dependencies (enterprise)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup.Enterprise\Morphic.Setup.Enterprise.wixproj'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:restore'
- task: VSBuild@1
displayName: "build installer (x64)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup\Morphic.Setup.wixproj'
platform: 'x64'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:BuildType=$(BUILD_TYPE) /p:BuildProjectReferences=false'
- task: CmdLine@2
displayName: 'sign installer (x64)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvt "$(AzureTenantId)"
-kvs "$(SigningClientSecret)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v $(System.DefaultWorkingDirectory)\Morphic.Setup\bin\Release\x64\en-US\MorphicSetup.msi
- publish: $(System.DefaultWorkingDirectory)\Morphic.Setup\bin\Release\x64\en-US\MorphicSetup.msi
displayName: "Cache MSI for upload (x64)"
artifact: msi-x64
- task: VSBuild@1
displayName: "build installer (x64 enterprise)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup.Enterprise\Morphic.Setup.Enterprise.wixproj'
platform: 'x64'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:BuildType=$(BUILD_TYPE) /p:BuildProjectReferences=false'
- task: CmdLine@2
displayName: 'sign installer (x64 enterprise)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvt "$(AzureTenantId)"
-kvs "$(SigningClientSecret)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v $(System.DefaultWorkingDirectory)\Morphic.Setup.Enterprise\bin\Release\x64\en-US\MorphicEnterpriseSetup.msi
- publish: $(System.DefaultWorkingDirectory)\Morphic.Setup.Enterprise\bin\Release\x64\en-US\MorphicEnterpriseSetup.msi
displayName: "Cache MSI for upload (x64 enterprise)"
artifact: msi-x64-enterprise
- task: MSBuild@1
displayName: "Build Morphic Client (arm64)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: '$(Build.SourcesDirectory)\Morphic.Client\Morphic.Client.csproj'
configuration: '$(buildConfiguration)'
msbuildArguments: '/t:restore,build /p:RuntimeIdentifier=win-arm64 /p:BuildType=$(BUILD_TYPE)'
- task: MSBuild@1
displayName: "Publish Morphic Client (arm64)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: '$(Build.SourcesDirectory)\Morphic.Client\Morphic.Client.csproj'
configuration: '$(buildConfiguration)'
msbuildArguments: '/t:publish /p:RuntimeIdentifier=win-arm64 /p:BuildType=$(BUILD_TYPE)'
# - task: CmdLine@2
# inputs:
# targetType: 'inline'
# script: >
# tree $(Build.SourcesDirectory)\Morphic.Client\bin /f
- task: CmdLine@2
displayName: 'sign morphic client exe (arm64)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvs "$(SigningClientSecret)"
-kvt "$(AzureTenantId)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v
$(Build.SourcesDirectory)\Morphic.Client\bin\$(buildConfiguration)\net8.0-windows10.0.22621.0\win-arm64\publish\Morphic.exe
- task: VSBuild@1
displayName: "restore installer dependencies"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup\Morphic.Setup.wixproj'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:restore'
- task: VSBuild@1
displayName: "restore installer dependencies (enterprise)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup.Enterprise\Morphic.Setup.Enterprise.wixproj'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:restore'
- task: VSBuild@1
displayName: "build installer (arm64)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup\Morphic.Setup.wixproj'
platform: 'arm64'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:BuildType=$(BUILD_TYPE) /p:BuildProjectReferences=false'
- task: CmdLine@2
displayName: 'sign installer (arm64)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvt "$(AzureTenantId)"
-kvs "$(SigningClientSecret)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v $(System.DefaultWorkingDirectory)\Morphic.Setup\bin\Release\arm64\en-US\MorphicSetup.msi
- publish: $(System.DefaultWorkingDirectory)\Morphic.Setup\bin\Release\arm64\en-US\MorphicSetup.msi
displayName: "Cache MSI for upload (arm64)"
artifact: msi-arm64
- task: VSBuild@1
displayName: "build installer (arm64 enterprise)"
env:
VERSIONBUILDCOMPONENTS: '$(versionBuildComponents)'
inputs:
solution: 'Morphic.Setup.Enterprise\Morphic.Setup.Enterprise.wixproj'
platform: 'arm64'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:BuildType=$(BUILD_TYPE) /p:BuildProjectReferences=false'
- task: CmdLine@2
displayName: 'sign installer (arm64 enterprise)'
inputs:
targetType: 'inline'
# NOTE: if we experience downtime with our cert provider's timestamp servers (which causes signing to fail),
# we can use the test server (production timestamps, but from a 2nd provider); note that we should NOT do
# this for any public preview or release builds...only for internal testing or emergency scenarios.
# -tr "$(TimestampUrl)"
# -tr "$(TimestampUrl2)"
# vs.
# -tr "$(TestOnlyTimestampUrl)"
script: >
AzureSignTool sign
-d Morphic
-du "$(SigningURL)"
-kvu "$(SigningVaultURL)"
-kvi "$(SigningClientId)"
-kvt "$(AzureTenantId)"
-kvs "$(SigningClientSecret)"
-kvc "$(SigningCertName)"
-tr "$(TimestampUrl2)"
-v $(System.DefaultWorkingDirectory)\Morphic.Setup.Enterprise\bin\Release\arm64\en-US\MorphicEnterpriseSetup.msi
- publish: $(System.DefaultWorkingDirectory)\Morphic.Setup.Enterprise\bin\Release\arm64\en-US\MorphicEnterpriseSetup.msi
displayName: "Cache MSI for upload (arm64 enterprise)"
artifact: msi-arm64-enterprise
- publish: $(System.DefaultWorkingDirectory)\Morphic.Client\BuildVersion.txt
displayName: "save build version numbers"
artifact: build-version
- stage: upload
jobs:
- job: publish_installer
pool:
vmImage: "ubuntu-22.04"
steps:
# # We actually want to operate in the web project so we can update URLs (when necessary)
# - checkout: deploy-morphicweb
# persistCredentials: true
# path: deploy-morphicweb
- download: current
artifact: msi-x86
- download: current
artifact: msi-x86-enterprise
- download: current
artifact: msi-x64
- download: current
artifact: msi-x64-enterprise
- download: current
artifact: msi-arm64
- download: current
artifact: msi-arm64-enterprise
- download: current
artifact: build-version
# - task: DownloadPipelineArtifact@2
# displayName: "Capture MSI for upload (x86)"
# inputs:
# source: 'current'
# artifact: msi-x86
# path: msi-x86
# - task: DownloadPipelineArtifact@2
# displayName: "Capture MSI for upload (x64)"
# inputs:
# source: 'current'
# artifact: msi-x64
# path: msi-x64
# - task: DownloadPipelineArtifact@2
# displayName: "Capture MSI for upload (arm64)"
# inputs:
# source: 'current'
# artifact: msi-arm64
# path: msi-arm64
- task: Bash@3
displayName: "upload MSIs to s3"
env:
AWS_ACCESS_KEY_ID: $(accessKey)
AWS_SECRET_ACCESS_KEY: $(secretKey)
AWS_DEFAULT_REGION: $(region)
BUCKET: $(bucket)
BRANCH: $(Build.SourceBranch)
BRANCH_NAME: $(Build.SourceBranchName)
inputs:
targetType: 'inline'
script: |
# automatically exit if any command returns an error exit code
set -e
# print all commands to the terminal output
set -x
EXTRA_ARGS=""
S3_BUILD_OPERATING_SYSTEM="win"
S3_BUILD_ARCHITECTURE=""
S3_BUILD_TYPE=""
if [[ "${BRANCH_NAME}" == "master" ]]; then
echo "detected master build"
S3_BUILD_TYPE="edge"
EXTRA_ARGS="--expires $(date -d '+42 days' --iso-8601=seconds)"
elif [[ "${BRANCH}" == *"staging/"* ]]; then
echo "detected staging build"
S3_BUILD_TYPE="staging"
EXTRA_ARGS="--expires $(date -d '+14 days' --iso-8601=seconds)"
elif [[ "${BRANCH}" == *"release/"* ]]; then
echo "detected release build"
S3_BUILD_TYPE="stable"
else
echo "detected PR build"
S3_BUILD_TYPE="internal"
EXTRA_ARGS="--expires $(date -d '+2 days' --iso-8601=seconds)"
fi
S3_PUBLISHED_HTTP_URL="https://d23vryjv7k8eyb.cloudfront.net"
publishInstaller() {
VERSION=$(sed -n 1p ${AGENT_BUILDDIRECTORY}/build-version/BuildVersion.txt | tr -d [:space:])
ASSEMBLY_VERSION=$(sed -n 2p ${AGENT_BUILDDIRECTORY}/build-version/BuildVersion.txt | tr -d [:space:])
LOCAL_MSI_SOURCE="${AGENT_BUILDDIRECTORY}/${LOCAL_MSI_DIR}/${MSI_NAME_BASE}.msi"
LOCAL_APPCAST_SOURCE="${AGENT_BUILDDIRECTORY}/${MSI_NAME_BASE}-v${VERSION}.appcast.xml"
S3_MSI_OBJECT_NAME="${S3_BUILD_OPERATING_SYSTEM}/${S3_BUILD_ARCHITECTURE}/${S3_BUILD_TYPE}/${MSI_NAME_BASE}-v${VERSION}-${S3_BUILD_ARCHITECTURE}.msi"
S3_APPCAST_OBJECT_NAME="${S3_BUILD_OPERATING_SYSTEM}/${S3_BUILD_ARCHITECTURE}/${S3_BUILD_TYPE}/${MSI_NAME_BASE}-v${VERSION}.appcast.xml"
cat > "${LOCAL_APPCAST_SOURCE}" <<EOF
<?xml version="1.0" encoding="utf-8"?>
<item>
<version>${ASSEMBLY_VERSION}</version>
<url>${S3_PUBLISHED_HTTP_URL}/${S3_MSI_OBJECT_NAME}</url>
</item>
EOF
echo ${S3_PUBLISHED_HTTP_URL}/${S3_APPCAST_OBJECT_NAME}
cat "${LOCAL_APPCAST_SOURCE}"
# debug: output the contents of the build directory
ls -al ${AGENT_BUILDDIRECTORY}
aws s3 cp $EXTRA_ARGS "${LOCAL_MSI_SOURCE}" "s3://${BUCKET}/${S3_MSI_OBJECT_NAME}"
aws s3 cp $EXTRA_ARGS "${LOCAL_APPCAST_SOURCE}" "s3://${BUCKET}/${S3_APPCAST_OBJECT_NAME}"
}
echo "Upload MSI to S3 (x86)"
MSI_NAME_BASE="MorphicSetup"
LOCAL_MSI_DIR="msi-x86"
S3_BUILD_ARCHITECTURE="x86"
publishInstaller
echo "Upload MSI to S3 (x86 enterprise)"
MSI_NAME_BASE="MorphicEnterpriseSetup"
LOCAL_MSI_DIR="msi-x86-enterprise"
S3_BUILD_ARCHITECTURE="x86"
publishInstaller
echo "Upload MSI to S3 (x64)"
MSI_NAME_BASE="MorphicSetup"
LOCAL_MSI_DIR="msi-x64"
S3_BUILD_ARCHITECTURE="x64"
publishInstaller
echo "Upload MSI to S3 (x64 enterprise)"
MSI_NAME_BASE="MorphicEnterpriseSetup"
LOCAL_MSI_DIR="msi-x64-enterprise"
S3_BUILD_ARCHITECTURE="x64"
publishInstaller
echo "Upload MSI to S3 (arm64)"
MSI_NAME_BASE="MorphicSetup"
LOCAL_MSI_DIR="msi-arm64"
S3_BUILD_ARCHITECTURE="arm64"
publishInstaller
echo "Upload MSI to S3 (arm64 enterprise)"
MSI_NAME_BASE="MorphicEnterpriseSetup"
LOCAL_MSI_DIR="msi-arm64-enterprise"
S3_BUILD_ARCHITECTURE="arm64"
publishInstaller
MORPHIC_S3_MSI_OBJECT_NAME=$S3_MSI_OBJECT_NAME
MORPHIC_S3_APPCAST_OBJECT_NAME=$S3_APPCAST_OBJECT_NAME
# # TODO: do we want this to update staging and prod automatically, depending on branch?
# if [[ "${BRANCH_NAME}" == "master" ]]; then
# echo "updating dev environment urls"
# # azure checks out headlessly, so we need to swap to the branch
# git checkout ${BRANCH_NAME}
#
# TO_EDIT=environments/dev/patches/set-env.yaml
#
# # client
# go run update-env-var.go ${TO_EDIT} "MORPHIC_WINDOWS_DOWNLOAD_URL" "${S3_PUBLISHED_HTTP_URL}/${MORPHIC_S3_MSI_OBJECT_NAME}"
# go run update-env-var.go ${TO_EDIT} "MORPHIC_WINDOWS_APPCAST_URL" "${S3_PUBLISHED_HTTP_URL}/${MORPHIC_S3_APPCAST_OBJECT_NAME}"
#
# git config --global user.email "[email protected]"
# git config --global user.name "buildmaster"
# git commit ${TO_EDIT} -m "buildmaster: updating windows client urls"
# git push
# fi