diff options
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..c0af82b --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,20 @@ +version: "{build}" + +environment: + global: + CONFIGURE_FLAGS: --with-myspell-dir=/mingw64/share/hunspell + VERBOSE: 1 # Get test logs in output + +# FIXME: Build on mingw-w64, mingw-w32 and MSYS2 +# matrix: +# - COMPILER: MinGW-w64 +# - COMPILER: MinGW-w32 + +init: + - git config --global core.autocrlf input + +install: + - C:\msys64\usr\bin\bash.exe -l c:/projects/enchant/build-aux/appveyor-install.sh + +build_script: + - C:\msys64\usr\bin\bash.exe -lc "cd c:/projects/enchant && ./autogen.sh %CONFIGURE_FLAGS% && make && make DISTCHECK_CONFIGURE_FLAGS=%CONFIGURE_FLAGS% distcheck" |