From 7eaa1a5bb6deae327938bd1453b3d7fdd89c4f6a Mon Sep 17 00:00:00 2001 From: Silvio Kunaschk Date: Tue, 7 May 2019 00:52:50 +0200 Subject: [PATCH] build CI jobs in Release mode --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a635ab44..6f232f28 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -33,8 +33,8 @@ jobs: conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan pushd . mkdir build && cd build - conan install .. -s compiler.libcxx=libstdc++11 -s build_type=Debug - cmake .. + conan install .. -s compiler.libcxx=libstdc++11 -s build_type=Release + cmake -DCMAKE_BUILD_TYPE=Release .. make -j displayName: build VCVRack - job: MacOS1014 @@ -59,8 +59,8 @@ jobs: conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan pushd . mkdir build && cd build - conan install .. -s build_type=Debug --build=missing - cmake .. + conan install .. -s build_type=Release --build=missing + cmake -DCMAKE_BUILD_TYPE=Release .. make -j displayName: build VCVRack - job: Windows2016 @@ -80,7 +80,7 @@ jobs: conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan mkdir build cd build - conan install .. -s build_type=Debug - cmake -G "Visual Studio 15 Win64" .. + conan install .. -s build_type=Release + cmake -G "Visual Studio 15 Win64" -DCMAKE_BUILD_TYPE=Release .. cmake --build . displayName: build VCVRack