forked from natemcmaster/DotNetCorePlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
47 lines (44 loc) · 1011 Bytes
/
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
trigger:
- main
pr:
- '*'
variables:
- 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 SDK
inputs:
version: '3.1.x'
packageType: sdk
- 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: Upload test results
condition: always()
continueOnError: true
inputs:
testRunTitle: $(vmImage)
testRunner: vstest
testResultsFiles: '**/*.trx'
- publish: 'artifacts/'
artifact: 'Packages'
displayName: Publish artifacts
condition: and(succeeded(), eq('windows-2019', variables['vmImage']))