8b3f567e253b31f6a5b672254ae3eda4fd9fd81d
[aubio.git] / appveyor.yml
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     - PYTHON: "C:\\Python27"
9       PYTHON_VERSION: "2.7.x" # currently 2.7.9
10       PYTHON_ARCH: "32"
11
12     - PYTHON: "C:\\Python27-x64"
13       PYTHON_VERSION: "3.4.x" # currently 3.4.3
14       PYTHON_ARCH: "64"
15
16 install:
17
18   - ECHO "Installed SDKs:"
19   - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
20
21   # Check that we have the expected version and architecture for Python
22   - "%PYTHON%\\python.exe --version"
23   - "%PYTHON%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\""
24
25   # We need wheel installed to build wheels
26   - "%PYTHON%\\python.exe -m pip install wheel"
27
28 before_build:
29   - curl -fsS -o waf https://waf.io/waf-1.8.20
30   - curl -fsS -o waf.bat https://raw.githubusercontent.com/waf-project/waf/master/utils/waf.bat
31
32 build_script:
33   - waf configure build --verbose