summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2016-02-13 22:45:14 +0000
committerChris Wilson <chris+github@qwirx.com>2016-02-13 22:45:14 +0000
commitdd95905601b24164d16b5cf99a6ccd1cec9f4304 (patch)
tree2e280f48438e88eb0681f9ac5b596a86990de9b8 /appveyor.yml
parent92edd568e3294709bd0f79154cbc1bc7422f32b9 (diff)
Make 7za overwrite existing files, to avoid hanging when build output is cached.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 103d6bbf..938a0409 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -58,7 +58,7 @@ install:
- cd %APPVEYOR_BUILD_FOLDER%\..
- ps: Start-FileDownload 'http://zlib.net/zlib128.zip'
- - 7za x zlib128.zip
+ - 7za x -aoa zlib128.zip
- cd zlib-1.2.8
- cmake -G "%Generator%" -A %PLATFORM% -DCMAKE_INSTALL_PREFIX="..\zlib-%PLATFORM%" .
# We need to build both versions, debug and release, because cmake requires both to be
@@ -68,8 +68,8 @@ install:
- cd %APPVEYOR_BUILD_FOLDER%\..
- ps: Start-FileDownload "https://www.openssl.org/source/openssl-$($env:OPENSSL_VERSION).tar.gz"
- - 7za x openssl-%OPENSSL_VERSION%.tar.gz
- - 7za x openssl-%OPENSSL_VERSION%.tar
+ - 7za x -aoa openssl-%OPENSSL_VERSION%.tar.gz
+ - 7za x -aoa openssl-%OPENSSL_VERSION%.tar
- cd openssl-%OPENSSL_VERSION%
- perl Configure debug-VC-WIN32 no-asm --prefix="%APPVEYOR_BUILD_FOLDER%\..\openssl-%PLATFORM%"
- ms\do_ms
@@ -78,7 +78,7 @@ install:
- cd %APPVEYOR_BUILD_FOLDER%\..
- ps: Start-FileDownload 'ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.zip'
- - 7za x pcre-8.38.zip
+ - 7za x -aoa pcre-8.38.zip
- cd %APPVEYOR_BUILD_FOLDER%\..
- cd pcre-8.38
- cmake -G "%Generator%" -A %PLATFORM% -DCMAKE_INSTALL_PREFIX="..\pcre-%PLATFORM%" .