forked from decaf-emu/decaf-emu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
67 lines (56 loc) · 1.6 KB
/
appveyor.yml
File metadata and controls
67 lines (56 loc) · 1.6 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
clone_depth: 10
version: 1.0.{build}
image: Visual Studio 2017
platform:
- x64
environment:
PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.6"
PYTHON_ARCH: "64"
VULKAN_SDK: "C:\\VulkanSDK\\1.1.92.1"
configuration:
- Release
cache:
- C:\Users\appveyor\.conan -> conanfile.py
- '%LOCALAPPDATA%\pip\cache'
install:
- cmd: set PATH=%PATH%;%PYTHON%/Scripts/
- cmd: pip.exe install conan
- cmd: conan user
- cmd: conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan & exit 0
- cmd: appveyor DownloadFile https://sdk.lunarg.com/sdk/download/1.1.92.1/windows/VulkanSDK-1.1.92.1-Installer.exe -FileName vulkan.exe
- cmd: vulkan.exe /S
- cmd: git submodule update --init --recursive
before_build:
- mkdir build
- cd build
- conan install .. --build=missing -o silent=True
- cmake -G "Visual Studio 15 2017 Win64" -DDECAF_BUILD_TOOLS=ON -DDECAF_FFMPEG=ON -DDECAF_VULKAN=ON ..
- cd ..
build:
project: build/decaf-emu.sln
parallel: true
verbosity: minimal
after_build:
- cd build\obj\Release
- 7z a decaf-bin.zip
decaf-sdl.exe
decaf-cli.exe
gfd-tool.exe
latte-assembler.exe
pm4-replay.exe
glbinding.dll
avcodec-58.dll
avutil-56.dll
swresample-3.dll
swscale-5.dll
resources\fonts\DejaVuSansMono.ttf
resources\fonts\DejaVuSansMono.LICENSE
resources\fonts\CafeCn.ttf
resources\fonts\CafeKr.ttf
resources\fonts\CafeStd.ttf
resources\fonts\CafeTw.ttf
resources\fonts\NotoSansCJK.LICENSE
artifacts:
- path: build\obj\Release\decaf-bin.zip
name: decaf-bin