diff --git a/.azure-pipelines/steps/meson.yml b/.azure-pipelines/steps/meson.yml index 8cd2cca..b2a44c5 100644 --- a/.azure-pipelines/steps/meson.yml +++ b/.azure-pipelines/steps/meson.yml @@ -14,8 +14,13 @@ steps: - bash: | meson test --print-errorlogs \ --wrap='valgrind --leak-check=full --track-origins=yes --error-exitcode=99' + displayName: 'Tests (Meson)' + workingDirectory: ${{ parameters.workdir }} + - bash: | + shopt -s nullglob for file in "$(pwd)"/meson-logs/* ; do echo "##vso[task.uploadfile]${file}" done - displayName: 'Tests (Meson)' + displayName: 'Save Results (Meson)' workingDirectory: ${{ parameters.workdir }} + condition: always()