diff options
author | Simon Warta <[email protected]> | 2015-08-12 16:51:28 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-08-12 16:59:06 +0200 |
commit | 241fd030066942f64aae10da52233d9042fef271 (patch) | |
tree | 5af7730f5c7a80aba3936d3a38fdab272108ceed /src/scripts | |
parent | 7dd0de39c452341503d7755ecdf9520d6577c628 (diff) |
Update Appveyor config
Diffstat (limited to 'src/scripts')
-rw-r--r-- | src/scripts/ci/appveyor.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml index a2fe822a8..aa0c3890c 100644 --- a/src/scripts/ci/appveyor.yml +++ b/src/scripts/ci/appveyor.yml @@ -1,10 +1,15 @@ os: Windows Server 2012 R2 +platform: + - x86 + - x86_amd64 + install: - - call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 + - call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM% + - cl # check compiler version build_script: - - python configure.py --disable-shared --via-amalgamation --cpu=x86_32 --cc=msvc + - python configure.py --disable-shared --via-amalgamation --cpu=%PLATFORM% --cc=msvc - nmake - botan-test - nmake install |