2015-08-03 19:07:12 +00:00
|
|
|
version: 1.0.{build}
|
|
|
|
os: Visual Studio 2015
|
2015-08-12 17:20:58 +00:00
|
|
|
configuration:
|
2015-08-12 22:34:34 +00:00
|
|
|
# - Release
|
2015-08-12 17:20:58 +00:00
|
|
|
- ReleaseLLVM
|
2015-08-03 19:07:12 +00:00
|
|
|
platform: x64
|
2015-08-12 17:20:58 +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
|
|
|
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- ppu_recompiler
|
2015-08-03 19:07:12 +00:00
|
|
|
|
|
|
|
before_build:
|
2015-08-07 21:34:37 +00:00
|
|
|
# until git for win 2.5 release with commit checkout
|
2015-08-28 22:20:19 +00:00
|
|
|
- git submodule update --init ffmpeg asmjit minidx9
|
2015-08-12 17:20:58 +00:00
|
|
|
- 7z x wxWidgets.7z -aos -oC:\rpcs3\wxWidgets > null
|
|
|
|
- if %configuration%==Release (cmake -G "Visual Studio 14 Win64")
|
|
|
|
else (7z x llvmlibs.7z -aos -oC:\rpcs3 > null && cmake -G "Visual Studio 14 Win64" -DLLVM_DIR=C:/rpcs3/llvm_build/share/llvm/cmake)
|
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:
|
2015-08-07 21:34:37 +00:00
|
|
|
- ps: Start-FileDownload 'https://402331b94f8e4b87ae2ef4677347f7956cf3861f.googledrive.com/host/0B6v_qtb9hkicfmt0NG0wTTRtUmF4X3VTQk5Oc2JidEVKVnUteDA1dXdrYlNsVW9kREpsSHc/wxWidgets.7z'
|
2015-08-12 17:20:58 +00:00
|
|
|
- ps: Start-FileDownload 'https://402331b94f8e4b87ae2ef4677347f7956cf3861f.googledrive.com/host/0B6v_qtb9hkicfmt0NG0wTTRtUmF4X3VTQk5Oc2JidEVKVnUteDA1dXdrYlNsVW9kREpsSHc/llvmlibs.7z'
|
|
|
|
- set WXWIN=C:\rpcs3\wxWidgets
|
|
|
|
- set OPENALDIR=C:\rpcs3\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
|
2015-08-28 22:20:19 +00:00
|
|
|
name: rpcs3-$(configuration)-$(COMMIT_SHA)
|