forked from natemcmaster/LettuceEncrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
59 lines (55 loc) · 1.33 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
# https://docs.microsoft.com/azure/devops/pipelines/yaml-schema
trigger:
branches:
include:
- 'master'
- 'release/*'
pr:
- '*'
variables:
- group: AzureKeyVault
- name: BuildNumber
value: $[counter('buildnumber')]
jobs:
- job: Build
strategy:
matrix:
Linux:
vmImage: ubuntu-16.04
MacOS:
vmImage: macOS-latest
Windows:
vmImage: windows-2019
pool:
vmImage: $(vmImage)
steps:
- task: UseDotNet@2
displayName: Install .NET Core 3.1
inputs:
version: '3.1.x'
- task: UseDotNet@2
displayName: Install .NET Core 2.1
inputs:
version: '2.1.x'
- powershell: ./build.ps1 -ci
displayName: Invoke build.ps1
env:
KEYVAULT_CLIENT_SECRET: $(kv-access-token)
- 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
continueOnError: true
inputs:
codeCoverageTool: cobertura
summaryFileLocation: coverlet/reports/Cobertura.xml
- publish: 'artifacts/'
artifact: 'Packages'
displayName: Publish artifacts
condition: and(succeeded(), eq('windows-2019', variables['vmImage']))