diff options
| author | 2019-10-02 17:58:33 -0400 | |
|---|---|---|
| committer | 2019-10-02 17:58:33 -0400 | |
| commit | 514b74a0989d31cc597e5883a652d68fe4f77612 (patch) | |
| tree | 7c18480ead0c3184173e8d38deabdfd20c297b98 /.ci/templates | |
| parent | ci: Add Windows MSVC package script (diff) | |
| download | yuzu-514b74a0989d31cc597e5883a652d68fe4f77612.tar.gz yuzu-514b74a0989d31cc597e5883a652d68fe4f77612.tar.xz yuzu-514b74a0989d31cc597e5883a652d68fe4f77612.zip | |
ci: Add MSVC build template
Diffstat (limited to '.ci/templates')
| -rw-r--r-- | .ci/templates/build-msvc.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.ci/templates/build-msvc.yml b/.ci/templates/build-msvc.yml new file mode 100644 index 000000000..906afa382 --- /dev/null +++ b/.ci/templates/build-msvc.yml | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | parameters: | ||
| 2 | artifactSource: 'true' | ||
| 3 | cache: 'false' | ||
| 4 | |||
| 5 | steps: | ||
| 6 | - script: mkdir build && cd build && set DATE=`date '+%Y.%m.%d'` && set CI=true && set AZURE_REPO_NAME=yuzu-emu/yuzu-$(BuildName) && set AZURE_REPO_TAG=$(BuildName)-$DATE && cmake -G "Visual Studio 15 2017 Win64" --config Release -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=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 .. && cd .. | ||
| 7 | displayName: 'Configure CMake' | ||
| 8 | - task: MSBuild@1 | ||
| 9 | displayName: 'Build' | ||
| 10 | inputs: | ||
| 11 | solution: 'build/yuzu.sln' | ||
| 12 | maximumCpuCount: true | ||
| 13 | configuration: release | ||
| 14 | - task: PowerShell@2 | ||
| 15 | displayName: 'Package Artifacts' | ||
| 16 | inputs: | ||
| 17 | targetType: 'filePath' | ||
| 18 | filePath: './.ci/scripts/windows/upload.ps1' | ||
| 19 | - publish: artifacts | ||
| 20 | artifact: 'yuzu-$(BuildName)-windows-msvc' | ||
| 21 | displayName: 'Upload Artifacts' | ||