Update azure-pipelines.yml

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

View File

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