-
Notifications
You must be signed in to change notification settings - Fork 43
/
azure-pipelines.yml
48 lines (44 loc) · 1.29 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
jobs:
- job: Test_windows2019
pool:
vmImage: windows-2019
steps:
- powershell: "./CI/Tests.AzureDevops.ps1"
displayName: "Running Tests Windows 2019"
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: NUnit
testResultsFiles: '**/TestsResults.xml'
- job: Test_windows2016
pool:
vmImage: vs2017-win2016
steps:
- powershell: "./CI/Tests.AzureDevops.ps1"
displayName: "Running Tests Windows 2016"
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: NUnit
- job: Test_Ubuntu
pool:
vmImage: ubuntu-latest
steps:
- script: "pwsh -c ./CI/Tests.AzureDevops.ps1"
displayName: "Running Tests Ubuntu"
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: NUnit
testResultsFiles: '**/TestsResults.xml'
- job: Test_macos
pool:
vmImage: macOS-10.14
steps:
- script: "pwsh -c ./CI/Tests.AzureDevops.ps1"
displayName: "Running Tests MacOS"
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: NUnit
testResultsFiles: '**/TestsResults.xml'