Compare commits

...

2 Commits

Author SHA1 Message Date
Alena Sviridenko
f4b22cc454 Ignore tkinter build fail for 3.10.0-alpha.6 #84
Ignore tkinter build fail for 3.10.0-alpha.6
2021-03-10 11:21:11 +03:00
Sergey Dolin
281024aec4 Skip tkinter failed build for alpha.6 2021-03-09 12:48:12 +05:00

View File

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