diff options
author | Tony Kelman <tony@kelman.net> | 2015-03-03 10:53:26 -0800 |
---|---|---|
committer | Tony Kelman <tony@kelman.net> | 2015-03-04 11:29:40 -0800 |
commit | ac5fad2780a381a2d60fb00e4104c713faa301ec (patch) | |
tree | 05a0fa183d7fff9a806bbbf5964923e5542703b1 /appveyor.yml | |
parent | bdf0e734506b5b18234d48a0e7c6995aeda30b9d (diff) | |
download | libgit2-ac5fad2780a381a2d60fb00e4104c713faa301ec.tar.gz |
add mingw to appveyor matrix
use MSYS makefiles generator
add bash script for running mingw on appveyor
add --login and fix run paths
use msys style path to appveyor-mingw.sh
add mingw path to /etc/fstab
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index d155485fd..00a2fd2f5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,11 +11,17 @@ environment: ARCH: 32 - GENERATOR: "Visual Studio 11 Win64" ARCH: 64 + - GENERATOR: "MSYS Makefiles" + ARCH: 32 build_script: - ps: | mkdir build cd build - cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G"$env:GENERATOR" - cmake --build . --config RelWithDebInfo + if ($env:GENERATOR -ne "MSYS Makefiles") { + cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON .. -G"$env:GENERATOR" + cmake --build . --config RelWithDebInfo + } else { + C:\MinGW\msys\1.0\bin\sh --login /c/projects/libgit2/script/appveyor-mingw.sh + } test_script: - ps: ctest -V . |