summaryrefslogtreecommitdiff
path: root/.ci/templates
diff options
context:
space:
mode:
authorGravatar liushuyu2020-11-20 22:41:17 -0700
committerGravatar liushuyu2020-11-20 23:01:59 -0700
commit185bf3fd28e2f350ee8cf5cf36c2d7573ee7ceb6 (patch)
treee795f04f6bb1e64ee8c340ecc2811d105928e3d2 /.ci/templates
parentMerge pull request #4957 from ReinUsesLisp/alpha-test-rt (diff)
downloadyuzu-185bf3fd28e2f350ee8cf5cf36c2d7573ee7ceb6.tar.gz
yuzu-185bf3fd28e2f350ee8cf5cf36c2d7573ee7ceb6.tar.xz
yuzu-185bf3fd28e2f350ee8cf5cf36c2d7573ee7ceb6.zip
ci: install Vulkan SDK in MSVC build
Diffstat (limited to '.ci/templates')
-rw-r--r--.ci/templates/build-msvc.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.ci/templates/build-msvc.yml b/.ci/templates/build-msvc.yml
index d85a949aa..2eefc8768 100644
--- a/.ci/templates/build-msvc.yml
+++ b/.ci/templates/build-msvc.yml
@@ -4,6 +4,8 @@ parameters:
4 version: '' 4 version: ''
5 5
6steps: 6steps:
7- script: choco install vulkan-sdk && refreshenv
8 displayName: 'Install vulkan-sdk'
7- script: python -m pip install --upgrade pip conan 9- script: python -m pip install --upgrade pip conan
8 displayName: 'Install conan' 10 displayName: 'Install conan'
9- script: mkdir build && cd build && cmake -G "Visual Studio 16 2019" -A x64 --config Release -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_UNICORN=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DUSE_DISCORD_PRESENCE=ON -DDISPLAY_VERSION=${{ parameters['version'] }} .. && cd .. 11- script: mkdir build && cd build && cmake -G "Visual Studio 16 2019" -A x64 --config Release -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_UNICORN=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DUSE_DISCORD_PRESENCE=ON -DDISPLAY_VERSION=${{ parameters['version'] }} .. && cd ..