File size: 17,751 Bytes
8c763fb | 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | jobs:
- job: upload_packages
displayName: Upload packages
condition: succeeded()
pool:
type: windows
variables:
- name: ob_sdl_sbom_enabled
value: true
- name: NugetSecurityAnalysisWarningLevel
value: none
- name: DOTNET_NOLOGO
value: 1
- name: ob_outputDirectory
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
- name: ob_sdl_codeSignValidation_enabled
value: false
- name: ob_sdl_binskim_enabled
value: false
- name: ob_sdl_tsa_configFile
value: $(Build.SourcesDirectory)\PowerShell\.config\tsaoptions.json
- name: ob_sdl_credscan_suppressionsFile
value: $(Build.SourcesDirectory)\PowerShell\.config\suppress.json
- name: ob_sdl_codeql_compiled_enabled
value: false
- group: 'Azure Blob variable group'
steps:
- checkout: self
clean: true
env:
ob_restore_phase: true # This ensures checkout is done at the beginning of the restore phase
- template: /.pipelines/templates/SetVersionVariables.yml@self
parameters:
ReleaseTagVar: $(ReleaseTagVar)
CreateJson: no
- template: /.pipelines/templates/release-SetReleaseTagandContainerName.yml@self
- template: /.pipelines/templates/cloneToOfficialPath.yml@self
- pwsh: |
Get-ChildItem Env: | Out-String -width 9999 -Stream | write-Verbose -Verbose
displayName: 'Capture Environment Variables'
- pwsh: |
New-Item -Path '$(Build.ArtifactStagingDirectory)/downloads' -ItemType Directory -Force
displayName: Create downloads directory
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_deb
itemPattern: '**/*.deb'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download deb package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_fxdependent
itemPattern: '**/*.tar.gz'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux fxd package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_mariner_arm64
itemPattern: '**/*.rpm'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux mariner arm64 package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_mariner_x64
itemPattern: '**/*.rpm'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux mariner x64 package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_minSize
itemPattern: '**/*.tar.gz'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux minSize package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_rpm
itemPattern: '**/*.rpm'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux rpm package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_tar
itemPattern: '**/*.tar.gz'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux tar package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_tar_alpine
itemPattern: '**/*.tar.gz'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux alpine tar package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_tar_alpine_fxd
itemPattern: '**/*.tar.gz'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux alpine fxd tar package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_tar_arm
itemPattern: '**/*.tar.gz'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux arm32 tar package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_linux_package_tar_arm64
itemPattern: '**/*.tar.gz'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download linux arm64 tar package
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_nupkg_build_nupkg
itemPattern: '**/*.nupkg'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download nupkgs
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_windows_package_package_win_arm64
itemPattern: |
**/*.msix
**/*.zip
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download windows arm64 packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_windows_package_package_win_fxdependent
itemPattern: '**/*.zip'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download windows fxdependent packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_windows_package_package_win_fxdependentWinDesktop
itemPattern: '**/*.zip'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download windows fxdependentWinDesktop packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_windows_package_package_win_minsize
itemPattern: '**/*.zip'
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download windows minsize packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_windows_package_package_win_x64
itemPattern: |
**/*.msix
**/*.zip
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download windows x64 packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_windows_package_package_win_x86
itemPattern: |
**/*.msix
**/*.zip
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download windows x86 packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: macos-pkgs
itemPattern: |
**/*.tar.gz
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download macos tar packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_mac_package_sign_package_macos_arm64
itemPattern: |
**/*.pkg
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download macos arm packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_mac_package_sign_package_macos_x64
itemPattern: |
**/*.pkg
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download macos x64 packages
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
artifact: drop_msixbundle_CreateMSIXBundle
itemPattern: |
**/*.msixbundle
targetPath: '$(Build.ArtifactStagingDirectory)/downloads'
displayName: Download MSIXBundle
- pwsh: |
Get-ChildItem '$(Build.ArtifactStagingDirectory)/downloads' | Select-Object -ExpandProperty FullName
displayName: 'Capture downloads'
- pwsh: |
Write-Verbose -Verbose "Copying Github Release files in $(Build.ArtifactStagingDirectory)/downloads to use in Release Pipeline"
Write-Verbose -Verbose "Creating output directory for GitHub Release files: $(ob_outputDirectory)/GitHubPackages"
New-Item -Path $(ob_outputDirectory)/GitHubPackages -ItemType Directory -Force
Get-ChildItem -Path "$(Build.ArtifactStagingDirectory)/downloads/*" -Recurse |
Where-Object { $_.Extension -notin '.msix', '.nupkg' -and $_.Name -notmatch '-gc'} |
Copy-Item -Destination $(ob_outputDirectory)/GitHubPackages -Recurse -Verbose
Write-Verbose -Verbose "Creating output directory for NuGet packages: $(ob_outputDirectory)/NuGetPackages"
New-Item -Path $(ob_outputDirectory)/NuGetPackages -ItemType Directory -Force
Get-ChildItem -Path "$(Build.ArtifactStagingDirectory)/downloads/*" -Recurse |
Where-Object { $_.Extension -eq '.nupkg' } |
Copy-Item -Destination $(ob_outputDirectory)/NuGetPackages -Recurse -Verbose
displayName: Copy downloads to Artifacts
- pwsh: |
# Create output directory for packages which have been uploaded to blob storage
New-Item -Path $(Build.ArtifactStagingDirectory)/uploaded -ItemType Directory -Force
displayName: Create output directory for packages
- task: AzurePowerShell@5
displayName: Upload packages to blob
inputs:
azureSubscription: az-blob-cicd-infra
scriptType: inlineScript
azurePowerShellVersion: LatestVersion
pwsh: true
inline: |
$downloadsDirectory = '$(Build.ArtifactStagingDirectory)/downloads'
$uploadedDirectory = '$(Build.ArtifactStagingDirectory)/uploaded'
$storageAccountName = "pscoretestdata"
$containerName = $env:AZUREVERSION
Write-Verbose -Verbose "Uploading packages to blob storage account: $storageAccountName container: $containerName"
$context = New-AzStorageContext -StorageAccountName $storageAccountName -UseConnectedAccount
# Create the blob container if it doesn't exist
$containerExists = Get-AzStorageContainer -Name $containerName -Context $context -ErrorAction SilentlyContinue
if (-not $containerExists) {
$null = New-AzStorageContainer -Name $containerName -Context $context
Write-Host "Blob container $containerName created successfully."
}
$gcPackages = Get-ChildItem -Path $downloadsDirectory -Filter "powershell*gc.*"
Write-Verbose -Verbose "gc files to upload."
$gcPackages | Write-Verbose -Verbose
$gcContainerName = "$containerName-gc"
# Create the blob container if it doesn't exist
$containerExists = Get-AzStorageContainer -Name $gcContainerName -Context $context -ErrorAction SilentlyContinue
if (-not $containerExists) {
$null = New-AzStorageContainer -Name $gcContainerName -Context $context
Write-Host "Blob container $gcContainerName created successfully."
}
$gcPackages | ForEach-Object {
$blobName = "${_.Name}"
Write-Verbose -Verbose "Uploading $($_.FullName) to $gcContainerName/$blobName"
$null = Set-AzStorageBlobContent -File $_.FullName -Container $gcContainerName -Blob $blobName -Context $context
# Move to folder to we wont upload again
Move-Item -Path $_.FullName -Destination $uploadedDirectory -Force -Verbose
}
$nupkgFiles = Get-ChildItem -Path $downloadsDirectory -Filter "*.nupkg" | Where-Object { $_.Name -notlike "powershell*.nupkg" }
# create a SHA512 checksum file for each nupkg files
$checksums = $nupkgFiles |
ForEach-Object {
Write-Verbose -Verbose "Generating checksum file for $($_.FullName)"
$packageName = $_.Name
$hash = (Get-FileHash -Path $_.FullName -Algorithm SHA256).Hash.ToLower()
# the '*' before the packagename signifies it is a binary
"$hash *$packageName"
}
$checksums | Out-File -FilePath "$downloadsDirectory\SHA512SUMS" -Force
$fileContent = Get-Content -Path "$downloadsDirectory\SHA512SUMS" -Raw | Out-String
Write-Verbose -Verbose -Message $fileContent
Write-Verbose -Verbose "nupkg files to upload."
$nupkgFiles += (Get-Item "$downloadsDirectory\SHA512SUMS")
$nupkgFiles | Write-Verbose -Verbose
$nugetContainerName = "$containerName-nuget"
# Create the blob container if it doesn't exist
$containerExists = Get-AzStorageContainer -Name $nugetContainerName -Context $context -ErrorAction SilentlyContinue
if (-not $containerExists) {
$null = New-AzStorageContainer -Name $nugetContainerName -Context $context
Write-Host "Blob container $nugetContainerName created successfully."
}
$nupkgFiles | ForEach-Object {
$blobName = $_.Name
Write-Verbose -Verbose "Uploading $($_.FullName) to $nugetContainerName/$blobName"
$null = Set-AzStorageBlobContent -File $_.FullName -Container $nugetContainerName -Blob $blobName -Context $context
# Move to folder to we wont upload again
Move-Item -Path $_.FullName -Destination $uploadedDirectory -Force -Verbose
}
$globaltoolFiles = Get-ChildItem -Path $downloadsDirectory -Filter "powershell*.nupkg"
# create a SHA512 checksum file for each nupkg files
$checksums = $globaltoolFiles |
ForEach-Object {
Write-Verbose -Verbose "Generating checksum file for $($_.FullName)"
$packageName = $_.Name
$hash = (Get-FileHash -Path $_.FullName -Algorithm SHA256).Hash.ToLower()
# the '*' before the packagename signifies it is a binary
"$hash *$packageName"
}
New-Item -Path "$downloadsDirectory\globaltool" -ItemType Directory -Force
$checksums | Out-File -FilePath "$downloadsDirectory\globaltool\SHA512SUMS" -Force
$fileContent = Get-Content -Path "$downloadsDirectory\globaltool\SHA512SUMS" -Raw | Out-String
Write-Verbose -Verbose -Message $fileContent
Write-Verbose -Verbose "globaltool files to upload."
$globaltoolFiles += Get-Item ("$downloadsDirectory\globaltool\SHA512SUMS")
$globaltoolFiles | Write-Verbose -Verbose
$globaltoolContainerName = "$containerName-nuget"
$globaltoolFiles | ForEach-Object {
$blobName = "globaltool/" + $_.Name
$globaltoolContainerName = "$containerName-nuget"
Write-Verbose -Verbose "Uploading $($_.FullName) to $globaltoolContainerName/$blobName"
$null = Set-AzStorageBlobContent -File $_.FullName -Container $globaltoolContainerName -Blob $blobName -Context $context
# Move to folder to we wont upload again
Move-Item -Path $_.FullName -Destination $uploadedDirectory -Force
}
# To use -Include parameter, we need to use \* to get all files
$privateFiles = Get-ChildItem -Path $downloadsDirectory\* -Include @("*.msix", "*.exe")
Write-Verbose -Verbose "private files to upload."
$privateFiles | Write-Verbose -Verbose
$privateContainerName = "$containerName-private"
# Create the blob container if it doesn't exist
$containerExists = Get-AzStorageContainer -Name $privateContainerName -Context $context -ErrorAction SilentlyContinue
if (-not $containerExists) {
$null = New-AzStorageContainer -Name $privateContainerName -Context $context
Write-Host "Blob container $privateContainerName created successfully."
}
$privateFiles | ForEach-Object {
$blobName = $_.Name
Write-Verbose -Verbose "Uploading $($_.FullName) to $privateContainerName/$blobName"
$null = Set-AzStorageBlobContent -File $_.FullName -Container $privateContainerName -Blob $blobName -Context $context
# Move to folder to we wont upload again
Move-Item -Path $_.FullName -Destination $uploadedDirectory -Force -Verbose
}
# To use -Include parameter, we need to use \* to get all files
$files = Get-ChildItem -Path $downloadsDirectory\* -Include @("*.deb", "*.tar.gz", "*.rpm", "*.zip", "*.pkg")
Write-Verbose -Verbose "files to upload."
$files | Write-Verbose -Verbose
$files | ForEach-Object {
$blobName = $_.Name
Write-Verbose -Verbose "Uploading $($_.FullName) to $containerName/$blobName"
$null = Set-AzStorageBlobContent -File $_.FullName -Container $containerName -Blob $blobName -Context $context
Write-Host "File $blobName uploaded to $containerName container."
Move-Item -Path $_.FullName -Destination $uploadedDirectory -Force -Verbose
}
$msixbundleFiles = Get-ChildItem -Path $downloadsDirectory -Filter "*.msixbundle"
$containerName = '$(OutputVersion.AzureVersion)-private'
$storageAccount = '$(StorageAccount)'
$storageContext = New-AzStorageContext -StorageAccountName $storageAccount -UseConnectedAccount
if ($msixbundleFiles) {
$bundleFile = $msixbundleFiles[0].FullName
$blobName = $msixbundleFiles[0].Name
$existing = Get-AzStorageBlob -Container $containerName -Blob $blobName -Context $storageContext -ErrorAction Ignore
if ($existing) {
Write-Verbose -Verbose "MSIX bundle already exists at '$storageAccount/$containerName/$blobName', removing first."
$existing | Remove-AzStorageBlob -ErrorAction Stop -Verbose
}
Write-Verbose -Verbose "Uploading $bundleFile to $containerName/$blobName"
Set-AzStorageBlobContent -File $bundleFile -Container $containerName -Blob $blobName -Context $storageContext -Force
} else {
throw "MSIXBundle not found in $downloadsDirectory"
}
|