mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
dd382b2afc
add initial appveyor script add submodule update before build add msbuild cmd remove msbuild cmd make script runnable locally add solution without wxwdigets add initial appveyor script add submodule update before build add msbuild cmd remove msbuild cmd add packaging step to appveyor add ftp upload test use msbuild explicitly doesn't seem to work otherwise temporarily remove deploy script temporarily remove build script remove non-essential stuff add back some stuff set artifact path update artifact stuff try to add back deploy add build step again, *sigh* add some more build settings add build sript style build again download wxwidgets instead of building remove quite flag for debugging add cert igonre to download dont redundantly add folder use a seperate solution without wxwidgets dependencies only use the rpcs3 7z as artifact to avoid re-packaging wxwidgets, also comment out deployment, since I don't have acccess to the main account to add secure strings Conflicts: package.bat
57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
YAML
|
|
|
|
# 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
|
|
|