ref: 77d93706d25776a61d1a12485160fdb7541cc8f3
dir: /.appveyor.yml/
# appveyor configuration. See http://www.appveyor.com/docs/appveyor-yml
# and http://www.appveyor.com/docs/installed-software#python
environment:
matrix:
# pre-installed python version, see:
# http://www.appveyor.com/docs/installed-software#python
- PYTHONDIR: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"
- PYTHONDIR: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
- PYTHONDIR: "C:\\Python35"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "32"
- PYTHONDIR: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"
- PYTHONDIR: "C:\\Python36"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
- PYTHONDIR: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
- PYTHONDIR: "C:\\Python37"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "32"
- PYTHONDIR: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
install:
- ECHO "Installed SDKs:"
- ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
# Check that we have the expected version and architecture for Python
- "%PYTHONDIR%\\python.exe --version"
- "%PYTHONDIR%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\""
- "%PYTHONDIR%\\python.exe -m pip install --disable-pip-version-check --user --upgrade pip"
- "%PYTHONDIR%\\python.exe -m pip install --upgrade setuptools"
# We need wheel installed to build wheels
- "%PYTHONDIR%\\python.exe -m pip install wheel"
- "SET PATH=%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%"
before_build:
- "bash scripts/get_waf.sh"
build_script:
# build python module without using libaubio
- "%PYTHONDIR%\\python.exe -m pip install -r requirements.txt"
- "python setup.py build"
- "%PYTHONDIR%\\python.exe -m pip install ."
- "python python\\demos\\demo_create_test_sounds.py"
- "nose2 --verbose"
# clean up
- "python waf distclean"
# build libaubio
- python waf configure build --verbose --msvc_version="msvc 14.0"