mirror of
https://github.com/godotengine/godot
synced 2024-11-02 12:55:22 +00:00
31 lines
820 B
YAML
31 lines
820 B
YAML
os: Visual Studio 2015
|
|
|
|
environment:
|
|
HOME: "%HOMEDRIVE%%HOMEPATH%"
|
|
PYTHON: C:\Python27
|
|
SCONS_CACHE_ROOT: "%HOME%\\scons_cache"
|
|
SCONS_CACHE_LIMIT: 512
|
|
matrix:
|
|
- VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
|
|
GD_PLATFORM: windows
|
|
TOOLS: yes
|
|
TARGET: release_debug
|
|
ARCH: amd64
|
|
|
|
cache:
|
|
- "%SCONS_CACHE_ROOT%"
|
|
|
|
install:
|
|
- SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
|
- pip install --egg scons # it will fail on AppVeyor without --egg flag
|
|
- 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
|
|
- SET "SCONS_CACHE=%SCONS_CACHE_ROOT%\master"
|
|
|
|
build_script:
|
|
- scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% verbose=yes progress=no
|