From 7fc474acf55a3426a2c5fae62da74359e76c7fcc Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Mon, 7 Oct 2019 21:59:18 +0200 Subject: appveyor.yml: Fix usage of Release config on Windows --- appveyor.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index 0c234e28ce..54a00432a8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -123,18 +123,17 @@ for: -DOPUS_ENABLED=ON -DLOCALECOMPARE_ENABLED=ON -G "Visual Studio 15 2017 Win64" - --config "Release" .. - - cmake --build . - - cmake --build . --target mixxx-test - - cmake --build . --target install + - cmake --build . --config "Release" + - cmake --build . --config "Release" --target mixxx-test + - cmake --build . --config "Release" --target install - cd .. test_script: # Calling mixxx-test under bash to have standard output and use stdbuf to # unbuffer standard & error output - - cmake --build cmake_build --target test - - cmake --build cmake_build --target benchmark + - cmake --build cmake_build --config "Release" --target test + - cmake --build cmake_build --config "Release" --target benchmark artifacts: - path: '*.exe' -- cgit v1.2.3