forked from dotnet/dotNext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
50 lines (49 loc) · 1.45 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
variables:
Solution: src/DotNext.sln
TestFolder: src/DotNext.Tests
TestProject: $(TestFolder)/DotNext.Tests.csproj
InternetAccess: false
trigger:
- master
- develop
jobs:
- job: Windows
pool:
vmImage: windows-2019
steps:
- task: DotNetCoreCLI@2
inputs:
command: 'restore'
projects: '$(Solution)'
feedsToUse: 'config'
nugetConfigPath: 'NuGet.config'
arguments: --configuration Debug
- task: DotNetCoreCLI@2
displayName: Test Debug
inputs:
command: test
projects: $(TestProject)
arguments: --configuration Debug --collect "Code coverage"
nobuild: false
testRunTitle: 'Debug on Windows'
publishTestResults: true
- job: Linux
pool:
vmImage: ubuntu-18.04
steps:
- task: DotNetCoreCLI@2
inputs:
command: 'restore'
projects: '$(Solution)'
feedsToUse: 'config'
nugetConfigPath: 'NuGet.config'
arguments: --configuration Debug
- task: DotNetCoreCLI@2
displayName: Test Debug
inputs:
command: test
projects: $(TestProject)
arguments: --configuration Debug --collect "Code coverage"
nobuild: false
testRunTitle: 'Debug on Linux'
publishTestResults: true