godot-lportal/.appveyor.yml

51 lines
1.4 KiB
YAML
Raw Normal View History

2020-02-24 18:08:11 +01:00
os: Visual Studio 2019
2020-02-24 15:57:34 +01:00
environment:
HOME: "%HOMEDRIVE%%HOMEPATH%"
PYTHON: C:\Python27
SCONS_CACHE_ROOT: "%HOME%\\scons_cache"
SCONS_CACHE_LIMIT: 1024
2020-02-24 16:10:35 +01:00
GODOT_REPO_URL: "https://github.com/godotengine/godot"
2020-02-24 15:57:34 +01:00
matrix:
2020-02-24 18:08:11 +01:00
- VS: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat
2020-02-24 15:57:34 +01:00
GD_PLATFORM: windows
TOOLS: yes
2020-02-24 18:08:11 +01:00
TARGET: release_debug
2020-02-24 15:57:34 +01:00
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==3.0.1
- if defined VS call "%VS%" %ARCH% # if defined - so we can also use mingw
before_build:
# Get Godot source and install the module
2020-02-26 12:37:59 +01:00
- cd %APPVEYOR_BUILD_FOLDER%\..
2020-02-26 12:33:34 +01:00
- echo.> my_file.txt
2020-02-26 12:11:48 +01:00
#- git clone --depth=1 --branch=3.2 %GODOT_REPO_URL% && cd godot
2020-02-26 12:35:30 +01:00
#- mkdir godot && cd godot && mkdir modules
#- mklink /d modules\lportal %APPVEYOR_BUILD_FOLDER%
2020-02-24 15:57:34 +01:00
- echo %GD_PLATFORM%
2020-02-26 12:02:24 +01:00
#- python --version
#- scons --version
#- cl.exe
2020-02-24 16:26:20 +01:00
- SET "SCONS_CACHE=%SCONS_CACHE_ROOT%\3.2"
2020-02-24 15:57:34 +01:00
build_script:
2020-02-26 12:02:24 +01:00
#- scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes -c
- scons --version
2020-02-26 12:35:30 +01:00
#- cd ..
2020-02-26 12:07:35 +01:00
- ls
2020-02-26 12:11:48 +01:00
- dir /s
2020-02-26 11:56:26 +01:00
artifacts:
2020-02-26 12:37:59 +01:00
- path: '..\*.txt'
2020-02-26 11:56:26 +01:00
# - path: godot\bin\*.exe
name: GodotBinary