Skip to content

Commit c98bdd3

Browse files
committed
Add azure pipeline yaml
1 parent a4b105e commit c98bdd3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

azure-pipelines.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Starter pipeline
2+
# Start with a minimal pipeline that you can customize to build and deploy your code.
3+
# Add steps that build, run tests, deploy, and more:
4+
# https://aka.ms/yaml
5+
6+
trigger:
7+
- master
8+
resources:
9+
- repo: self
10+
queue:
11+
name: Hosted VS2017
12+
steps:
13+
- powershell: |
14+
.\build.ps1 -InstallDependencies:$true -verbose -tasks 'setEnvironment','build','test','deploy'
15+
displayName: 'PowerShell - Build > test > deploy'
16+
env:
17+
psgallerykey: $(psgallerykey)
18+
- task: PublishTestResults@2
19+
displayName: 'Publish Test Results **/TEST-*.xml'
20+
inputs:
21+
testResultsFormat: NUnit

0 commit comments

Comments
 (0)