Update azure-pipelines.yml

This commit is contained in:
Joshua Scott 2018-10-20 01:13:43 +01:00 committed by GitHub
parent 4cad324387
commit 05e6d416bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -14,4 +14,11 @@ steps:
cmake .. cmake ..
make make
make test CTEST_OUTPUT_ON_FAILURE=TRUE make test CTEST_OUTPUT_ON_FAILURE=TRUE
displayName: 'make' displayName: 'Compile'
- script: |
make test CTEST_OUTPUT_ON_FAILURE=TRUE
displayName: 'Test'
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: '**/test-*.xml'