forked from PowerShell/Operation-Validation-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
42 lines (40 loc) · 1.18 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
jobs:
- job: Build_PS_Win2016
pool:
vmImage: vs2017-win2016
steps:
- powershell: |
./build.ps1 -Task Test -Bootstrap -Verbose
displayName: 'Build and Test'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFiles: '**/out/testResults*.xml'
testRunTitle: 'PS_Win2016'
displayName: 'Publish Test Results'
- job: Build_PSCore_Ubuntu1604
pool:
vmImage: ubuntu-16.04
steps:
- script: |
pwsh -c './build.ps1 -Task Test -Bootstrap -Verbose'
displayName: 'Build and Test'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFiles: '**/out/testResults*.xml'
testRunTitle: 'PSCore_Ubuntu1604'
displayName: 'Publish Test Results'
- job: Build_PSCore_MacOS1013
pool:
vmImage: xcode9-macos10.13
steps:
- script: |
pwsh -c './build.ps1 -Task Test -Bootstrap -Verbose'
displayName: 'Build and Test'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFiles: '**/out/testResults*.xml'
testRunTitle: 'PSCore_MacOS1013'
displayName: 'Publish Test Results'