Let appveyor test static and shared libs.

This commit is contained in:
Jean-Pierre Flori 2017-02-15 15:06:24 +00:00
parent 6b6155e380
commit c5a483813e
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,6 @@
export PATH=/c/msys64/mingw$ABI/bin:/c/projects/mpir/bin/:$PATH
cd /c/projects/mpir
./autogen.sh
./configure ABI=$ABI --with-system-yasm
./configure ABI=$ABI $LIB
make
make check

View File

@ -6,8 +6,16 @@ environment:
matrix:
- COMPILER: MinGW-w64
ABI: 32
LIB: --enable-static --disable-shared
- COMPILER: MinGW-w64
ABI: 32
LIB: --disable-static --enable-shared
- COMPILER: MinGW-w64
ABI: 64
LIB: --enable-static --disable-shared
- COMPILER: MinGW-w64
ABI: 64
LIB: --disable-static --enable-shared
- BUILD_TYPE: Release
COMPILER: MSVC15
PLATFORM: x64