Reduce CI build time (for md/txt/log)

Handle md/txt/log by appveyor in a special way.

Close #12592
This commit is contained in:
ArkadiuszMichalski 2022-12-01 01:03:28 +01:00 committed by Don Ho
parent 210efa503f
commit adf2ad0f4f
1 changed files with 29 additions and 21 deletions

View File

@ -35,33 +35,41 @@ before_build:
Write-Output "Configuration : $env:configuration" Write-Output "Configuration : $env:configuration"
Write-Output "" Write-Output ""
# XML validation mode # XML validation mode
if ($env:APPVEYOR_PULL_REQUEST_NUMBER) { $allowMaster = $true
if ($allowMaster -or $env:APPVEYOR_PULL_REQUEST_NUMBER) {
$files_nowork = "md|txt|log"
$files_modified = @(git diff --name-only HEAD~1) $files_modified = @(git diff --name-only HEAD~1)
$files_notmached = @($files_modified | Where-Object {$_ -notmatch "\.xml$"}) $files_notmached = @($files_modified | Where-Object {$_ -notmatch "\.(xml|$files_nowork)$"})
if (($files_modified.length -gt 0 -and $files_notmached.length -eq 0) -or $env:APPVEYOR_REPO_COMMIT_MESSAGE -match "\[force xml\]") { if (($files_modified.length -gt 0 -and $files_notmached.length -eq 0) -or $env:APPVEYOR_REPO_COMMIT_MESSAGE -match "\[force (xml|nowork)\]") {
Write-Output "XML validation mode`n" if (@($files_modified | Where-Object {$_ -notmatch "\.($files_nowork)$"}).length -eq 0 -or $env:APPVEYOR_REPO_COMMIT_MESSAGE -match "\[force nowork\]") {
if ("$env:platform/$env:configuration" -eq "Win32/Debug") { Write-Output "Changed files on this commit don't require any additional tasks.`n"
if (@($files_modified | Where-Object {$_ -match "/functionList/"}).length -eq 0) { Exit-AppVeyorBuild
$env:Path = "C:\Python310;C:\Python310\Scripts;" + $env:Path
python -m pip install requests rfc3987 pywin32 lxml
python PowerEditor\Test\xmlValidator\validator_xml.py
if ($LastExitCode -eq 0) {
Write-Output "`nAll XML files are valid.`n"
Exit-AppVeyorBuild
}
else {
Write-Output "`nSome XML files are invalid.`n"
$host.SetShouldExit($LastExitCode)
}
}
} }
else { else {
Write-Output "In XML validation mode only Win32/Debug performs the proper tasks.`n" Write-Output "XML validation mode`n"
Exit-AppVeyorBuild if ("$env:platform/$env:configuration" -eq "Win32/Debug") {
if (@($files_modified | Where-Object {$_ -match "/functionList/"}).length -eq 0) {
$env:Path = "C:\Python310;C:\Python310\Scripts;" + $env:Path
python -m pip install requests rfc3987 pywin32 lxml
python PowerEditor\Test\xmlValidator\validator_xml.py
if ($LastExitCode -eq 0) {
Write-Output "`nAll XML files are valid.`n"
Exit-AppVeyorBuild
}
else {
Write-Output "`nSome XML files are invalid.`n"
$host.SetShouldExit($LastExitCode)
}
}
}
else {
Write-Output "In XML validation mode only Win32/Debug performs the proper tasks.`n"
Exit-AppVeyorBuild
}
} }
} }
elseif ($env:APPVEYOR_REPO_COMMIT_MESSAGE -match "\[xml\]" -and $env:APPVEYOR_REPO_COMMIT_MESSAGE -notmatch "\[force compile\]") { elseif ($env:APPVEYOR_REPO_COMMIT_MESSAGE -match "\[xml\]" -and $env:APPVEYOR_REPO_COMMIT_MESSAGE -notmatch "\[force compile\]") {
throw "Changed files on this pull request require full build." throw "Changed files on this commit require full build."
} }
} }