-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1475 from dotnet/darc-release/6.x-d8c50cd4-684b-4…
…86b-bae0-b15426dafaec [release/6.x] Update dependencies from dotnet/arcade
- Loading branch information
Showing
25 changed files
with
439 additions
and
1,200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
source="${BASH_SOURCE[0]}" | ||
|
||
manifest_dir=$1 | ||
|
||
if [ ! -d "$manifest_dir" ] ; then | ||
mkdir -p "$manifest_dir" | ||
echo "Sbom directory created." $manifest_dir | ||
else | ||
Write-PipelineTelemetryError -category 'Build' "Unable to create sbom folder." | ||
fi | ||
|
||
artifact_name=$SYSTEM_STAGENAME"_"$AGENT_JOBNAME"_SBOM" | ||
echo "Artifact name before : "$artifact_name | ||
# replace all special characters with _, some builds use special characters like : in Agent.Jobname, that is not a permissible name while uploading artifacts. | ||
safe_artifact_name="${artifact_name//["/:<>\\|?@*$" ]/_}" | ||
echo "Artifact name after : "$safe_artifact_name | ||
export ARTIFACT_NAME=$safe_artifact_name | ||
echo "##vso[task.setvariable variable=ARTIFACT_NAME]$safe_artifact_name" | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.Guardian.Cli" version="0.53.3"/> | ||
<package id="Microsoft.Guardian.Cli" version="0.110.1"/> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.