diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-03 06:51:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-03 06:51:07 +0200 |
commit | 0f8d939866a417f657d61f241523e36b48a41410 (patch) | |
tree | 30b0bee46b4fc75b18563cd992d3c7930b4d4adb | |
parent | d8ce7aeddcaeea503d8d247c55a2cd83ccbbc2c4 (diff) | |
parent | b021bdbf1f72e0364e49bd506eab61d7ed0d57bf (diff) |
Merge pull request #30257 from akien-mga/appveyor-cache-master-only
AppVeyor: Skip saving cache on non-master branches
-rw-r--r-- | .appveyor.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index bd4a7b0ca8..b04e7d9ce8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -12,6 +12,9 @@ environment: TARGET: release_debug ARCH: amd64 +init: + - ps: if ($env:APPVEYOR_REPO_BRANCH -ne "master") { $env:APPVEYOR_CACHE_SKIP_SAVE = "true" } + cache: - "%SCONS_CACHE_ROOT%" @@ -26,7 +29,7 @@ before_build: - python --version - scons --version - cl.exe - - SET "SCONS_CACHE=%SCONS_CACHE_ROOT%\master" + - 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% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes |