forked from Paving-Base/APK-Installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
77 lines (68 loc) · 1.97 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
# 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: CmdLine@2
displayName: 'Clone SharpAdbClient'
inputs:
script: |
echo 'Cloning into sources folder at: $(Build.SourcesDirectory)\..\AdvancedSharpAdbClient'
git clone https://github.com/yungd1plomat/AdvancedSharpAdbClient.git --progress --branch main --single-branch --depth=1 $(Build.SourcesDirectory)\..\AdvancedSharpAdbClient
exit
- task: UseDotNet@2
displayName: 'Setup .NET Core'
inputs:
packageType: sdk
version: 6.0.x
- 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)'