mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
CI/AppVeyor: do skip-logic earlier #9854
This commit is contained in:
parent
a7a56293aa
commit
c5e8924f4e
@ -8,6 +8,13 @@ configuration:
|
|||||||
- MINGW_64
|
- MINGW_64
|
||||||
- MINGW_32
|
- MINGW_32
|
||||||
- MINGW_64-gcov
|
- MINGW_64-gcov
|
||||||
|
init:
|
||||||
|
- ps: |
|
||||||
|
# For pull requests, skip some build configurations to save time.
|
||||||
|
if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -and $env:CONFIGURATION -match '^(MSVC_64|MINGW_32|MINGW_64-gcov)$') {
|
||||||
|
$env:APPVEYOR_CACHE_SKIP_SAVE = "true"
|
||||||
|
Exit-AppVeyorBuild
|
||||||
|
}
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- configuration: MINGW_64-gcov
|
- configuration: MINGW_64-gcov
|
||||||
|
@ -18,11 +18,6 @@ $nvimCmakeVars = @{
|
|||||||
}
|
}
|
||||||
$uploadToCodeCov = $false
|
$uploadToCodeCov = $false
|
||||||
|
|
||||||
# For pull requests, skip some build configurations to save time.
|
|
||||||
if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -and $env:CONFIGURATION -match '^(MSVC_64|MINGW_32|MINGW_64-gcov)$') {
|
|
||||||
exit 0
|
|
||||||
}
|
|
||||||
|
|
||||||
function exitIfFailed() {
|
function exitIfFailed() {
|
||||||
if ($LastExitCode -ne 0) {
|
if ($LastExitCode -ne 0) {
|
||||||
Set-PSDebug -Off
|
Set-PSDebug -Off
|
||||||
|
Loading…
Reference in New Issue
Block a user