1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
param(
[Parameter(Mandatory = $true)]
[string]$PackageInfoFilePath,
[Parameter(Mandatory = $true)]
[string]$AzsdkExePath
)
<#
.SYNOPSIS
Marks release plan completion by identifying pull requests that changed files in a given path.
.DESCRIPTION
This script helps to mark release plan completion by finding the active release plans for a package name
.PARAMETER PackageInfoFilePath
The path to the package information file (required) or path to the directory containing package information files.
.PARAMETER AzsdkExePath
The path to the azsdk executable used to mark the release completion.
#>
Set-StrictMode -Version 3
. (Join-Path $PSScriptRoot common.ps1)
#Validate azsdk executable path
if (-Not (Test-Path $AzsdkExePath))
{
Write-Error "The azsdk executable was not found at path '$AzsdkExePath'. Please ensure the executable exists and the path is correct."
exit 1
}
#Get package properties
if (-Not (Test-Path $PackageInfoFilePath))
{
Write-Host "Package information file path $($PackageInfoFilePath) is invalid."
exit 0
}
function Process-Package([string]$packageInfoPath)
{
# Get package info from json file created before updating version to daily dev
$pkgInfo = Get-Content $packageInfoPath | ConvertFrom-Json
$PackageName = $pkgInfo.Name
if (!$PackageName)
{
Write-Host "Package name is not available in the package information file. Skipping the release plan status update for the package."
return
}
Write-Host "Marking release completion for package, name: $PackageName"
$releaseInfo = & $AzsdkExePath release-plan update-release-status --package-name $PackageName --language $LanguageDisplayName --status "Released"
if ($LASTEXITCODE -ne 0)
{
## Not all releases have a release plan. So we should not fail the script even if a release plan is missing.
Write-Host "Failed to mark release completion for package '$PackageName' using azsdk. Exit code: $LASTEXITCODE"
}
Write-Host "Details: $releaseInfo"
}
Write-Host "Finding all package info files in the path: $PackageInfoFilePath"
# Get all package info file under the directory given in input param and process
Get-ChildItem -Path $PackageInfoFilePath -Filter "*.json" | ForEach-Object {
Write-Host "Processing package info file: $_"
Process-Package $_.FullName
}
|