mirror of
https://github.com/godotengine/godot
synced 2024-11-02 10:25:48 +00:00
e71c20099c
Also increase AppVeyor cache size to 1024, should match what is available for us in the free plan: https://www.appveyor.com/docs/build-cache/#cache-size-beta And drop obsolete debug_release option for Windows, superseded by target=release and debug_symbols=yes.
32 lines
900 B
YAML
32 lines
900 B
YAML
os: Visual Studio 2015
|
|
|
|
environment:
|
|
HOME: "%HOMEDRIVE%%HOMEPATH%"
|
|
PYTHON: C:\Python27
|
|
SCONS_CACHE_ROOT: "%HOME%\\scons_cache"
|
|
SCONS_CACHE_LIMIT: 1024
|
|
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 -U wheel # needed for pip install scons to work, otherwise a flag is missing
|
|
- pip install scons
|
|
- 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% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes
|