forked from enthought/mayavi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
27 lines (24 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
build: false
shallow_clone: true
environment:
global:
distutils_use_sdk: 1
sdkver: "C:/Program Files/Microsoft SDKs/Windows/v7.0/Setup/WindowsSdkVer.exe"
python: "C:/Python27-x64"
vtk_url: "http://www.vtk.org/files/release/6.2/vtkpython-6.2.0-Windows-64bit.exe"
pythonpath: "C:/vtk/bin/Lib/site-packages"
cache:
- c:\temp
init:
- ps: $Env:path = $Env:python + ";" + $Env:python + "\scripts;" + "C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin;" + "C:\vtk\bin;" + $Env:path
- ps: $env:ETS_TOOLKIT="qt4"
install:
- ps: if ((Test-Path "c:/temp") -eq 0) { mkdir c:/temp }
- ps: (new-object net.webclient).DownloadFile($Env:vtk_url, 'c:/vtkpython.exe')
- ps: c:/vtkpython.exe /S /D=C:\vtk
- ps: python -m pip install --upgrade --no-use-wheel pip
- ps: pip install --upgrade wheel
- ps: pip --version
- cmd /v:on /e:on /c ".\appveyor-install.cmd"
test_script:
- cmd /v:on /e:on /c ".\appveyor-test.cmd"