forked from natemcmaster/CommandLineUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
73 lines (70 loc) · 1.86 KB
/
azure-pipelines.yml
File metadata and controls
73 lines (70 loc) · 1.86 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
trigger:
branches:
include:
- 'main'
- 'release/*'
exclude:
- gh-pages
pr:
- '*'
variables:
- name: BUILD_NUMBER
value: $[counter('buildnumber', 1)]
jobs:
- job: Build
strategy:
matrix:
Linux:
vmImage: ubuntu-latest
MacOS:
vmImage: macOS-latest
Windows:
vmImage: windows-latest
pool:
vmImage: $(vmImage)
steps:
- task: UseDotNet@2
displayName: Install .NET 5 SDK
inputs:
version: '5.x'
packageType: sdk
- task: UseDotNet@2
displayName: Install .NET Core 3.1 runtime
inputs:
version: '3.1.x'
packageType: runtime
- task: UseDotNet@2
displayName: Install .NET Core 2.1 runtime
inputs:
version: '2.1.x'
packageType: runtime
- powershell: ./build.ps1 -ci
displayName: Invoke build.ps1
- task: PublishTestResults@2
displayName: Publish test results
condition: always()
continueOnError: true
inputs:
testRunTitle: $(vmImage)
testRunner: vstest
testResultsFiles: '**/*.trx'
- task: PublishCodeCoverageResults@1
displayName: Publish code coverage results
inputs:
codeCoverageTool: cobertura
summaryFileLocation: coverlet/reports/Cobertura.xml
- publish: artifacts/
artifact: Packages
displayName: Publish artifacts
condition: and(succeeded(), eq('windows-latest', variables['vmImage']))
- powershell: ./docs/generate.ps1 -NoBuild
displayName: Generate docs
condition: and(succeeded(), eq('windows-latest', variables['vmImage']))
- powershell: ./docs/push.ps1 -a $(github-api-token-repo-write)
displayName: Publish docs to GitHub Pages
condition: |
and(
succeeded(),
eq('windows-latest', variables['vmImage']),
not(eq(variables['Build.Reason'], 'PullRequest')),
eq(variables['Build.SourceBranch'], 'refs/heads/master'))