-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
79 lines (70 loc) · 1.72 KB
/
azure-pipelines.yml
File metadata and controls
79 lines (70 loc) · 1.72 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
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
# 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/**
strategy:
matrix:
x86:
config: x86
x64:
config: x64
ARM64:
config: ARM64
pool:
vmImage: windows-latest
variables:
solution: "*.slnx"
buildPlatform: $(config)
buildConfiguration: Release
appxPackageDir: $(build.artifactStagingDirectory)\AppxPackages\\
steps:
- task: UseDotNet@2
displayName: Setup .NET Core App
inputs:
packageType: sdk
version: 10.0.x
- task: VSBuild@1
displayName: Restore Solution
inputs:
platform: $(config)
solution: $(solution)
configuration: $(buildConfiguration)
msbuildArgs: /t:restore
msbuildArchitecture: x64
maximumCpuCount: true
- task: VSBuild@1
displayName: Build Solution
inputs:
platform: $(config)
solution: $(solution)
configuration: $(buildConfiguration)
msbuildArgs: /p:AppxBundlePlatforms=$(buildPlatform)
/p:AppxPackageDir=$(appxPackageDir)
/p:AppxBundle=Never
/p:UapAppxPackageBuildMode=SideloadOnly
/p:GenerateAppxPackageOnBuild=true
/p:AppxPackageSigningEnabled=false
/p:IsPackable=false
msbuildArchitecture: x64
maximumCpuCount: true
- task: PublishBuildArtifacts@1
displayName: Publish Artifact
inputs:
ArtifactName: MSIX Package
PathtoPublish: $(build.artifactstagingdirectory)