Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Kelman <tony@kelman.net>2015-03-03 21:53:26 +0300
committerTony Kelman <tony@kelman.net>2015-03-04 22:29:40 +0300
commitac5fad2780a381a2d60fb00e4104c713faa301ec (patch)
tree05a0fa183d7fff9a806bbbf5964923e5542703b1 /appveyor.yml
parentbdf0e734506b5b18234d48a0e7c6995aeda30b9d (diff)
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.yml10
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 .