.appveyor.yml 907 B

123456789101112131415161718192021222324252627282930313233
  1. os: Visual Studio 2015
  2. environment:
  3. HOME: "%HOMEDRIVE%%HOMEPATH%"
  4. PYTHON: C:\Python27
  5. SCONS_CACHE_ROOT: "%HOME%\\scons_cache"
  6. SCONS_CACHE_LIMIT: 1024
  7. matrix:
  8. - VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
  9. GD_PLATFORM: windows
  10. TOOLS: yes
  11. TARGET: release_debug
  12. ARCH: amd64
  13. cache:
  14. - "%SCONS_CACHE_ROOT%"
  15. install:
  16. - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
  17. - pip install -U wheel # needed for pip install scons to work, otherwise a flag is missing
  18. - pip install scons==3.0.1
  19. - if defined VS call "%VS%" %ARCH% # if defined - so we can also use mingw
  20. before_build:
  21. - echo %GD_PLATFORM%
  22. - python --version
  23. - scons --version
  24. - cl.exe
  25. - SET "SCONS_CACHE=%SCONS_CACHE_ROOT%\master"
  26. build_script:
  27. - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes