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 66 67 68 69 70 71 72 73 74 75 76
|
#Requires -Version 5
<#
.SYNOPSIS
Update changelog for a given package.
.DESCRIPTION
This script is a wrapper of python script `packaging_tools.sdk_changelog`.
It calls `python -m packaging_tools.sdk_changelog` to update changelog.
.PARAMETER PackagePath
Path to the package.
.PARAMETER SdkRepoPath
Absolute path string where SDK code is. Optional.
#>
param(
[Parameter(Mandatory = $true, HelpMessage = "Path to the package")]
[string]
$PackagePath,
[Parameter(Mandatory = $false, HelpMessage = "Absolute path string where SDK code is")]
[string]
$SdkRepoPath
)
$scriptPath = $MyInvocation.MyCommand.Path
$scriptParent = Split-Path $scriptPath -Parent
$repoRoot = (Get-Location).Path
# Change to SDK repo path if provided
if ($SdkRepoPath) {
if (-not (Test-Path $SdkRepoPath)) {
Write-Error "SdkRepoPath: $SdkRepoPath does not exist"
exit 1
}
Write-Host "Changing directory to: $SdkRepoPath"
Set-Location -Path $SdkRepoPath
}
if (-not (Test-Path $PackagePath)) {
Write-Error "PackagePath: $PackagePath does not exist"
exit 1
}
$absolutePackagePath = Resolve-Path -Path $PackagePath
Write-Host "absolutePackagePath: $absolutePackagePath"
# Determine the correct Python path based on OS
if ($IsWindows -or ($PSVersionTable.PSEdition -eq 'Desktop')) {
$pythonPath = ".venv\Scripts\python.exe"
}
else {
$pythonPath = ".venv/bin/python"
}
# Validate virtual environment Python, fall back to global python if not found
if (-not (Test-Path $pythonPath)) {
Write-Host "Virtual environment Python not found at '$pythonPath'. Falling back to 'python' on PATH."
$pythonPath = "python"
}
$command = "$pythonPath -m packaging_tools.sdk_changelog --package-path $absolutePackagePath"
Write-Host "running command: $command"
# Capture output first
$output = Invoke-Expression $command 2>&1
# Display the output
$output | ForEach-Object { Write-Host $_ }
# Convert to string and check for [ERROR]
$outputString = $output | Out-String
if ($outputString -match "\[ERROR\]") {
exit 1
}
else {
exit 0
}
|