From d90c9113b2c2ed78e302d8aa12efbb3f8977400f Mon Sep 17 00:00:00 2001 From: InoriRus Date: Fri, 21 Jan 2022 18:02:04 +1000 Subject: [PATCH] add appveyor.yml --- README.md | 2 ++ appveyor.yml | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 appveyor.yml diff --git a/README.md b/README.md index 68c2b86..20eb0b1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build status](https://ci.appveyor.com/api/projects/status/0du32fg9flol63to?svg=true)](https://ci.appveyor.com/project/InoriRus/kyty) + # Kyty ps4 & ps5 emulator ----- diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..8c387a8 --- /dev/null +++ b/appveyor.yml @@ -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 \ No newline at end of file