Skip tkinter failed build for alpha.6

This commit is contained in:
Sergey Dolin 2021-03-05 23:00:49 +05:00
parent 17b1cd02ca
commit 281024aec4

View File

@ -21,9 +21,14 @@ function Analyze-MissingModules([string] $buildOutputLocation) {
$regexMatch = [regex]::match($SplitBuiltOutput, $Pattern)
if ($regexMatch.Success)
{
$module = $regexMatch.Groups[1].Value.Trim()
Write-Host "Failed missing modules:"
Write-Host $regexMatch.Groups[1].Value
return 1
Write-Host $module
if ( ($module -eq "_tkinter") -and ($Version -eq "3.10.0-alpha.6") ) {
Write-Host "$module $Version ignored"
} else {
return 1
}
}
return 0
@ -82,4 +87,4 @@ Describe "Tests" {
"./dist/simple-test" | Should -ReturnZeroExitCode
}
}
}
}