mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
Add caching for dependencies in appveyor.yml (#2804)
* Add caching for dependencies in appveyor.yml * Add cache clearing support for Appveyor Clears the cached files if appveyor.yml changes
This commit is contained in:
parent
83ffd7c9fb
commit
a5874d76d1
1 changed files with 10 additions and 4 deletions
14
appveyor.yml
14
appveyor.yml
|
@ -23,10 +23,10 @@ build_script:
|
||||||
- cmake --build . --config Release -- /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
- cmake --build . --config Release -- /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- appveyor DownloadFile "https://dl.dropboxusercontent.com/s/c1by0uulee6g8th/wxWidgets.7z?dl=0" -FileName wxWidgets.7z
|
- if not exist wxWidgets.7z 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=0B8A6NaxhQAGRY2k3Q2Yya05lcm8" -FileName llvmlibs.7z
|
- if not exist llvmlibs.7z appveyor DownloadFile "https://drive.google.com/uc?export=download&id=0B8A6NaxhQAGRY2k3Q2Yya05lcm8" -FileName llvmlibs.7z
|
||||||
- appveyor DownloadFile "https://drive.google.com/uc?export=download&id=0B8A6NaxhQAGRa21fbDQteTN1dGs" -FileName vulkan.7z
|
- if not exist vulkan.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
|
- if not exist zlib.7z appveyor DownloadFile "https://drive.google.com/uc?export=download&id=0B6v_qtb9hkicQ2hHa2dRbF83cE0" -FileName zlib.7z
|
||||||
- set WXWIN=C:\rpcs3\wxWidgets
|
- set WXWIN=C:\rpcs3\wxWidgets
|
||||||
- set OPENALDIR=C:\rpcs3\3rdparty\OpenAL
|
- set OPENALDIR=C:\rpcs3\3rdparty\OpenAL
|
||||||
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;C:\wxWidgets;%PATH%
|
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;C:\wxWidgets;%PATH%
|
||||||
|
@ -36,3 +36,9 @@ artifacts:
|
||||||
- path: bin
|
- path: bin
|
||||||
name: 'rpcs3-v0.0.2-$(Date)-$(COMMIT_SHA)_win64'
|
name: 'rpcs3-v0.0.2-$(Date)-$(COMMIT_SHA)_win64'
|
||||||
type: zip
|
type: zip
|
||||||
|
|
||||||
|
cache:
|
||||||
|
- wxWidgets.7z -> appveyor.yml
|
||||||
|
- llvmlibs.7z -> appveyor.yml
|
||||||
|
- vulkan.7z -> appveyor.yml
|
||||||
|
- zlib.7z -> appveyor.yml
|
Loading…
Add table
Add a link
Reference in a new issue