aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-10-16 17:42:31 -0400
committerJack Lloyd <[email protected]>2015-10-16 17:42:31 -0400
commit0500ac6733c5c4a070effc349402c103ac5010bd (patch)
treeaee5bf635528722d571a445a64bf53cf8331df59 /src/scripts
parentf257cb324614adb5f9266ca185ab2bfeb64b1dd4 (diff)
Add DLL target to MSVC CI build
Diffstat (limited to 'src/scripts')
-rw-r--r--src/scripts/ci/appveyor.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml
index aa0c3890c..37edf615a 100644
--- a/src/scripts/ci/appveyor.yml
+++ b/src/scripts/ci/appveyor.yml
@@ -4,12 +4,18 @@ platform:
- x86
- x86_amd64
+environment:
+ matrix:
+ - MODE: --enable-shared
+ - MODE: --disable-shared
+
install:
- call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
- cl # check compiler version
+# always build via amalgamation due to build time constraints on appveyor
build_script:
- - python configure.py --disable-shared --via-amalgamation --cpu=%PLATFORM% --cc=msvc
+ - python configure.py --cc=msvc --via-amalgamation --cpu=%PLATFORM% %MODE%
- nmake
- botan-test
- nmake install