forked from RPCS3/rpcs3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
56 lines (41 loc) · 1.09 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
51
52
53
54
55
# version format
version: 0.1.{build}
branches:
only:
- appveyorbuild
# blacklist
#except:
# - gh-pages
#---------------------------------#
# environment configuration #
#---------------------------------#
# clone directory
clone_folder: c:\projects\rpcs3
platform:
- x64
configuration:
- Release
install:
- cmd: cinst wget -x86
- cmd: cinst 7zip.commandline -x86
- cmd: git submodule update --init --recursive .\ffmpeg .\asmjit
- cmd: wget -q --no-check-certificate https://googledrive.com/host/0B3tDmChwjRbRTTdhaTFOeGN1eEU/wxWidgets.7z -O c:\projects\rpcs3\wxwidgets.7z
- cmd: 7z x C:\projects\rpcs3\wxwidgets.7z -oc:\projects\rpcs3\wxWidgets
build:
build_script:
- msbuild /m /p:Configuration=Release rpcs3_buildbot.sln
after_build:
- cmd: package.bat
artifacts:
- path: .\rpcs3*.7z
deploy: OFF
# - provider: FTP
# server:
# secure: kZT7rsbEPGQ0fC2GFRBGfL2vPwUgih2JkwjbSuw00T8=
# username:
# secure: YJzwsi4wfSezFLqaB9uiww==
# password:
# secure: EQ3xa2LoRgelAdE57+qakQ==
# folder: .\rpcs3\
# enable_ssl: false
test: OFF