-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
azure-pipelines.yml
70 lines (62 loc) · 1.65 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
# Universal Windows Platform
# Build a Universal Windows Platform project using Visual Studio.
# Add steps that test and distribute an app, save build artifacts, and more:
# https://aka.ms/yaml
trigger:
branches:
include:
- main
- perview
paths:
include:
- APKInstaller/**
pr:
branches:
include:
- main
- perview
paths:
include:
- APKInstaller/**
pool:
vmImage: 'windows-latest'
variables:
solution: '*.sln'
buildPlatform: 'x86|x64|ARM64'
buildConfiguration: 'Release'
appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'
steps:
- task: UseDotNet@2
displayName: 'Setup .NET Core'
inputs:
packageType: sdk
version: 8.0.x
includePreviewVersions: true
- task: VSBuild@1
displayName: 'Restore Solution'
inputs:
platform: 'x64'
solution: '$(solution)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:restore'
msbuildArchitecture: 'x64'
maximumCpuCount: true
- task: VSBuild@1
displayName: 'Build Solution'
inputs:
platform: 'x64'
solution: '$(solution)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)"
/p:AppxPackageDir="$(appxPackageDir)"
/p:AppxBundle=Always
/p:UapAppxPackageBuildMode=SideloadOnly
/p:GenerateAppxPackageOnBuild=true
/p:AppxPackageSigningEnabled=false'
msbuildArchitecture: 'x64'
maximumCpuCount: true
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
ArtifactName: 'MSIX Package'
PathtoPublish: '$(build.artifactstagingdirectory)'