-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.appveyor.yml
35 lines (30 loc) · 917 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
33
34
35
skip_tags: true
matrix:
fast_finish: true
os: Visual Studio 2015
environment:
matrix:
- PLATFORM: "x64"
VCBUILD: "vcbuild64.bat"
RUNTEST: "runtest64.bat"
PYTHON: "C:\\Python36-x64"
before_build:
"\"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" %PLATFORM%"
build_script:
- "%PYTHON%\\python.exe -m pip install pytest"
- git clone https://github.com/plures/ndtypes.git
- git clone https://github.com/plures/xnd.git
- git clone https://github.com/plures/gumath.git
- cd ndtypes
- "%PYTHON%\\python.exe setup.py install"
- cd ..\xnd
- "%PYTHON%\\python.exe setup.py install"
- cd ..\gumath
- "%PYTHON%\\python.exe setup.py install"
- cd ..
- dir
- "%PYTHON%\\python.exe setup.py develop"
- "%PYTHON%\\python.exe setup.py test"
- git clean -xdf
- "%PYTHON%\\python.exe setup.py install"
- "%PYTHON%\\python.exe setup.py test"