.appveyor.yml 628 B

12345678910111213141516171819202122232425
  1. os: Visual Studio 2015
  2. environment:
  3. PYTHON: C:\Python27
  4. matrix:
  5. - VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
  6. GD_PLATFORM: windows
  7. TOOLS: yes
  8. TARGET: release_debug
  9. ARCH: amd64
  10. install:
  11. - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
  12. - pip install --egg scons # it will fail on AppVeyor without --egg flag
  13. - if defined VS call "%VS%" %ARCH% # if defined - so we can also use mingw
  14. before_build:
  15. - echo %GD_PLATFORM%
  16. - python --version
  17. - scons --version
  18. - cl.exe
  19. build_script:
  20. - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% progress=no