-
Notifications
You must be signed in to change notification settings - Fork 5
/
appveyor.yml
50 lines (34 loc) · 1.38 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: 1.{build}
skip_tags: true
image: Visual Studio 2022
configuration: Release
init:
- ps: ''
install:
- cmd: >-
git submodule update --init --recursive
premake5.bat
before_build:
- ps: >-
msbuild -m build/XboxRainDropletsWrapper.sln /property:Configuration=Release /property:Platform=Win32
msbuild -m build/XboxRainDropletsWrapper.sln /property:Configuration=Release /property:Platform=x64
Start-FileDownload https://github.com/ThirteenAG/Ultimate-ASI-Loader/releases/download/Win32-latest/version-Win32.zip
Start-FileDownload https://github.com/ThirteenAG/Ultimate-ASI-Loader/releases/download/x64-latest/dinput8-x64.zip
Start-FileDownload https://github.com/ThirteenAG/WidescreenFixesPack/releases/download/xrd/PCSX2F.XboxRainDroplets.zip
Start-FileDownload https://github.com/ThirteenAG/WidescreenFixesPack/releases/download/xrd/PPSSPP.XboxRainDroplets.zip
build:
project: build/XboxRainDroplets.sln
verbosity: minimal
before_package:
- cmd: >-
7z x version-Win32.zip -obin/ -y
7z x dinput8-x64.zip -obin/ -y
7z x PCSX2F.XboxRainDroplets.zip -obin/ -y
7z x PPSSPP.XboxRainDroplets.zip -obin/ -y
del version-Win32.zip
del dinput8-x64.zip
del PCSX2F.XboxRainDroplets.zip
del PPSSPP.XboxRainDroplets.zip
release.bat
after_build:
- ps: Get-ChildItem .\bin\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }