-
Notifications
You must be signed in to change notification settings - Fork 132
/
azure-pipelines.yml
45 lines (39 loc) · 1013 Bytes
/
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
variables:
solution: 'Sources/Trill.sln'
jobs:
- job: 'CSharp_Windows'
pool:
vmImage: windows-latest
displayName: 'C# (Windows)'
strategy:
maxParallel: 4
matrix:
AnyCPU-Debug:
buildPlatform: 'Any CPU'
buildConfiguration: 'Debug'
AnyCPU-Release:
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
x64-Debug:
buildPlatform: 'x64'
buildConfiguration: 'Debug'
x64-Release:
buildPlatform: 'x64'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@0
inputs:
versionSpec: '5.8.0'
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: VSTest@2
inputs:
testAssemblyVer2: 'bintest\**\netcoreapp3.1\SimpleTesting.dll'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'