-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
azure-pipelines.yml
81 lines (71 loc) · 2.17 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
# .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
trigger:
branches:
include:
- main
- perview
paths:
include:
- APKInstaller/**
pr:
branches:
include:
- main
- perview
paths:
include:
- APKInstaller/**
pool:
vmImage: 'windows-latest'
variables:
solution: '*.sln'
buildproject: '**/APKInstaller/*.csproj'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: CmdLine@2
displayName: 'Clone ModernWpf'
inputs:
script: |
echo 'Cloning into sources folder at: $(Build.SourcesDirectory)\..\ModernWpf'
git clone https://github.com/wherewhere/ModernWpf.git --progress --branch master --single-branch --depth=1 $(Build.SourcesDirectory)\..\ModernWpf
exit
- 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: VSBuild@1
displayName: 'Restore Solution'
inputs:
platform: '$(buildPlatform)'
solution: '$(solution)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/t:restore'
msbuildArchitecture: 'x64'
maximumCpuCount: true
- task: VSBuild@1
displayName: 'Build Solution'
inputs:
platform: '$(buildPlatform)'
solution: '$(buildproject)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:PublishSingleFile=true'
msbuildArchitecture: 'x64'
maximumCpuCount: true
- task: CopyFiles@2
displayName: 'Copy Generated Artifacts'
inputs:
SourceFolder: '$(system.defaultworkingdirectory)'
Contents: '**\APKInstaller\bin\**'
TargetFolder: '$(build.artifactstagingdirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
ArtifactName: 'Publish Package'
PathtoPublish: '$(build.artifactstagingdirectory)'