summaryrefslogtreecommitdiffstats
path: root/.ci/templates
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-07-23 02:54:47 +0200
committerGitHub <noreply@github.com>2022-07-23 02:54:47 +0200
commit58081a3664e3c069cd4efe5d96502c2fcc831535 (patch)
tree06ba40b5701eff84160b6a85e8075b7b66b3a08f /.ci/templates
parentMerge pull request #8598 from Link4565/recv-dontwait (diff)
parentgitmodules: Remove 'externals' from names of submodules (diff)
downloadyuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.gz
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.bz2
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.lz
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.xz
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.tar.zst
yuzu-58081a3664e3c069cd4efe5d96502c2fcc831535.zip
Diffstat (limited to '.ci/templates')
-rw-r--r--.ci/templates/build-msvc.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.ci/templates/build-msvc.yml b/.ci/templates/build-msvc.yml
index cca3189fa..5d2e86179 100644
--- a/.ci/templates/build-msvc.yml
+++ b/.ci/templates/build-msvc.yml
@@ -6,9 +6,7 @@ parameters:
steps:
- script: choco install vulkan-sdk
displayName: 'Install vulkan-sdk'
-- script: python -m pip install --upgrade pip conan
- displayName: 'Install conan'
-- script: refreshenv && mkdir build && cd build && cmake -G "Visual Studio 17 2022" -A x64 -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DYUZU_TESTS=OFF -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DDISPLAY_VERSION=${{ parameters['version'] }} -DCMAKE_BUILD_TYPE=Release .. && cd ..
+- script: refreshenv && mkdir build && cd build && cmake -G "Visual Studio 17 2022" -A x64 -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DYUZU_TESTS=OFF -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DDISPLAY_VERSION=${{ parameters['version'] }} -DCMAKE_BUILD_TYPE=Release -DYUZU_TESTS=OFF -DYUZU_USE_BUNDLED_VCPKG=ON .. && cd ..
displayName: 'Configure CMake'
- task: MSBuild@1
displayName: 'Build'