diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-18 17:26:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-18 17:26:20 +0200 |
commit | ce9367c254d0612bee41212c8a58c05d6bb07e48 (patch) | |
tree | c840bd2960abbb31f9188eb61c47a763da7f77ec | |
parent | 9bbac874f9e56c56e8f891ef691df293d11f11c6 (diff) | |
download | rneovim-ce9367c254d0612bee41212c8a58c05d6bb07e48.tar.gz rneovim-ce9367c254d0612bee41212c8a58c05d6bb07e48.tar.bz2 rneovim-ce9367c254d0612bee41212c8a58c05d6bb07e48.zip |
CI/AppVeyor: revert "skip MSVC_32 for non-PR" [skip travis] #10805
Revert commit bfbc1a787266833d7bebf0b48ac62a526a864034.
The nightly release job is failing:
https://travis-ci.org/neovim/bot-ci/builds/569687794
- We need the MSVC artifact on master so that our nightly job can publish it.
- Saving time on master is low-priority because most CI activity is from PRs.
-rw-r--r-- | appveyor.yml | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/appveyor.yml b/appveyor.yml index becb8cf090..756c7fea2e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,17 +14,9 @@ configuration: init: - ps: | # Pull requests: skip some build configurations to save time. - if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT) { - if ($env:CONFIGURATION -match '^(MSVC_64|MINGW_32)$') { - $env:APPVEYOR_CACHE_SKIP_SAVE = "true" - Exit-AppVeyorBuild - } - } else { - # Non-PRs: skip MSVC_32 run for PRs already. - if ($env:CONFIGURATION -match '^(MSVC_32)$') { - $env:APPVEYOR_CACHE_SKIP_SAVE = "true" - Exit-AppVeyorBuild - } + if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -and $env:CONFIGURATION -match '^(MSVC_64|MINGW_32)$') { + $env:APPVEYOR_CACHE_SKIP_SAVE = "true" + Exit-AppVeyorBuild } # RDP #- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) |