mirror of
https://github.com/Force67/ps4delta.git
synced 2025-04-02 11:01:45 -04:00
* add appveyor ci * appveyor: removed "cmd:", because it is the default Windows shell * appveyor: add artifacts
36 lines
494 B
YAML
36 lines
494 B
YAML
version: '{build}'
|
|
|
|
pull_requests:
|
|
do_not_increment_build_number: true
|
|
|
|
skip_tags: true
|
|
|
|
image:
|
|
- Visual Studio 2019
|
|
|
|
configuration:
|
|
- Release
|
|
- Debug
|
|
|
|
platform:
|
|
- x64
|
|
#- x86 # by design PS4Delta can't support x86 systems
|
|
|
|
install:
|
|
- |
|
|
git submodule update --init --recursive
|
|
set QT_DIR=C:\Qt\5.14.0\msvc2017_64
|
|
pmake.bat
|
|
|
|
build:
|
|
project: build/PS4Delta.sln
|
|
parallel: true
|
|
verbosity: minimal
|
|
|
|
after_build:
|
|
- 7z a Artifacts.zip .\bin\*
|
|
|
|
artifacts:
|
|
- path: Artifacts.zip
|
|
|
|
test: off
|