summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2017-02-08 22:24:36 +0000
committerGitHub <noreply@github.com>2017-02-08 22:24:36 +0000
commit7c0ec265a89808893a692f6205f2555f30198444 (patch)
tree5f614d77d97356f9b946dec90bace4953ab03c92 /appveyor.yml
parente92045d3c46eaaa41ec4ed237a0887d097734ae0 (diff)
parent730e6bf5a0eea0b00565f0f8875c4a0618f4c675 (diff)
downloadenchant-tags/enchant-1-6-1.tar.gz
Merge pull request #74 from rrthomas/masterenchant-1-6-1
Fix tests on Windows and add Windows CI via Appveyor
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml20
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"