-
Notifications
You must be signed in to change notification settings - Fork 0
/
vsts-integration.yml
130 lines (124 loc) · 3.35 KB
/
vsts-integration.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
variables:
buildArgs: '-c Release'
testArgs: '$(buildArgs) -f netcoreapp3.1 --no-build'
resources:
repositories:
- repository: FodyIntegrationTest
type: github
endpoint: Fody
name: tom-englert/FodyIntegrationTest
jobs:
- job: 'Master'
pool:
vmImage: 'windows-2022'
steps:
- powershell: |
(new-object Net.WebClient).DownloadString("https://raw.github.com/tom-englert/BuildScripts/master/BuildScripts.ps1") | iex
Project-SetVersion "Directory.Build.props" | Build-AppendVersionToBuildNumber
displayName: 'Patch version'
- task: DotNetCoreCLI@2
displayName: 'Build Fody'
inputs:
command: 'build'
projects: 'Fody.sln'
arguments: $(buildArgs)
- task: DotNetCoreCLI@2
displayName: 'Test Fody'
inputs:
command: 'test'
projects: 'Fody.sln'
arguments: $(buildArgs)
- task: DotNetCoreCLI@2
displayName: 'Build Integration'
inputs:
command: 'build'
projects: 'Integration\Integration.sln'
arguments: $(buildArgs)
- task: DotNetCoreCLI@2
displayName: 'Test Integration'
inputs:
command: 'test'
projects: 'Integration\Integration.sln'
arguments: $(buildArgs)
- task: CopyFiles@2
displayName: 'Copy Files to: $(build.artifactstagingdirectory)'
inputs:
SourceFolder: '$(system.defaultworkingdirectory)'
Contents: 'nugets\*.nupkg'
TargetFolder: '$(build.artifactstagingdirectory)'
flattenFolders: true
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: nuget'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
ArtifactName: nuget
- job: 'DotnetBuild'
strategy:
matrix:
'Mac':
image: 'macOS-latest'
'Linux':
image: 'ubuntu-latest'
pool:
vmImage: $(image)
steps:
- task: DotNetCoreCLI@2
displayName: 'Build Fody'
inputs:
command: 'build'
projects: 'Fody.sln'
arguments: $(buildArgs)
- task: DotNetCoreCLI@2
displayName: 'Test Fody'
enabled: false # fody tests currently do not run on mac/linux
inputs:
command: 'test'
projects: 'Fody.sln'
arguments: $(testArgs)
- task: DotNetCoreCLI@2
displayName: 'Build Integration'
inputs:
command: 'build'
projects: 'Integration/Integration.sln'
arguments: $(buildArgs)
- task: DotNetCoreCLI@2
displayName: 'Test Integration'
inputs:
command: 'test'
projects: 'Integration/Integration.sln'
arguments: $(testArgs)
- job: 'Integration'
dependsOn: 'Master'
strategy:
matrix:
'VS2022':
image: 'windows-2022'
vsVersion: '17.0'
'VS2019':
image: 'windows-2019'
vsVersion: '16.0'
pool:
vmImage: $(image)
steps:
- checkout: self
- checkout: FodyIntegrationTest
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'Nuget'
downloadPath: '.\FodyIntegrationTest'
- task: VSBuild@1
displayName: 'Build solution'
inputs:
solution: 'FodyIntegrationTest\FodyIntegrationTest.sln'
vsVersion: $(vsVersion)
msbuildArgs: '-restore'
platform: 'any cpu'
configuration: 'release'
- task: DotNetCoreCLI@2
displayName: 'Test'
inputs:
command: 'test'
projects: 'FodyIntegrationTest\Test\Test.csproj'
arguments: --no-build -c Release