mirror of https://github.com/InoriRus/Kyty.git
add appveyor.yml
This commit is contained in:
parent
55825890a6
commit
d90c9113b2
|
@ -1,3 +1,5 @@
|
|||
[](https://ci.appveyor.com/project/InoriRus/kyty)
|
||||
|
||||
# Kyty
|
||||
ps4 & ps5 emulator
|
||||
-----
|
||||
|
|
|
@ -0,0 +1,38 @@
|
|||
version: 0.0.7.build-{build}
|
||||
image: Visual Studio 2019
|
||||
environment:
|
||||
matrix:
|
||||
- Qt5_DIR: C:\Qt\5.15.2\mingw81_64
|
||||
BUILD_DIR: _Clang
|
||||
BUILD_SCRIPT: cmake_EclipseNinja_Clang.bat
|
||||
BUILD_CFG: 4
|
||||
BUILD_PATH: C:\ProgramData\chocolatey\lib\winlibs\tools\mingw64\bin
|
||||
BUILD_INSTALL: choco install winlibs -y
|
||||
- Qt5_DIR: C:\Qt\5.15.2\msvc2019_64
|
||||
BUILD_DIR: _Msvc2019
|
||||
BUILD_SCRIPT: cmake_Msvc2019_Ninja_Clang.bat
|
||||
BUILD_CFG: 4
|
||||
- Qt5_DIR: C:\Qt\5.15.2\mingw81_64
|
||||
BUILD_DIR: _Gcc
|
||||
BUILD_SCRIPT: cmake_EclipseMinGW.bat
|
||||
BUILD_CFG: 4
|
||||
BUILD_PATH: C:\ProgramData\chocolatey\lib\winlibs\tools\mingw64\bin
|
||||
BUILD_INSTALL: choco install winlibs -y
|
||||
install:
|
||||
- cmd: '%BUILD_INSTALL%'
|
||||
build_script:
|
||||
- cmd: >-
|
||||
set PATH=%BUILD_PATH%;%PATH%;
|
||||
|
||||
clang --version
|
||||
|
||||
cd %APPVEYOR_BUILD_FOLDER%/_Build
|
||||
|
||||
%BUILD_SCRIPT% %BUILD_CFG% %BUILD_DIR%
|
||||
|
||||
cd %APPVEYOR_BUILD_FOLDER%/_Build/%BUILD_DIR%
|
||||
|
||||
_build.bat
|
||||
artifacts:
|
||||
- path: _Build/%BUILD_DIR%/_bin
|
||||
name: Kyty
|
Loading…
Reference in New Issue