From bf5ed636228676bac1569a83789939a45c16ac31 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Fri, 8 Oct 2021 08:19:20 +0200 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 28275c41a..354b9dbac 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -95,15 +95,11 @@ jobs: conda config --add channels conda-forge --force conda config --set auto_update_conda false conda install --yes ninja - - task: CMake@1 - inputs: - workingDirectory: 'build' # Optional - cmakeArgs: '-G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DMSVC_STATIC_CRT=ON ..' - - task: CMake@1 - inputs: - cmakeArgs: '--build . --config Release' - workingDirectory: 'build' - + mkdir build + cd build + cmake -G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DMSVC_STATIC_CRT=ON .. + cmake --build . --config Release + - job: Windows_clang_cl_flang pool: vmImage: 'windows-latest'