* Removal of the devops release PAT * Don't pass in the access token, just use the AzureCLI task and do everything in the scripts * Updates for feedback --------- Co-authored-by: James Suplizio <jasupliz@microsoft.com>
50 lines
1.5 KiB
PowerShell
50 lines
1.5 KiB
PowerShell
[CmdletBinding()]
|
|
Param (
|
|
[Parameter(Mandatory=$True)]
|
|
[array]$ArtifactList,
|
|
[Parameter(Mandatory=$True)]
|
|
[string]$ArtifactPath,
|
|
[Parameter(Mandatory=$True)]
|
|
[string]$RepoRoot,
|
|
[Parameter(Mandatory=$True)]
|
|
[string]$APIKey,
|
|
[string]$ConfigFileDir,
|
|
[string]$BuildDefinition,
|
|
[string]$PipelineUrl,
|
|
[string]$APIViewUri = "https://apiview.dev/AutoReview/GetReviewStatus",
|
|
[bool] $IsReleaseBuild = $false
|
|
)
|
|
|
|
Set-StrictMode -Version 3
|
|
. (Join-Path $PSScriptRoot common.ps1)
|
|
|
|
function ProcessPackage($PackageName, $ConfigFileDir)
|
|
{
|
|
Write-Host "Artifact path: $($ArtifactPath)"
|
|
Write-Host "Package Name: $($PackageName)"
|
|
Write-Host "Config File directory: $($ConfigFileDir)"
|
|
|
|
&$EngCommonScriptsDir/Validate-Package.ps1 `
|
|
-PackageName $PackageName `
|
|
-ArtifactPath $ArtifactPath `
|
|
-RepoRoot $RepoRoot `
|
|
-APIViewUri $APIViewUri `
|
|
-APIKey $APIKey `
|
|
-BuildDefinition $BuildDefinition `
|
|
-PipelineUrl $PipelineUrl `
|
|
-ConfigFileDir $ConfigFileDir
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Error "Failed to validate package $PackageName"
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
# Check if package config file is present. This file has package version, SDK type etc info.
|
|
if (-not $ConfigFileDir) {
|
|
$ConfigFileDir = Join-Path -Path $ArtifactPath "PackageInfo"
|
|
}
|
|
foreach ($artifact in $ArtifactList)
|
|
{
|
|
Write-Host "Processing $($artifact.name)"
|
|
ProcessPackage -PackageName $artifact.name -ConfigFileDir $ConfigFileDir
|
|
} |