mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:38:39 +00:00
b312c82a2c
As it was removed on the website on fb46709fda
, we don't need to build it anymore.
This also cut the build time and allow us more flexibility for hotfixes if needed.
33 lines
1.3 KiB
YAML
33 lines
1.3 KiB
YAML
version: 1.0.{build}
|
|
branches:
|
|
only:
|
|
- master
|
|
image: Visual Studio 2019
|
|
environment:
|
|
appveyor_dotnet_runtime: netcoreapp3.1
|
|
matrix:
|
|
- config: Release
|
|
config_name: '-'
|
|
build_script:
|
|
- ps: >-
|
|
dotnet --version
|
|
|
|
dotnet publish -c $env:config -r win-x64 /p:Version=$env:APPVEYOR_BUILD_VERSION
|
|
|
|
dotnet publish -c $env:config -r linux-x64 /p:Version=$env:APPVEYOR_BUILD_VERSION
|
|
|
|
dotnet publish -c $env:config -r osx-x64 /p:Version=$env:APPVEYOR_BUILD_VERSION
|
|
|
|
7z a ryujinx$env:config_name$env:APPVEYOR_BUILD_VERSION-win_x64.zip $env:APPVEYOR_BUILD_FOLDER\Ryujinx\bin\$env:config\$env:appveyor_dotnet_runtime\win-x64\publish\
|
|
|
|
7z a ryujinx$env:config_name$env:APPVEYOR_BUILD_VERSION-linux_x64.tar $env:APPVEYOR_BUILD_FOLDER\Ryujinx\bin\$env:config\$env:appveyor_dotnet_runtime\linux-x64\publish\
|
|
|
|
7z a ryujinx$env:config_name$env:APPVEYOR_BUILD_VERSION-linux_x64.tar.gz ryujinx$env:config_name$env:APPVEYOR_BUILD_VERSION-linux_x64.tar
|
|
|
|
7z a ryujinx$env:config_name$env:APPVEYOR_BUILD_VERSION-osx_x64.zip $env:APPVEYOR_BUILD_FOLDER\Ryujinx\bin\$env:config\$env:appveyor_dotnet_runtime\osx-x64\publish\
|
|
|
|
artifacts:
|
|
- path: ryujinx%config_name%%APPVEYOR_BUILD_VERSION%-win_x64.zip
|
|
- path: ryujinx%config_name%%APPVEYOR_BUILD_VERSION%-linux_x64.tar.gz
|
|
- path: ryujinx%config_name%%APPVEYOR_BUILD_VERSION%-osx_x64.zip
|