summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index d75eff77..602ef4e6 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -39,6 +39,12 @@ init:
# scripts that run after cloning repository (before the build step, not after!)
install:
+ # work around sourceforge brokenness by temporarily download some files ourselves:
+ - ps: New-Item -ItemType Directory -Force -Path $env:TEMP\chocolatey\nsis.portable\3.02.0.20160720
+ - ps: invoke-webrequest -uri https://10gbps-io.dl.sourceforge.net/project/nsis/NSIS%203%20Pre-release/3.0rc2/nsis-3.0rc2.zip -outfile $env:TEMP\chocolatey\nsis.portable\3.02.0.20160720\download
+ - ps: New-Item -ItemType Directory -Force -Path ..\cmake\Download\boost
+ - ps: invoke-webrequest -uri http://download.openpkg.org/components/cache/boost/boost_1_62_0.tar.bz2 -outfile ..\cmake\Download\boost\boost_1_62_0.tar.bz2
+
# test_bbackupd needs 7zip (or cmake -E tar) to extract tar archives on Windows:
- cinst -y --limit-output 7zip.commandline nsis.portable
- dir "c:\Program Files"
@@ -107,3 +113,5 @@ deploy:
- master
- windows_binary_packages
+cache:
+ - '%TEMP%\chocolatey'