forked from fluentribbon/Fluent.Ribbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
43 lines (37 loc) · 893 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
trigger:
branches:
include:
- '*'
exclude:
- 'refs/tags/*'
paths:
include:
- '*'
exclude:
- appveyor.yml
- Changelog.md
- Readme.md
pool:
vmImage: 'VS2017-Win2016'
steps:
- task: DotNetCoreInstaller@0
inputs:
version: '3.0.100-preview-009990'
- powershell: .\build.ps1 -target CI -Verbosity Verbose -artifact-dir='$(Build.ArtifactStagingDirectory)'
displayName: CI-Build
- task: PublishTestResults@2
displayName: Save test results
condition: succeededOrFailed()
inputs:
testRunner: VSTest
testResultsFiles: '**/*.trx'
- task: PublishBuildArtifacts@1
displayName: Save package artifacts
inputs:
PathtoPublish: $(Build.ArtifactStagingDirectory)
ArtifactName: Package
- task: NuGetCommand@2
displayName: Publish to internal nuget feed
inputs:
command: push
nuGetFeedType: internal