From 7413c6f5776572c0a40eb923d23cfff9326a20f7 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Tue, 6 Aug 2019 12:25:29 +0300 Subject: [PATCH] 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. --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 09a417c..bfcf219 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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' -- 2.7.4