forked from enthought/traits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (26 loc) · 945 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
build: false
shallow_clone: true
environment:
global:
distutils_use_sdk: 1
matrix:
- python: "C:/Python27-x64"
sdkver: "v7.0"
- python: "C:/Python33-x64"
sdkver: "v7.1"
- python: "C:/Python34-x64"
sdkver: "v7.1"
cache:
- c:\egg_cache
init:
- ps: $Env:sdkbin = "C:\Program Files\Microsoft SDKs\Windows\" + $Env:sdkver + "\Bin"
- ps: $Env:sdkverpath = "C:/Program Files/Microsoft SDKs/Windows/" + $Env:sdkver + "/Setup/WindowsSdkVer.exe"
- ps: $Env:path = $Env:python + ";" + $Env:python + "\scripts;" + $Env:sdkbin + ";" + $Env:path
install:
- ps: if ((Test-Path "c:/egg_cache") -eq 0) { mkdir c:/egg_cache }
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'c:/get-pip.py')
- ps: python c:/get-pip.py
- ps: pip --version
- cmd /v:on /e:on /c ".\appveyor-install.cmd"
test_script:
- cmd /v:on /e:on /c ".\appveyor-test.cmd"