From dd0ce3c4147ddcbd6f15796b566f164c694b905b Mon Sep 17 00:00:00 2001 From: daan Date: Sat, 5 Sep 2020 22:31:59 -0700 Subject: [PATCH] specify x64 for vs2017 pipeline --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 961fd34..e0c888b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,15 +17,15 @@ jobs: matrix: Debug: BuildType: debug - cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON + cmakeExtraArgs: -A x64 -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON MSBuildConfiguration: Debug Release: BuildType: release - cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release + cmakeExtraArgs: -A x64 -DCMAKE_BUILD_TYPE=Release MSBuildConfiguration: Release Secure: BuildType: secure - cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON + cmakeExtraArgs: -A x64 -DCMAKE_BUILD_TYPE=Release -DMI_SECURE=ON MSBuildConfiguration: Release steps: - task: CMake@1