Changeset c4c5130


Ignore:
Timestamp:
May 4, 2016, 12:45:22 PM (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:
a0f0f00
Parents:
9ac77ac
Message:

scripts/appveyor: add scripts to prepare building python module

Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • appveyor.yml

    r9ac77ac rc4c5130  
    11# appveyor configuration. See http://www.appveyor.com/docs/appveyor-yml
     2# inspired from https://github.com/ogrisel/python-appveyor-demo/blob/master/appveyor.yml
     3
     4environment:
     5
     6  global:
     7    # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
     8    # /E:ON and /V:ON options are not enabled in the batch script intepreter
     9    # See: http://stackoverflow.com/a/13751649/163740
     10    CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\scripts\\appveyor_run_with_env.cmd"
     11
     12  matrix:
     13
     14    - PYTHON: "C:\\Python27"
     15      PYTHON_VERSION: "2.7.x" # currently 2.7.9
     16      PYTHON_ARCH: "32"
     17
     18    - PYTHON: "C:\\Python27-x64"
     19      PYTHON_VERSION: "3.4.x" # currently 3.4.3
     20      PYTHON_ARCH: "64"
     21
     22install:
     23
     24  - ECHO "Installed SDKs:"
     25  - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
     26
     27  # Install Python (from the official .msi of http://python.org) and pip when
     28  # not already installed.
     29  - ps: if (-not(Test-Path($env:PYTHON))) { & scripts\appveyor_install_python.ps1 }
     30
     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)\""
    239
    340before_build:
Note: See TracChangeset for help on using the changeset viewer.