Skip to content

Commit

Permalink
Update azure-pipelines.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll authored Feb 2, 2019
1 parent 65751b4 commit 80d8f91
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,24 @@ steps:
- powershell: .\src\UniversalDashboard.UITest\shebang.tests.ps1 -Release -Integration
displayName: Start Integration Tests
errorActionPreference: continue

- task: PublishTestResults@2
inputs:
testResultsFormat: 'NUnit' # Options: JUnit, NUnit, VSTest, xUnit
testResultsFiles: '**/*TEST-*.xml'
searchFolder: '$(System.DefaultWorkingDirectory)' # Optional
mergeTestResults: true # Optional
#testRunTitle:
#buildPlatform: # Optional
#buildConfiguration: # Optional
publishRunAttachments: true # Optional

- powershell: Compress-Archive -Path .\src\output -DestinationPath $(Build.ArtifactStagingDirectory) -Force
displayName: Create Output Zip File
errorActionPreference: continue

# Publish Pipeline Artifact
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'UniversalDashboard'
targetPath: $(Build.ArtifactStagingDirectory)

0 comments on commit 80d8f91

Please sign in to comment.