source: appveyor.yml @ 6fb0f07

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 6fb0f07 was 6f4f117, checked in by Paul Brossier <piem@piem.org>, 8 years ago

appveyor.yml: simplify matrix

  • Property mode set to 100644
File size: 806 bytes
Line 
1# appveyor configuration. See http://www.appveyor.com/docs/appveyor-yml
2# and http://www.appveyor.com/docs/installed-software#python
3
4environment:
5
6  matrix:
7    - PYTHON: "C:\\Python27"
8    - PYTHON: "C:\\Python33-x64"
9
10install:
11
12  - ECHO "Installed SDKs:"
13  - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
14
15  # Check that we have the expected version and architecture for Python
16  - "%PYTHON%\\python.exe --version"
17  - "%PYTHON%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\""
18
19  # We need wheel installed to build wheels
20  - "%PYTHON%\\python.exe -m pip install wheel"
21
22before_build:
23  - curl -fsS -o waf https://waf.io/waf-1.8.20
24  - curl -fsS -o waf.bat https://raw.githubusercontent.com/waf-project/waf/master/utils/waf.bat
25
26build_script:
27  - waf configure build --verbose
Note: See TracBrowser for help on using the repository browser.