Skip to content

Commit

Permalink
Try unquoting cache paths to see if that makes the cache work.
Browse files Browse the repository at this point in the history
List files in the directories to be cached.

Cache the compiled zlib as well.
  • Loading branch information
qris committed Dec 22, 2015
1 parent 9e20521 commit f9b1496
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions appveyor.yml
Expand Up @@ -22,11 +22,14 @@ environment:
OPENSSL_VERSION: 1.0.2e

cache:
- '%APPVEYOR_BUILD_FOLDER%\..\openssl-%OPENSSL_VERSION%'
- '%APPVEYOR_BUILD_FOLDER%\..\openssl-%PLATFORM%'
- '%APPVEYOR_BUILD_FOLDER%\..\pcre-8.38'
- '%APPVEYOR_BUILD_FOLDER%\..\pcre-%PLATFORM%'
- '%APPVEYOR_BUILD_FOLDER%\%PLATFORM%'
- %APPVEYOR_BUILD_FOLDER%\..\zlib-1.2.8
- %APPVEYOR_BUILD_FOLDER%\..\zlib-%PLATFORM%
- %APPVEYOR_BUILD_FOLDER%\..\openssl-%OPENSSL_VERSION%
- %APPVEYOR_BUILD_FOLDER%\..\openssl-%PLATFORM%
- %APPVEYOR_BUILD_FOLDER%\..\pcre-8.38
- %APPVEYOR_BUILD_FOLDER%\..\pcre-%PLATFORM%
- %APPVEYOR_BUILD_FOLDER%\infrastructure\cmake\%PLATFORM%
- %APPVEYOR_BUILD_FOLDER%\infrastructure\cmake\*.dir

build:
parallel: true
Expand Down Expand Up @@ -61,7 +64,7 @@ install:
- 7za x openssl-%OPENSSL_VERSION%.tar.gz
- 7za x openssl-%OPENSSL_VERSION%.tar
- cd openssl-%OPENSSL_VERSION%
- perl Configure debug-VC-WIN32 no-asm --prefix=%APPVEYOR_BUILD_FOLDER%\..\openssl-%PLATFORM%
- perl Configure debug-VC-WIN32 no-asm --prefix="%APPVEYOR_BUILD_FOLDER%\..\openssl-%PLATFORM%"
- ms\do_ms
- nmake /s /f ms\nt.mak
- nmake /s /f ms\nt.mak install
Expand Down Expand Up @@ -89,6 +92,15 @@ install:
- mkdir foo
- rmdir /s/q foo

- dir %APPVEYOR_BUILD_FOLDER%\..\zlib-1.2.8
- dir %APPVEYOR_BUILD_FOLDER%\..\zlib-%PLATFORM%
- dir %APPVEYOR_BUILD_FOLDER%\..\openssl-%OPENSSL_VERSION%
- dir %APPVEYOR_BUILD_FOLDER%\..\openssl-%PLATFORM%
- dir %APPVEYOR_BUILD_FOLDER%\..\pcre-8.38
- dir %APPVEYOR_BUILD_FOLDER%\..\pcre-%PLATFORM%
- dir %APPVEYOR_BUILD_FOLDER%\infrastructure\cmake\%PLATFORM%
- dir %APPVEYOR_BUILD_FOLDER%\infrastructure\cmake\*.dir

test_script:
- cd %APPVEYOR_BUILD_FOLDER%\infrastructure\cmake
- ctest -C %CONFIGURATION% -V
Expand Down

0 comments on commit f9b1496

Please sign in to comment.