From 5fc3879c3b19d704aeea163bf6af782436ad1846 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 19 Apr 2020 13:18:32 +0200 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9e6090fc8..23c107910 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -58,7 +58,8 @@ jobs: inputs: workingDirectory: 'build' # Optional cmakeArgs: '-G "Visual Studio 16 2019" ..' - - script: | - cmake --build .. - workingDirectory: 'build' + - task: CMake@1 + inputs: + cmakeArgs: '--build . --config Release' + workingDirectory: 'build'