feat(.appveyor.yml): windows ci using appveyor

This commit is contained in:
Gabriel Ebner 2016-12-01 16:05:20 -05:00 committed by Leonardo de Moura
parent b7e781684f
commit ab8797890a

14
.appveyor.yml Normal file
View file

@ -0,0 +1,14 @@
environment:
matrix:
- MSYSTEM: MINGW64
install:
# upgrading gcc to 6.x fails
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Suuy mingw-w64-x86_64-ninja mingw-w64-x86_64-cmake git mingw-w64-x86_64-mpfr"
build_script:
- C:\msys64\usr\bin\bash -lc "exec 0</dev/null && cd $APPVEYOR_BUILD_FOLDER && mkdir build && cd build && cmake ../src -DCMAKE_BUILD_TYPE=Release -G Ninja"
- C:\msys64\usr\bin\bash -lc "exec 0</dev/null && cd $APPVEYOR_BUILD_FOLDER/build && ninja"
test_script:
- C:\msys64\usr\bin\bash -lc "exec 0</dev/null && cd $APPVEYOR_BUILD_FOLDER/build && ctest -j4"