Changeset 0ff34aa for .appveyor.yml


Ignore:
Timestamp:
Sep 24, 2018, 11:55:25 PM (6 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
Children:
a2a313f
Parents:
28c473e
Message:

.appveyor.yml: remove quotes, try using mingw on amd64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .appveyor.yml

    r28c473e r0ff34aa  
    44environment:
    55
     6  global:
     7      MINGW_32: C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin
     8      MINGW_64: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin
     9
    610  matrix:
    711
    812    # pre-installed python version, see:
    913    # http://www.appveyor.com/docs/installed-software#python
    10     - PYTHONDIR: "C:\\Python27"
    11       PYTHON_VERSION: "2.7.x"
    12       PYTHON_ARCH: "32"
     14    - PYTHONDIR: C:\Python27
     15      PYTHON_VERSION: 2.7.x
     16      PYTHON_ARCH: 32
    1317
    14     - PYTHONDIR: "C:\\Python27-x64"
    15       PYTHON_VERSION: "2.7.x"
    16       PYTHON_ARCH: "64"
     18    - PYTHONDIR: C:\Python27-x64
     19      PYTHON_VERSION: 2.7.x
     20      PYTHON_ARCH: 64
    1721
    18     - PYTHONDIR: "C:\\Python35"
    19       PYTHON_VERSION: "3.5.x"
    20       PYTHON_ARCH: "32"
     22    - PYTHONDIR: C:\Python35
     23      PYTHON_VERSION: 3.5.x
     24      PYTHON_ARCH: 32
    2125
    22     - PYTHONDIR: "C:\\Python35-x64"
    23       PYTHON_VERSION: "3.5.x"
    24       PYTHON_ARCH: "64"
     26    - PYTHONDIR: C:\Python35-x64
     27      PYTHON_VERSION: 3.5.x
     28      PYTHON_ARCH: 64
    2529
    26     - PYTHONDIR: "C:\\Python36"
    27       PYTHON_VERSION: "3.6.x"
    28       PYTHON_ARCH: "32"
     30    - PYTHONDIR: C:\Python36
     31      PYTHON_VERSION: 3.6.x
     32      PYTHON_ARCH: 32
    2933
    30     - PYTHONDIR: "C:\\Python36-x64"
    31       PYTHON_VERSION: "3.6.x"
    32       PYTHON_ARCH: "64"
     34    - PYTHONDIR: C:\Python36-x64
     35      PYTHON_VERSION: 3.6.x
     36      PYTHON_ARCH: 64
    3337
    34     - PYTHONDIR: "C:\\Python37"
    35       PYTHON_VERSION: "3.7.x"
    36       PYTHON_ARCH: "32"
     38    - PYTHONDIR: C:\Python37
     39      PYTHON_VERSION: 3.7.x
     40      PYTHON_ARCH: 32
    3741
    38     - PYTHONDIR: "C:\\Python37-x64"
    39       PYTHON_VERSION: "3.7.x"
    40       PYTHON_ARCH: "64"
     42    - PYTHONDIR: C:\Python37-x64
     43      PYTHON_VERSION: 3.7.x
     44      PYTHON_ARCH: 64
    4145
    4246install:
     
    4650
    4751  - "SET PATH=%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%"
     52
     53  #- if [%PYTHON_ARCH%]==[32] SET PATH=%MINGW_32%;%PATH%
     54  - if [%PYTHON_ARCH%]==[64] SET PATH=%MINGW_64%;%PATH%
    4855
    4956  # Check that we have the expected version and architecture for Python
Note: See TracChangeset for help on using the changeset viewer.