From: Paul Brossier Date: Mon, 24 Sep 2018 21:55:25 +0000 (+0200) Subject: .appveyor.yml: remove quotes, try using mingw on amd64 X-Git-Tag: 0.4.8~100^2~4 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=0ff34aa7b520538f81754b481ef8a85b9ac78963 .appveyor.yml: remove quotes, try using mingw on amd64 --- diff --git a/.appveyor.yml b/.appveyor.yml index f4f29983..7658be36 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -3,41 +3,45 @@ environment: + global: + MINGW_32: C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin + MINGW_64: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin + 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 + PYTHON_VERSION: 2.7.x + PYTHON_ARCH: 32 - - PYTHONDIR: "C:\\Python27-x64" - PYTHON_VERSION: "2.7.x" - PYTHON_ARCH: "64" + - 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 + PYTHON_VERSION: 3.5.x + PYTHON_ARCH: 32 - - PYTHONDIR: "C:\\Python35-x64" - PYTHON_VERSION: "3.5.x" - PYTHON_ARCH: "64" + - 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 + PYTHON_VERSION: 3.6.x + PYTHON_ARCH: 32 - - PYTHONDIR: "C:\\Python36-x64" - PYTHON_VERSION: "3.6.x" - PYTHON_ARCH: "64" + - 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 + PYTHON_VERSION: 3.7.x + PYTHON_ARCH: 32 - - PYTHONDIR: "C:\\Python37-x64" - PYTHON_VERSION: "3.7.x" - PYTHON_ARCH: "64" + - PYTHONDIR: C:\Python37-x64 + PYTHON_VERSION: 3.7.x + PYTHON_ARCH: 64 install: @@ -46,6 +50,9 @@ install: - "SET PATH=%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%" + #- if [%PYTHON_ARCH%]==[32] SET PATH=%MINGW_32%;%PATH% + - if [%PYTHON_ARCH%]==[64] SET PATH=%MINGW_64%;%PATH% + # Check that we have the expected version and architecture for Python - "python --version" - "python -c \"import struct; print(struct.calcsize('P') * 8)\""