forked from reaqtive/reaqtor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
239 lines (202 loc) · 7.04 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
trigger:
branches:
include:
- main
- rel/*
pr:
branches:
include:
- main
- rel/*
variables:
BuildPlatform: Any CPU
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
stages:
- stage: Build
jobs:
- template: azure-pipelines-build-jobs.yml
parameters:
pools: [ { name: 'Windows', pool: 'vs2019-preview' }, { name: 'Linux', pool: { vmImage: 'ubuntu-latest' } } ]
projects: [ 'Nuqleon', 'Reaqtive', 'Reaqtor' ]
configurations: [ 'Debug', 'Release' ]
- job: Reaqtor_Glitching_Tests
displayName: Run Reaqtor Remoting Glitching Tests
pool: vs2019-preview
steps:
- task: UseDotNet@2
displayName: Use .NET Core 5.x SDK
inputs:
version: 5.x
performMultiLevelLookup: true
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install -g nbgv
displayName: Install NBGV tool
- script: nbgv cloud -a
displayName: Set Version
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install -g dotnet-reportgenerator-globaltool
displayName: Install ReportGenerator tool
- task: DotNetCoreCLI@2
inputs:
command: test
workingDirectory: Reaqtor/Samples/Remoting/Tests.Reaqtor.Remoting.Glitching
arguments: -c Release -p:EnableGlitching=true /bl:$(Build.ArtifactStagingDirectory)/Logs/Glitching.Test.binlog --settings $(Build.SourcesDirectory)/coverlet.runsettings --collect:"XPlat Code Coverage" --blame --blame-hang-timeout 5m
testRunTitle: Reaqtor Glitching
displayName: Run Unit Tests
- script: reportgenerator -reports:$(Agent.TempDirectory)/**/coverage.cobertura.xml -sourcedirs:$(Build.SourcesDirectory) -targetdir:$(Build.ArtifactStagingDirectory)/coverage/Glitching -reporttypes:"Cobertura"
displayName: Consolidate Coverage Runs
condition: succeededOrFailed()
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)/coverage
artifactName: RawCoverage
parallel: true
parallelCount: 8
displayName: Publish Raw Coverage Output
condition: succeededOrFailed()
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)/Logs
artifactName: Logs
parallel: true
parallelCount: 8
displayName: Publish Build Logs
condition: always()
- job: Reaqtor_Dotnet_Format
displayName: Run dotnet-format checks
pool: vs2019-preview
steps:
- task: UseDotNet@2
displayName: Use .NET Core 5.x SDK
inputs:
version: 5.x
performMultiLevelLookup: true
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install -g dotnet-format
displayName: Install dotnet-format tool
- script: dotnet-format --check All.sln
displayName: Run dotnet-format
- job: Build_and_Pack
pool: vs2019-preview
steps:
- task: UseDotNet@2
displayName: Use .NET Core 5.x SDK
inputs:
version: 5.x
performMultiLevelLookup: true
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install -g nbgv
displayName: Install NBGV tool
- script: nbgv cloud -a
displayName: Set Version
- task: DotNetCoreCLI@2
inputs:
command: build
projects: All.sln
configuration: Release
verbosity: Minimal
arguments: -c Release /p:CreatePackage=true /p:PackageOutputPath=$(Build.ArtifactStagingDirectory)/artifacts /bl:$(Build.ArtifactStagingDirectory)/Logs/Build.binlog
displayName: Build and Pack
- publish: config
artifact: SigningScripts
displayName: Publish signing config
- script: del $(Build.ArtifactStagingDirectory)\artifacts\*.symbols.nupkg
displayName: Remove redundant packages from upload
- publish: $(Build.ArtifactStagingDirectory)/artifacts
displayName: Publish artifacts
artifact: BuildPackages
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)/Logs
artifactName: Logs
displayName: Publish Build Logs
condition: always()
- stage: ProcessCodeCoverage
dependsOn: Build
condition: succeededOrFailed()
jobs:
- job: ProcessCoverage
pool:
vmImage: ubuntu-latest
steps:
- checkout: self
fetchDepth: 1
- download: current
artifact: RawCoverage
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install -g dotnet-reportgenerator-globaltool
displayName: Install ReportGenerator tool
- script: |
dotnet tool update -g dotnet-reportgenerator-globaltool
export PATH=$PATH:$HOME/.dotnet/tools
. ~/.bashrc
reportgenerator -reports:$(Pipeline.Workspace)/RawCoverage/**/*.xml -sourcedirs:$(Build.SourcesDirectory) -targetdir:$(Build.SourcesDirectory)/coverlet/reports -reporttypes:"Cobertura;lcov"
displayName: Consolidate Reports from Jobs
- task: PublishCodeCoverageResults@1
displayName: Publish code coverage
inputs:
codeCoverageTool: Cobertura
pathToSources: $(Build.SourcesDirectory)
summaryFileLocation: $(Build.SourcesDirectory)/coverlet/reports/Cobertura.xml
- script: |
bash <(curl -s https://codecov.io/bash)
displayName: 'Upload to codecov.io'
workingDirectory: $(Build.SourcesDirectory)/coverlet/reports
env:
CODECOV_TOKEN: $(CODECOV_TOKEN)
condition: ne(variables['build.reason'], 'PullRequest')
- stage: CodeSign
dependsOn: Build
condition: and(succeeded('Build'), not(or(eq(variables['build.reason'], 'PullRequest'), eq(variables['build.reason'], 'Schedule'))))
jobs:
- deployment: CodeSign
displayName: Code Signing
pool:
vmImage: windows-latest
environment: Code Sign
variables:
- group: SignClient Credentials
strategy:
runOnce:
deploy:
steps:
- download: current
artifact: SigningScripts
- download: current
artifact: BuildPackages
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . SignClient
displayName: Install SignTool tool
- pwsh: |
.\SignClient "Sign" `
--baseDirectory "$(Pipeline.Workspace)\BuildPackages" `
--input "**/*.nupkg" `
--config "$(Pipeline.Workspace)\SigningScripts\signclient.json" `
--user "$(SignClientUser)" `
--secret "$(SignClientSecret)" `
--name "Reaqtive" `
--description "Reaqtive" `
--descriptionUrl "https://github.com/reaqtive/reaqtor" `
--logLevel "Verbose"
displayName: Sign packages
- publish: $(Pipeline.Workspace)/BuildPackages
displayName: Publish Signed Packages
artifact: SignedPackages