8000 Add SBOM for release pipeline by adityapatwardhan · Pull Request #20519 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content

Add SBOM for release pipeline #20519

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tools/releaseBuild/azureDevOps/releasePipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ resources:
name: Internal-PowerShellTeam-Tools
ref: main-mirror

- repository: ComplianceRepo
type: github
endpoint: ComplianceGHRepo
name: PowerShell/compliance
ref: master

variables:
- name: runCodesignValidationInjection
value : false
Expand Down Expand Up @@ -341,7 +347,6 @@ stages:
- stage: PublishPackages
displayName: Publish packages
dependsOn: GitHubManualTasks
timeoutInMinutes: 120
jobs:
- job: PublishNuget

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@ steps:
- template: release-SetReleaseTagAndContainerName.yml

- pwsh: |
Import-module '$(BUILD.SOURCESDIRECTORY)/build.psm1'
Import-module '$(BUILD.SOURCESDIRECTORY)/PowerShell/build.psm1'
Install-AzCopy
displayName: Install AzCopy
retryCountOnTaskFailure: 2

- pwsh: |
Import-module '$(BUILD.SOURCESDIRECTORY)/build.psm1'
Import-module '$(BUILD.SOURCESDIRECTORY)/PowerShell/build.psm1'
$azcopy = Fin 8000 d-AzCopy
Write-Verbose -Verbose "Found AzCopy: $azcopy"

& $azcopy login --service-principal --application-id $(PowerShellReleaseSPN)
& $azcopy cp https://$(StorageAccount).blob.core.windows.net/$(AzureVersion) $(System.ArtifactsDirectory) --recursive

$packagesPath = Get-ChildItem -Path $(System.ArtifactsDirectory)\*.deb -Recurse -File | Select-Object -First 1 -ExpandProperty DirectoryName
Expand All @@ -27,7 +26,7 @@ steps:
displayName: Download Azure Artifacts
retryCountOnTaskFailure: 2
env:
AZCOPY_SPA_CLIENT_SECRET: $(PowerShellReleaseSPNSecret)
AZCOPY_AUTO_LOGIN_TYPE: MSI

- pwsh: |
Get-ChildItem $(System.ArtifactsDirectory)\* -recurse | Select-Object -ExpandProperty FullName
Expand Down Expand Up @@ -55,6 +54,24 @@ steps:
Write-Verbose -Verbose -Message $fileContent
displayName: Add sha256 hashes

- checkout: ComplianceRepo

- pwsh: |
$releaseVersion = '$(ReleaseTag)' -replace '^v',''
$vstsCommandString = "vso[task.setvariable variable=ReleaseVersion]$releaseVersion"
Write-Host "sending " + $vstsCommandString
Write-Host "##$vstsCommandString"
displayName: 'Set release version'

- template: Sbom.yml@ComplianceRepo
parameters:
BuildDropPath: '$(PackagesRoot)'
Build_Repository_Uri: 'https://github.com/powershell/powershell.git'
displayName: PowerShell Hashes SBOM
packageName: PowerShell Artifact Hashes
packageVersion: $(ReleaseVersion)
sourceScanPath: '$(PackagesRoot)'

- pwsh: |
Import-module '$(Pipeline.Workspace)/tools/Scripts/GitHubRelease.psm1'
$releaseVersion = '$(ReleaseTag)' -replace '^v',''
Expand All @@ -69,7 +86,7 @@ steps:
$semanticVersion.Major.ToString() + "." + $semanticVersion.Minor.ToString() + ".md"
}

$filePath = "$env:BUILD_SOURCESDIRECTORY/CHANGELOG/$fileName"
$filePath = "$env:BUILD_SOURCESDIRECTORY/PowerShell/CHANGELOG/$fileName"
Write-Verbose -Verbose "Selected Log file: $filePath"

if (-not (Test-Path $filePath)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ steps:
$azcopy = Find-AzCopy
Write-Verbose -Verbose "Found AzCopy: $azcopy"

& $azcopy login --service-principal --application-id $(PowerShellReleaseSPN)

& $azcopy cp https://$(StorageAccount).blob.core.windows.net/$(AzureVersion)/* $(System.ArtifactsDirectory) --recursive

displayName: Download Azure Artifacts
env:
AZCOPY_SPA_CLIENT_SECRET: $(PowerShellReleaseSPNSecret)
AZCOPY_AUTO_LOGIN_TYPE: MSI

- pwsh: |
Get-ChildItem $(System.ArtifactsDirectory)\* -recurse | Select-Object -ExpandProperty Name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,13 @@ jobs:
$azcopy = Find-AzCopy
Write-Verbose -Verbose "Found AzCopy: $azcopy"

& $azcopy login --service-principal --application-id $(PowerShellReleaseSPN)

Write-Host "running: $azcopy cp https://$(StorageAccount).blob.core.windows.net/$(AzureVersion)/PowerShell-$(Version)-win-${{ parameters.architecture }}.zip $(System.ArtifactsDirectory)"

& $azcopy cp https://$(StorageAccount).blob.core.windows.net/$(AzureVersion)/PowerShell-$(Version)-win-${{ parameters.architecture }}.zip $(System.ArtifactsDirectory)
displayName: 'Download Azure Artifacts'
retryCountOnTaskFailure: 2
env:
AZCOPY_SPA_CLIENT_SECRET: $(PowerShellReleaseSPNSecret)
AZCOPY_AUTO_LOGIN_TYPE: MSI

- pwsh: 'Get-ChildItem $(System.ArtifactsDirectory)\* -recurse | Select-Object -ExpandProperty Name'
displayName: 'Capture Artifact Listing'
Expand Down
0