diff options
author | Jack Lloyd <[email protected]> | 2015-10-16 17:42:31 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-10-16 17:42:31 -0400 |
commit | 0500ac6733c5c4a070effc349402c103ac5010bd (patch) | |
tree | aee5bf635528722d571a445a64bf53cf8331df59 | |
parent | f257cb324614adb5f9266ca185ab2bfeb64b1dd4 (diff) |
Add DLL target to MSVC CI build
-rw-r--r-- | src/scripts/ci/appveyor.yml | 8 |
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 |