diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-19 08:55:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 08:55:23 +0100 |
commit | c72b05e851bdc0f23301a762c7ecd8ee8f17734d (patch) | |
tree | 62e776d406a536e16b22e942605f795dd9be0245 | |
parent | b967c910b88ed0cf134749464dcec7f4311e19f4 (diff) | |
parent | 106221a73332f51dbd40e0e62a56ab67917ab654 (diff) |
Merge pull request #33736 from madmiraal/update-appveyor
AppVeyor: Enable warnings as errors.
-rw-r--r-- | .appveyor.yml | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 05e7094981..3f6e932050 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,10 +7,19 @@ environment: PYTHON: C:\Python38 SCONS_CACHE_ROOT: "%HOME%\\scons_cache" SCONS_CACHE_LIMIT: 1024 + OPTIONS: "debug_symbols=no verbose=yes progress=no" + EXTRA_ARGS: "warnings=all werror=yes" matrix: - - GD_PLATFORM: windows - TOOLS: yes - TARGET: release_debug + - GD_PLATFORM: windows + TARGET: release_debug + TOOLS: yes +# Disabled for performance reasons until master is more stable. +# - GD_PLATFORM: windows +# TARGET: release +# TOOLS: no + +matrix: + fast_finish: true init: - ps: if ($env:APPVEYOR_REPO_BRANCH -ne "master") { $env:APPVEYOR_CACHE_SKIP_SAVE = "true" } @@ -29,4 +38,4 @@ before_build: - set "SCONS_CACHE=%SCONS_CACHE_ROOT%\%APPVEYOR_REPO_BRANCH%" build_script: - - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes + - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% %OPTIONS% %EXTRA_ARGS% |