From 0f28879f8d5bc22d2cde176300589653b100824d Mon Sep 17 00:00:00 2001 From: Danila Malyutin Date: Tue, 4 Aug 2015 19:23:35 +0300 Subject: [PATCH] Try to use cache to speed up build --- appveyor.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 1b69baa385..fbbde3cc36 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,11 +5,18 @@ platform: x64 clone_folder: c:\projects\rpcs3 before_build: -- git submodule update --init asmjit ffmpeg minidx9 wxWidgets + - git submodule update --init asmjit ffmpeg minidx9 wxWidgets install: -- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% + - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% + +cache: + - c:\projects\rpcs3\admjit -> .gitmodules + - c:\projects\rpcs3\ffmpeg -> .gitmodules + - c:\projects\rpcs3\minidx9 -> .gitmodules + - c:\projects\rpcs3\wxWidgets -> .gitmodules build: project: rpcs3.sln + parallel: true verbosity: minimal \ No newline at end of file