source: appveyor.yml @ a0f0f00

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

appveyor.yml: remove scripts, use pre-installed python

  • Property mode set to 100644
File size: 952 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
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
16install:
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
28before_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
32build_script:
33  - waf configure build --verbose
Note: See TracBrowser for help on using the repository browser.