Changeset a0f0f00


Ignore:
Timestamp:
May 4, 2016, 12:56:18 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:
6f4f117
Parents:
c4c5130
Message:

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

Files:
2 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • appveyor.yml

    rc4c5130 ra0f0f00  
    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
     2# and http://www.appveyor.com/docs/installed-software#python
    33
    44environment:
    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"
    115
    126  matrix:
     
    2519  - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
    2620
    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 }
     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)\""
    3024
    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"
    3927
    4028before_build:
Note: See TracChangeset for help on using the changeset viewer.