24 lines
700 B
YAML
24 lines
700 B
YAML
version: 1.0.{build}
|
|
build:
|
|
verbosity: minimal
|
|
|
|
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_script:
|
|
- if [%COMPILER%]==[MinGW-w64] mkdir bin && cd bin\ && appveyor DownloadFile http://www.tortall.net/projects/yasm/releases/yasm-1.3.0-win64.exe -fileName yasm.exe
|
|
- if [%COMPILER%]==[MinGW-w64] C:\msys64\usr\bin\sh.exe --login /c/projects/mpir/.appveyor_msys_build.sh
|
|
|