summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml23
1 files changed, 6 insertions, 17 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 1def8a7a..a0ccf95c 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -21,17 +21,7 @@ environment:
Generator: Visual Studio 10
OPENSSL_VERSION: 1.0.2f
PCRE_VERSION: 8.38
-
-cache:
- - '..\zlib-1.2.8'
- - '..\zlib-%PLATFORM%'
- - '..\openssl-%OPENSSL_VERSION%.tar.gz'
- - '..\openssl-%OPENSSL_VERSION%'
- - '..\openssl-%PLATFORM%'
- - '..\pcre-%PCRE_VERSION%.zip'
- - '..\pcre-%PCRE_VERSION%'
- - '..\pcre-%PLATFORM%'
- - 'infrastructure\cmake\build'
+ CMAKE_UNIBUILD_DIR: '%APPVEYOR_BUILD_FOLDER%\..\cmake'
init:
# Uncomment the following two lines to enable RDP access to the virtual machine for debugging.
@@ -41,7 +31,7 @@ init:
build:
parallel: true
project: ..\cmake\BoxBackup_Windows.sln
- verbosity: quiet
+ verbosity: minimal
install:
# test_bbackupd needs 7zip (or cmake -E tar) to extract tar archives on Windows:
@@ -56,9 +46,8 @@ install:
# cinst -y cmake strawberryperl git vim visualstudio2012wdx
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x86'
- - cd %APPVEYOR_BUILD_FOLDER%\..
- - if not exist cmake md cmake
- - cd cmake
+ - if not exist %CMAKE_UNIBUILD_DIR% md %CMAKE_UNIBUILD_DIR%
+ - cd %CMAKE_UNIBUILD_DIR%
# We need to specify the generator here, in case the user has more than one installed.
# CMake always seems to default to the latest version of Visual Studio, not the one on
# the current PATH.
@@ -67,10 +56,10 @@ install:
# Leave the current directory in the correct place to find the solution file using its relative path above.
test_script:
- - cd %APPVEYOR_BUILD_FOLDER%\..\cmake\src\boxbackup-build
+ - cd %CMAKE_UNIBUILD_DIR%\Build\boxbackup
# - dir
# - dir bin_bbackupd.dir
# - dir %PLATFORM%
# - dir %PLATFORM%\%CONFIGURATION%
- - ctest -C %CONFIGURATION% -V
+ - ctest -C %CONFIGURATION% -V --interactive-debug-mode 0