Changeset e0c74c2


Ignore:
Timestamp:
May 16, 2016, 7:10:13 AM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
19c3d75
Parents:
3c4fb67
Message:

appveyor.yml: update, add environments, build and test python (see #55, #2)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • appveyor.yml

    r3c4fb67 re0c74c2  
    55
    66  matrix:
     7
     8    # pre-installed python version, see:
     9    # http://www.appveyor.com/docs/installed-software#python
    710    - PYTHON: "C:\\Python27"
    8     - PYTHON: "C:\\Python33-x64"
     11      PYTHON_VERSION: "2.7.x"
     12      PYTHON_ARCH: "32"
     13
     14    - PYTHON: "C:\\Python27-x64"
     15      PYTHON_VERSION: "2.7.x"
     16      PYTHON_ARCH: "64"
     17
     18    - PYTHON: "C:\\Python34"
     19      PYTHON_VERSION: "3.4.x"
     20      PYTHON_ARCH: "32"
     21
     22    - PYTHON: "C:\\Python34-x64"
     23      PYTHON_VERSION: "3.4.x"
     24      PYTHON_ARCH: "64"
     25
     26    - PYTHON: "C:\\Python35"
     27      PYTHON_VERSION: "3.5.x"
     28      PYTHON_ARCH: "32"
     29
     30    - PYTHON: "C:\\Python35-x64"
     31      PYTHON_VERSION: "3.5.x"
     32      PYTHON_ARCH: "64"
    933
    1034install:
     
    2044  - "%PYTHON%\\python.exe -m pip install wheel"
    2145
     46  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
     47
     48  - "pip install --disable-pip-version-check --user --upgrade pip"
     49  - "pip install --upgrade setuptools"
     50
    2251before_build:
    2352  - curl -fsS -o waf https://waf.io/waf-1.8.20
     
    2554
    2655build_script:
     56  # build python module without using libaubio
     57  - "pip install -r requirements.txt"
     58  - "python setup.py build"
     59  - "pip install ."
     60  - "python python\\demos\\demo_create_test_sounds.py"
     61  - "nose2"
     62  # clean up
     63  - waf distclean
     64  # build libaubio
    2765  - waf configure build --verbose
     66  # build python module using libaubio dll
     67  - "python setup.py build"
Note: See TracChangeset for help on using the changeset viewer.