-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
azure-pipelines.yml
53 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
51
52
53
jobs:
- job: windows_powershell
pool:
vmImage: windows-latest
steps:
- powershell: ./build.ps1 -Task Test -Bootstrap -Verbose
displayName: 'Build and Test'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFiles: '**/out/testResults.xml'
testRunTitle: 'windows powerShell'
displayName: 'Publish Test Results'
- job: windows_pwsh
pool:
vmImage: windows-latest
steps:
- pwsh: ./build.ps1 -Task Test -Bootstrap -Verbose
displayName: 'Build and Test'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFiles: '**/out/testResults.xml'
testRunTitle: 'windows pwsh'
displayName: 'Publish Test Results'
- job: ubuntu_pwsh
pool:
vmImage: ubuntu-latest
steps:
- pwsh: ./build.ps1 -Task Test -Bootstrap -Verbose
displayName: 'Build and Test'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFiles: '**/out/testResults.xml'
testRunTitle: 'Ubuntu'
displayName: 'Publish Test Results'
- job: macos_pwsh
pool:
vmImage: macOS-latest
steps:
- pwsh: ./build.ps1 -Task Test -Bootstrap -Verbose
displayName: 'Build and Test'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFiles: '**/out/testResults.xml'
testRunTitle: 'macOS'
displayName: 'Publish Test Results'