diff options
author | Simon Warta <[email protected]> | 2016-10-03 17:28:45 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2016-10-03 17:28:45 +0200 |
commit | 1d59daf22602bd0b760bc22cf28eeafdc8076314 (patch) | |
tree | da5964a3a2648e3d3524e51796208b4373cce530 /src/scripts | |
parent | cf8a199b6974f4982b3aede835abb71ee2b23102 (diff) |
AppVeyor config: add debug configuration
Diffstat (limited to 'src/scripts')
-rw-r--r-- | src/scripts/ci/appveyor.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml index 777bf7235..17cf86fdd 100644 --- a/src/scripts/ci/appveyor.yml +++ b/src/scripts/ci/appveyor.yml @@ -4,6 +4,10 @@ platform: - x86 - x86_amd64 +configuration: + - Release + - Debug + environment: matrix: - COMPILER: msvc-12.0 @@ -32,7 +36,12 @@ install: - 7z e jom.zip build_script: - - python configure.py --cc=msvc --cpu=%PLATFORM% %MODE% --with-pkcs11 + - if %configuration% == Release ( + python configure.py --cc=msvc --cpu=%PLATFORM% %MODE% --with-pkcs11 + ) + - if %configuration% == Debug ( + python configure.py --cc=msvc --cpu=%PLATFORM% %MODE% --with-pkcs11 --debug-mode + ) - jom -j2 - botan-test - nmake install |