CI: Save the Meson logs as downloadable files

This uploads the files saves to meson-build/meson-logs/ and associates
them to the pipeline task, which makes them availabl for download in the
Azure Pipelines web interface.
master
Adrian Perez de Castro 2019-08-06 12:25:29 +03:00 committed by Ran Benita
parent 69651bf77a
commit 7413c6f577
1 changed files with 3 additions and 0 deletions

View File

@ -27,4 +27,7 @@ jobs:
ninja -C meson-build
meson test -C meson-build --print-errorlogs \
--wrap='valgrind --leak-check=full --track-origins=yes --error-exitcode=99'
for file in "$(pwd)"/meson-build/meson-logs/* ; do
echo "##vso[task.uploadfile]${file}"
done
displayName: 'Meson'