forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
31 lines (26 loc) · 1.36 KB
/
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
os: Windows Server 2012
environment:
global:
PYTHONPATH: c:\testdir
matrix:
- pythonurl: http://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi
- pythonurl: http://www.python.org/ftp/python/2.7.6/python-2.7.6.msi
- pythonurl: http://www.python.org/ftp/python/2.6.6/python-2.6.6.msi
- pythonurl: http://www.python.org/ftp/python/2.6.6/python-2.6.6.amd64.msi
install:
- ps: (new-object net.webclient).DownloadFile($env:pythonurl, 'C:\python.msi')
- ps: start-process -wait -FilePath msiexec.exe -ArgumentList "/qn /i C:\python.msi TARGETDIR=C:\Python"
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:\get-pip.py')
# appveyor has python 2.7.6 x86 preinstalled, but in the wrong directory, this works around this
- ps: if ($env:pythonurl -eq "http://www.python.org/ftp/python/2.7.6/python-2.7.6.msi") {mi c:\python27 c:\python}
- set PATH=C:\Python;%PATH%
- C:\Python\python.exe c:\get-pip.py
- C:\Python\Scripts\pip.exe install wheel
build_script:
- C:\python\python.exe setup.py bdist_wheel
test_script:
- ps: C:\python\scripts\pip.exe install ("dist\" + (gci dist)[0].Name)
- mkdir c:\testdir
- ps: copy-item (gci -path build -re -include Python.Test.dll)[0].FullName c:\testdir
- c:\python\python.exe src\tests\runtests.py
- c:\python\scripts\npython.exe src\tests\runtests.py