forked from natemcmaster/CommandLineUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
91 lines (88 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
trigger:
branches:
include:
- 'master'
- 'release/*'
exclude:
- gh-pages
pr:
- '*'
variables:
- group: AzureKeyVault
- name: BUILD_NUMBER
value: $[counter('buildnumber', 1)]
stages:
- stage: Build
displayName: Build And Test
jobs:
- job: Windows
pool:
vmImage: windows-2019
steps:
- task: UseDotNet@2
displayName: Install .NET Core 3 SDK
inputs:
version: '3.0.x'
packageType: sdk
- task: UseDotNet@2
displayName: Install .NET Core 2.2 runtime
inputs:
version: '2.2.x'
packageType: runtime
- powershell: ./build.ps1 -ci
displayName: Invoke build.ps1
env:
KEYVAULT_CLIENT_SECRET: $(kv-access-token)
- task: PublishTestResults@2
displayName: Upload test results
condition: always()
continueOnError: true
inputs:
testRunTitle: Windows
testRunner: vstest
testResultsFiles: '**/*.trx'
- publish: artifacts/
artifact: Packages
displayName: Publish artifacts
- job: Linux
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: UseDotNet@2
displayName: Install .NET Core 3 SDK
inputs:
version: '3.0.x'
packageType: sdk
- task: UseDotNet@2
displayName: Install .NET Core 2.2 runtime
inputs:
version: '2.2.x'
packageType: runtime
- script: ./build.ps1 -ci
displayName: Invoke build.ps1
- task: PublishTestResults@2
displayName: Upload test results
condition: always()
continueOnError: true
inputs:
testRunTitle: Linux
testRunner: vstest
testResultsFiles: '**/*.trx'
- stage: Publish
jobs:
- job: Docs
pool:
vmImage: windows-2019
steps:
- task: UseDotNet@2
displayName: Install .NET Core 3 SDK
inputs:
version: '3.0.x'
packageType: sdk
- powershell: ./docs/generate.ps1
displayName: Generate docs
- powershell: ./docs/push.ps1 -a $(github-api-token-repo-write)
displayName: Publish GitHub Pages
condition: |
and(not(eq(variables['Build.Reason'], 'PullRequest')),
eq(variables['Build.SourceBranch'], 'refs/heads/master'))