2017-01-30 22:16:47 +00:00
|
|
|
version: '0.0.1-{build}'
|
|
|
|
|
2015-08-03 19:07:12 +00:00
|
|
|
os: Visual Studio 2015
|
|
|
|
platform: x64
|
2017-01-30 22:16:47 +00:00
|
|
|
clone_folder: C:\rpcs3
|
2015-08-17 15:14:29 +00:00
|
|
|
clone_depth: 3
|
2015-08-09 19:05:16 +00:00
|
|
|
test: off
|
2015-08-04 16:57:41 +00:00
|
|
|
|
2017-01-30 22:16:47 +00:00
|
|
|
configuration:
|
|
|
|
# Release
|
|
|
|
- ReleaseLLVM
|
|
|
|
|
2015-08-03 19:07:12 +00:00
|
|
|
before_build:
|
2017-01-30 22:16:47 +00:00
|
|
|
- ps: $env:Date="$(git show -s --date=short --format='%ad')"
|
2016-07-18 20:56:50 +00:00
|
|
|
- git submodule update --init 3rdparty/ffmpeg 3rdparty/pugixml asmjit 3rdparty/GSL 3rdparty/libpng Vulkan/glslang Vulkan/Vulkan-LoaderAndValidationLayers Utilities/yaml-cpp rsx_program_decompiler 3rdparty/cereal
|
2015-08-12 17:20:58 +00:00
|
|
|
- 7z x wxWidgets.7z -aos -oC:\rpcs3\wxWidgets > null
|
2016-02-03 17:34:51 +00:00
|
|
|
- 7z x zlib.7z -aos -oC:\rpcs3\ > null
|
2016-07-11 14:26:47 +00:00
|
|
|
- 7z x vulkan.7z -aos -oC:\rpcs3\Vulkan > null
|
2017-01-30 22:16:47 +00:00
|
|
|
- if %configuration%==Release (cmake -G "Visual Studio 14 Win64" -DZLIB_ROOT=C:/rpcs3/zlib/ -DVULKAN_PREBUILT=ON)
|
2016-07-11 14:26:47 +00:00
|
|
|
else (7z x llvmlibs.7z -aos -oC:\rpcs3 > null && cmake -G "Visual Studio 14 Win64" -DLLVM_DIR=C:/rpcs3/llvm_build/share/llvm/cmake -DZLIB_ROOT=C:/rpcs3/zlib/ -DVULKAN_PREBUILT=ON)
|
2015-08-04 16:57:41 +00:00
|
|
|
|
|
|
|
build_script:
|
2015-08-08 14:05:32 +00:00
|
|
|
- cmake --build . --config Release -- /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
2015-08-03 19:07:12 +00:00
|
|
|
|
|
|
|
install:
|
2016-09-21 09:34:38 +00:00
|
|
|
- appveyor DownloadFile "https://dl.dropboxusercontent.com/s/c1by0uulee6g8th/wxWidgets.7z?dl=0" -FileName wxWidgets.7z
|
|
|
|
- appveyor DownloadFile "https://drive.google.com/uc?export=download&id=0B-98fOyaZKJ5YWVnb29JZXFQWkU" -FileName llvmlibs.7z
|
|
|
|
- appveyor DownloadFile "https://drive.google.com/uc?export=download&id=0B8A6NaxhQAGRa21fbDQteTN1dGs" -FileName vulkan.7z
|
|
|
|
- appveyor DownloadFile "https://drive.google.com/uc?export=download&id=0B6v_qtb9hkicQ2hHa2dRbF83cE0" -FileName zlib.7z
|
2015-08-12 17:20:58 +00:00
|
|
|
- set WXWIN=C:\rpcs3\wxWidgets
|
2016-03-18 14:13:52 +00:00
|
|
|
- set OPENALDIR=C:\rpcs3\3rdparty\OpenAL
|
2015-08-04 16:57:41 +00:00
|
|
|
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;C:\wxWidgets;%PATH%
|
2015-08-09 19:05:16 +00:00
|
|
|
- set COMMIT_SHA=%APPVEYOR_REPO_COMMIT:~0,8%
|
2015-08-04 16:23:35 +00:00
|
|
|
|
2015-08-09 19:05:16 +00:00
|
|
|
artifacts:
|
|
|
|
- path: bin
|
2017-01-30 22:16:47 +00:00
|
|
|
name: 'rpcs3-v0.0.1-$(Date)-$(COMMIT_SHA)_win64'
|
|
|
|
type: zip
|