From 9cd0fbdbf89691e379d6c60482ecb898582fb04c Mon Sep 17 00:00:00 2001 From: Tom M Date: Fri, 11 Dec 2020 12:37:52 +0100 Subject: [PATCH] Re-enable unit tests with mingw and allow them to fail to ensure build artifacts are being published --- .azure-pipelines.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 75d8a8f7..9416801d 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -65,6 +65,7 @@ jobs: cd build || exit -1 cmake --build . --config Release --target check || exit -1 displayName: 'Execute Unittests' + continueOnError: 'true' - script: | @ECHO ON cd build @@ -204,8 +205,9 @@ jobs: set PATH=%PATH:C:\Program Files\Git\bin;=% set PATH=%PATH:C:\Program Files\Git\usr\bin;=% cd build || exit -1 - mingw32-make.exe check || cd . + mingw32-make.exe check || exit -1 displayName: 'Execute Unittests' + continueOnError: 'true' - script: | @ECHO ON cd build