summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-09-27 10:39:47 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-09-28 03:35:38 +0200
commit1124e19afc1cca38fec794fdbb9c32f199217f78 (patch)
tree431b9804321ea882d8275cdc6f4e0a1d133b1428 /.appveyor.yml
parent278423faeb843fcf324df85149eeb70c6094a3bc (diff)
downloadgitpython-1124e19afc1cca38fec794fdbb9c32f199217f78.tar.gz
Appveyor, #519: Git-daemon also for Cygwin-git
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml15
1 files changed, 9 insertions, 6 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 7863d6d5..da91552e 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,29 +1,32 @@
# CI on Windows via appveyor
environment:
+ GIT_DAEMON_PATH: "C:\\Program Files\\Git\\mingw64\\libexec\\git-core"
+ CYGWIN_GIT_PATH: "C:\\cygwin\\bin;%GIT_DAEMON_PATH%"
+ CYGWIN64_GIT_PATH: "C:\\cygwin64\\bin;%GIT_DAEMON_PATH%"
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7"
- GIT_PATH: "C:\\Program Files\\Git\\mingw64\\libexec\\git-core"
+ GIT_PATH: "%GIT_DAEMON_PATH%"
- PYTHON: "C:\\Miniconda"
PYTHON_VERSION: "2.7"
IS_CONDA: "yes"
- GIT_PATH: "C:\\cygwin\\bin"
+ GIT_PATH: "%CYGWIN_GIT_PATH%"
- PYTHON: "C:\\Miniconda3-x64"
PYTHON_VERSION: "3.4"
IS_CONDA: "yes"
- GIT_PATH: "C:\\Program Files\\Git\\mingw64\\libexec\\git-core"
+ GIT_PATH: "%GIT_DAEMON_PATH%"
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4"
- GIT_PATH: "C:\\cygwin64\\bin"
+ GIT_PATH: "%CYGWIN64_GIT_PATH%"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"
- GIT_PATH: "C:\\Program Files\\Git\\mingw64\\libexec\\git-core"
+ GIT_PATH: "%GIT_DAEMON_PATH%"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"
- GIT_PATH: "C:\\cygwin64\\bin"
+ GIT_PATH: "%CYGWIN64_GIT_PATH%"
install:
- set PATH=%PYTHON%;%PYTHON%\Scripts;%GIT_PATH%;%PATH%