You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.6 KiB
PowerShell
98 lines
2.6 KiB
PowerShell
function Format-Versions {
|
|
param (
|
|
[Parameter(Mandatory)] [string[]] $Versions
|
|
)
|
|
|
|
[Version[]] $formattedVersions = @()
|
|
|
|
foreach($version in $Versions) {
|
|
# Cut a string from index of first digit because initially it has invalid format (v14.4.0 or go1.14.4)
|
|
if (-not ($version -match '(?<number>\d)')) {
|
|
Write-Host "Invalid version format - $version"
|
|
exit 1
|
|
}
|
|
$firstDigitIndex = $version.indexof($Matches.number)
|
|
$substredVersion = $version.substring($firstDigitIndex)
|
|
|
|
# Filter versions to exclude unstable (for example: "go1.15beta1")
|
|
# Valid version format: x.x or x.x.x
|
|
if ($substredVersion -notmatch '^\d+\.+\d+\.*\d*$') {
|
|
continue
|
|
}
|
|
|
|
if ($substredVersion.Split(".").Length -lt 3) {
|
|
$formattedVersions += "$substredVersion.0"
|
|
} else {
|
|
$formattedVersions += $substredVersion
|
|
}
|
|
}
|
|
|
|
return $formattedVersions
|
|
}
|
|
|
|
function Select-VersionsByFilter {
|
|
param (
|
|
[Parameter(Mandatory)] [version[]] $Versions,
|
|
[string[]] $IncludeFilters,
|
|
[string[]] $ExcludeFilters
|
|
)
|
|
|
|
if ($IncludeFilters.Length -eq 0) {
|
|
$IncludeFilters = @('*')
|
|
}
|
|
|
|
return $Versions | Where-Object {
|
|
$ver = $_
|
|
$matchedIncludeFilters = $IncludeFilters | Where-Object { $ver -like $_ }
|
|
$matchedExcludeFilters = $ExcludeFilters | Where-Object { $ver -like $_ }
|
|
$matchedIncludeFilters -and (-not $matchedExcludeFilters)
|
|
}
|
|
}
|
|
|
|
function Skip-ExistingVersions {
|
|
param (
|
|
[Parameter(Mandatory)] [string[]] $VersionsFromManifest,
|
|
[Parameter(Mandatory)] [string[]] $VersionsFromDist
|
|
)
|
|
|
|
return $VersionsFromDist | Where-Object { $VersionsFromManifest -notcontains $_ }
|
|
}
|
|
|
|
<#
|
|
.SYNOPSIS
|
|
Sending messages using Incoming Webhooks
|
|
https://api.slack.com/messaging/webhooks
|
|
#>
|
|
|
|
function Send-SlackPostMessageIncomingWebHook
|
|
{
|
|
param(
|
|
[Parameter(Mandatory)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[System.Uri]$Uri,
|
|
|
|
[Parameter(Mandatory)]
|
|
[ValidateNotNullOrEmpty()]
|
|
[System.Object]$Body
|
|
)
|
|
|
|
try
|
|
{
|
|
$response = Invoke-RestMethod -Uri $uri -Method POST -Body $body -ErrorAction Stop
|
|
if ($response -eq 'ok')
|
|
{
|
|
return $response
|
|
}
|
|
else
|
|
{
|
|
Write-Host "##vso[task.LogIssue type=error;] Something went wrong. Response is '$response'"
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
Write-Host "##vso[task.LogIssue type=error;] Slack send post message failed: '$_'"
|
|
}
|
|
|
|
Write-Host "##vso[task.complete result=Failed;]"
|
|
exit 1
|
|
} |