Add retries for Invoke-ScriptAnalyzer in pslint.
Hopefully this will work around the intermittent CI failures due to NullReferenceException, which then succeed on a retry.
This commit is contained in:
parent
47e72063a3
commit
4bd60c313b
1 changed files with 15 additions and 1 deletions
|
@ -4,11 +4,25 @@
|
|||
|
||||
Set-StrictMode -Version 2.0
|
||||
$ErrorActionPreference = "Stop"
|
||||
$WarningPreference = "Stop"
|
||||
|
||||
$Results = @()
|
||||
|
||||
ForEach ($Path in $Args) {
|
||||
$Results += Invoke-ScriptAnalyzer -Path $Path -Setting $PSScriptRoot/settings.psd1
|
||||
$Retries = 3
|
||||
|
||||
Do {
|
||||
Try {
|
||||
$Results += Invoke-ScriptAnalyzer -Path $Path -Setting $PSScriptRoot/settings.psd1 3> $null
|
||||
$Retries = 0
|
||||
}
|
||||
Catch {
|
||||
If (--$Retries -le 0) {
|
||||
Throw
|
||||
}
|
||||
}
|
||||
}
|
||||
Until ($Retries -le 0)
|
||||
}
|
||||
|
||||
ConvertTo-Json -InputObject $Results
|
||||
|
|
Loading…
Reference in a new issue