2017-09-26 11:16:37 +00:00
|
|
|
os: Visual Studio 2015
|
|
|
|
|
|
|
|
environment:
|
2017-11-26 01:47:54 +00:00
|
|
|
HOME: "%HOMEDRIVE%%HOMEPATH%"
|
2017-09-26 11:16:37 +00:00
|
|
|
PYTHON: C:\Python27
|
2017-11-27 13:39:05 +00:00
|
|
|
SCONS_CACHE_ROOT: "%HOME%\\scons_cache"
|
|
|
|
SCONS_CACHE_LIMIT: 512
|
2017-09-26 11:16:37 +00:00
|
|
|
matrix:
|
|
|
|
- VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
|
|
|
|
GD_PLATFORM: windows
|
|
|
|
TOOLS: yes
|
|
|
|
TARGET: release_debug
|
|
|
|
ARCH: amd64
|
|
|
|
|
2017-11-26 01:47:54 +00:00
|
|
|
cache:
|
2017-11-27 13:39:05 +00:00
|
|
|
- "%SCONS_CACHE_ROOT%"
|
2017-11-26 01:47:54 +00:00
|
|
|
|
2017-09-26 11:16:37 +00:00
|
|
|
install:
|
|
|
|
- SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
2018-05-16 20:59:23 +00:00
|
|
|
- pip install -U wheel # needed for pip install scons to work, otherwise a flag is missing
|
|
|
|
- pip install scons
|
2017-09-26 11:16:37 +00:00
|
|
|
- if defined VS call "%VS%" %ARCH% # if defined - so we can also use mingw
|
|
|
|
|
|
|
|
before_build:
|
|
|
|
- echo %GD_PLATFORM%
|
|
|
|
- python --version
|
|
|
|
- scons --version
|
|
|
|
- cl.exe
|
2017-11-27 13:39:05 +00:00
|
|
|
- SET "SCONS_CACHE=%SCONS_CACHE_ROOT%\master"
|
2017-09-26 11:16:37 +00:00
|
|
|
|
|
|
|
build_script:
|
2018-01-04 19:32:12 +00:00
|
|
|
- scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% verbose=yes progress=no gdnative_wrapper=yes
|