summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2019-10-07 21:59:18 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-02-05 23:08:58 +0100
commit7fc474acf55a3426a2c5fae62da74359e76c7fcc (patch)
tree35a81d47db4e9779de54747805e9d5440ab8b0db /appveyor.yml
parenta51f11e9d89371e5dcdf3957f217da1f59c19403 (diff)
appveyor.yml: Fix usage of Release config on Windows
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml11
1 files changed, 5 insertions, 6 deletions
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'