Changeset a0f0f00
- Timestamp:
- May 4, 2016, 12:56:18 PM (9 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 6f4f117
- Parents:
- c4c5130
- Files:
-
- 2 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
appveyor.yml
rc4c5130 ra0f0f00 1 1 # appveyor configuration. See http://www.appveyor.com/docs/appveyor-yml 2 # inspired from https://github.com/ogrisel/python-appveyor-demo/blob/master/appveyor.yml2 # and http://www.appveyor.com/docs/installed-software#python 3 3 4 4 environment: 5 6 global:7 # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the8 # /E:ON and /V:ON options are not enabled in the batch script intepreter9 # See: http://stackoverflow.com/a/13751649/16374010 CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\scripts\\appveyor_run_with_env.cmd"11 5 12 6 matrix: … … 25 19 - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\"" 26 20 27 # Install Python (from the official .msi of http://python.org) and pip when28 # not already installed.29 - ps: if (-not(Test-Path($env:PYTHON))) { & scripts\appveyor_install_python.ps1 }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)\"" 30 24 31 # Prepend newly installed Python to the PATH of this build (this cannot be 32 # done from inside the powershell script as it would require to restart 33 # the parent CMD process). 34 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" 35 36 # Check that we have the expected version and architecture for Python 37 - "python --version" 38 - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" 25 # We need wheel installed to build wheels 26 - "%PYTHON%\\python.exe -m pip install wheel" 39 27 40 28 before_build:
Note: See TracChangeset
for help on using the changeset viewer.