1 | # appveyor configuration. See http://www.appveyor.com/docs/appveyor-yml |
---|
2 | # and http://www.appveyor.com/docs/installed-software#python |
---|
3 | |
---|
4 | environment: |
---|
5 | |
---|
6 | matrix: |
---|
7 | |
---|
8 | # pre-installed python version, see: |
---|
9 | # http://www.appveyor.com/docs/installed-software#python |
---|
10 | - PYTHONDIR: "C:\\Python27" |
---|
11 | PYTHON_VERSION: "2.7.x" |
---|
12 | PYTHON_ARCH: "32" |
---|
13 | |
---|
14 | - PYTHONDIR: "C:\\Python27-x64" |
---|
15 | PYTHON_VERSION: "2.7.x" |
---|
16 | PYTHON_ARCH: "64" |
---|
17 | |
---|
18 | - PYTHONDIR: "C:\\Python34" |
---|
19 | PYTHON_VERSION: "3.4.x" |
---|
20 | PYTHON_ARCH: "32" |
---|
21 | |
---|
22 | - PYTHONDIR: "C:\\Python34-x64" |
---|
23 | PYTHON_VERSION: "3.4.x" |
---|
24 | PYTHON_ARCH: "64" |
---|
25 | |
---|
26 | - PYTHONDIR: "C:\\Python35" |
---|
27 | PYTHON_VERSION: "3.5.x" |
---|
28 | PYTHON_ARCH: "32" |
---|
29 | |
---|
30 | - PYTHONDIR: "C:\\Python35-x64" |
---|
31 | PYTHON_VERSION: "3.5.x" |
---|
32 | PYTHON_ARCH: "64" |
---|
33 | # add path required to run preprocessor step |
---|
34 | PATH_EXTRAS: "c:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\bin" |
---|
35 | |
---|
36 | install: |
---|
37 | |
---|
38 | - ECHO "Installed SDKs:" |
---|
39 | - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\"" |
---|
40 | |
---|
41 | # Check that we have the expected version and architecture for Python |
---|
42 | - "%PYTHONDIR%\\python.exe --version" |
---|
43 | - "%PYTHONDIR%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\"" |
---|
44 | |
---|
45 | - "%PYTHONDIR%\\python.exe -m pip install --disable-pip-version-check --user --upgrade pip" |
---|
46 | - "%PYTHONDIR%\\python.exe -m pip install --upgrade setuptools" |
---|
47 | |
---|
48 | # We need wheel installed to build wheels |
---|
49 | - "%PYTHONDIR%\\python.exe -m pip install wheel" |
---|
50 | |
---|
51 | - "SET PATH=%PATH_EXTRAS%;%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%" |
---|
52 | |
---|
53 | before_build: |
---|
54 | - "bash scripts/get_waf.sh" |
---|
55 | |
---|
56 | build_script: |
---|
57 | # build python module without using libaubio |
---|
58 | - "%PYTHONDIR%\\python.exe -m pip install -r requirements.txt" |
---|
59 | - "python setup.py build" |
---|
60 | - "%PYTHONDIR%\\python.exe -m pip install ." |
---|
61 | - "python python\\demos\\demo_create_test_sounds.py" |
---|
62 | - "nose2 --verbose" |
---|
63 | # clean up |
---|
64 | - "python waf distclean" |
---|
65 | # build libaubio |
---|
66 | - python waf configure build --verbose --msvc_version="msvc 14.0" |
---|