Fix CI problem: Some commits are treated as "XML changes only
Use more precise path inside $folders_onejob. Fix #12810, close #12813pull/12838/head
parent
63d1bbae78
commit
f8593916a9
|
@ -38,7 +38,7 @@ before_build:
|
||||||
# XML validation mode
|
# XML validation mode
|
||||||
$allowMaster = $true
|
$allowMaster = $true
|
||||||
if ($allowMaster -or $env:APPVEYOR_PULL_REQUEST_NUMBER) {
|
if ($allowMaster -or $env:APPVEYOR_PULL_REQUEST_NUMBER) {
|
||||||
$folders_onejob = "PowerEditor/Test/|/filesForTesting/|/functionList/"
|
$folders_onejob = "PowerEditor/(Test|(installer/(filesForTesting|functionList)))/"
|
||||||
$files_nowork = "md|txt|log"
|
$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_nowork)$|$folders_onejob"})
|
$files_notmached = @($files_modified | Where-Object {$_ -notmatch "\.(xml|$files_nowork)$|$folders_onejob"})
|
||||||
|
|
Loading…
Reference in New Issue