6cd9dc17f6
* Update dependencies from https://github.com/dotnet/arcade build 20220222.7 Microsoft.DotNet.CMake.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Arcade.Sdk From Version 6.0.0-beta.22107.2 -> To Version 6.0.0-beta.22122.7 * Remove source-build arcade patches that were backported Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: MichaelSimons <msimons@microsoft.com>
19 lines
719 B
PowerShell
19 lines
719 B
PowerShell
Param(
|
|
[Parameter(Mandatory=$true)][string] $ManifestDirPath # Manifest directory where sbom will be placed
|
|
)
|
|
|
|
Write-Host "Creating dir $ManifestDirPath"
|
|
# create directory for sbom manifest to be placed
|
|
if (!(Test-Path -path $ManifestDirPath))
|
|
{
|
|
New-Item -ItemType Directory -path $ManifestDirPath
|
|
Write-Host "Successfully created directory $ManifestDirPath"
|
|
}
|
|
else{
|
|
Write-PipelineTelemetryError -category 'Build' "Unable to create sbom folder."
|
|
}
|
|
|
|
Write-Host "Updating artifact name"
|
|
$artifact_name = "${env:SYSTEM_STAGENAME}_${env:AGENT_JOBNAME}_SBOM" -replace '["/:<>\\|?@*"() ]', '_'
|
|
Write-Host "Artifact name $artifact_name"
|
|
Write-Host "##vso[task.setvariable variable=ARTIFACT_NAME]$artifact_name"
|