-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Integrate building NuGet package in the coordinated build #8947
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
adityapatwardhan
merged 12 commits into
PowerShell:master
from
adityapatwardhan:PortNugetBuild
Feb 25, 2019
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b57c6c7
Parameterize update table step
adityapatwardhan 011883f
Integrated nuget packaging and signing in coordinated build
adityapatwardhan 78c5c00
Remove updateTable.yml and update machine pool
adityapatwardhan d2828ad
Fix quotes around Azure DevOps variables and added step to verify nug…
adityapatwardhan f6ba85e
Set Version variable
adityapatwardhan 0e407f4
Install nuget.exe
adityapatwardhan efef01d
Fix script and update nuget version
adityapatwardhan b12e383
Fix script
adityapatwardhan a86c168
Fix signing file path
adityapatwardhan 923f979
Fix typo
adityapatwardhan af50223
Fix typo
adityapatwardhan c3153a1
Fix typo in Build.SourcesDirectory
adityapatwardhan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,169 @@ | ||
| parameters: | ||
| parentJobs: [] | ||
|
|
||
| jobs: | ||
| - job: build_nuget | ||
| dependsOn: | ||
| ${{ parameters.parentJobs }} | ||
| displayName: Build NuGet packages | ||
| condition: succeeded() | ||
| pool: PowerShell | ||
| variables: | ||
| linuxArm32Path: '$(System.ArtifactsDirectory)/linuxArm32' | ||
| winArm32Path: '$(System.ArtifactsDirectory)/winArm32' | ||
| linuxX64Path: '$(System.ArtifactsDirectory)/linuxX64' | ||
| macOSPath: '$(System.ArtifactsDirectory)/macOS' | ||
| winArm64Path: '$(System.ArtifactsDirectory)/winArm64' | ||
| winX64Path: '$(System.ArtifactsDirectory)/winX64' | ||
| winX86Path: '$(System.ArtifactsDirectory)/winX86' | ||
| GenAPIToolPath: '$(System.ArtifactsDirectory)/GenAPI' | ||
| PackagePath: '$(System.ArtifactsDirectory)/UnifiedPackagePath' | ||
|
|
||
| steps: | ||
|
|
||
| - powershell: | | ||
| $content = Get-Content "$(Build.SourcesDirectory)/global.json" -Raw | ConvertFrom-Json | ||
| $vstsCommandString = "vso[task.setvariable variable=SDKVersion]$($content.sdk.version)" | ||
| Write-Host "sending " + $vstsCommandString | ||
| Write-Host "##$vstsCommandString" | ||
| displayName: 'Find SDK version from global.json' | ||
|
|
||
| - task: DotNetCoreInstaller@0 | ||
| displayName: 'Use .NET Core SDK from global.json' | ||
| inputs: | ||
| version: '$(SDKVersion)' | ||
|
|
||
| - task: DownloadBuildArtifacts@0 | ||
| displayName: 'Download PowerShell build artifacts' | ||
| inputs: | ||
| buildType: specific | ||
| project: '9d7f7aa4-6f41-480d-a367-82eb278461a1' | ||
| pipeline: 696 | ||
| downloadType: specific | ||
| itemPattern: | | ||
| finalResults/PowerShell-*-win-*.zip | ||
| finalResults/powershell-*.tar.gz | ||
| results/powershell-*-osx-x64.tar.gz | ||
| downloadPath: '$(System.ArtifactsDirectory)' | ||
|
|
||
| - powershell: 'Get-ChildItem $(System.ArtifactsDirectory) -recurse' | ||
| displayName: 'Capture downloaded artifacts' | ||
|
|
||
| - powershell: | | ||
| $packagePath = (Join-Path $(System.ArtifactsDirectory) packages) | ||
| New-Item $packagePath -ItemType Directory -Force > $null | ||
| $packages = Get-ChildItem $(System.ArtifactsDirectory) -Include *.zip, *.tar.gz -Recurse | ||
| $packages | ForEach-Object { Copy-Item $_.FullName -Destination $packagePath -Verbose } | ||
| Get-ChildItem $packagePath -Recurse | ||
| displayName: 'Conflate packages to same folder' | ||
|
|
||
| - task: ExtractFiles@1 | ||
| displayName: 'Extract files linuxArm32' | ||
| inputs: | ||
| archiveFilePatterns: '$(System.ArtifactsDirectory)/packages/powershell-*-linux-arm32.tar.gz' | ||
| destinationFolder: '$(linuxArm32Path)' | ||
|
|
||
| - task: ExtractFiles@1 | ||
| displayName: 'Extract files linuxX64' | ||
| inputs: | ||
| archiveFilePatterns: '$(System.ArtifactsDirectory)/packages/powershell-*-linux-x64.tar.gz' | ||
| destinationFolder: '$(linuxX64Path)' | ||
|
|
||
| - task: ExtractFiles@1 | ||
| displayName: 'Extract files macOS files' | ||
| inputs: | ||
| archiveFilePatterns: '$(System.ArtifactsDirectory)/packages/powershell-*-osx*.tar.gz' | ||
| destinationFolder: '$(macOSPath)' | ||
|
|
||
| - task: ExtractFiles@1 | ||
| displayName: 'Extract files win-arm32' | ||
| inputs: | ||
| archiveFilePatterns: '$(System.ArtifactsDirectory)/packages/PowerShell-*-win-arm32.zip' | ||
| destinationFolder: '$(winArm32Path)' | ||
|
|
||
| - task: ExtractFiles@1 | ||
| displayName: 'Extract files win-arm64' | ||
| inputs: | ||
| archiveFilePatterns: '$(System.ArtifactsDirectory)/packages/PowerShell-*-win-arm64.zip ' | ||
| destinationFolder: '$(winArm64Path)' | ||
|
|
||
| - task: ExtractFiles@1 | ||
| displayName: 'Extract files win-X64' | ||
| inputs: | ||
| archiveFilePatterns: '$(System.ArtifactsDirectory)/packages/PowerShell-*-win-x64.zip ' | ||
| destinationFolder: '$(winX64Path)' | ||
|
|
||
| - task: ExtractFiles@1 | ||
| displayName: 'Extract files win-X86' | ||
| inputs: | ||
| archiveFilePatterns: '$(System.ArtifactsDirectory)/packages/PowerShell-*-win-x86.zip ' | ||
| destinationFolder: '$(winX86Path)' | ||
|
|
||
| - task: PkgESInstallNuGetToolsPackage@10 | ||
| displayName: 'Install package Microsoft.DotNet.BuildTools.GenAPI' | ||
| inputs: | ||
| packageName: Microsoft.DotNet.BuildTools.GenAPI | ||
| packageVersion: '1.0.0-beta-00081' | ||
| packageSources: 'https://nuget.org/api/v2' | ||
| installRoot: '$(GenAPIToolPath)' | ||
|
|
||
| - template: SetVersionVariables.yml | ||
| parameters: | ||
| ReleaseTagVar: $(ReleaseTagVar) | ||
|
|
||
| - task: NuGetToolInstaller@0 | ||
| displayName: 'Install NuGet 4.9.3' | ||
| inputs: | ||
| versionSpec: 4.9.3 | ||
|
|
||
|
|
||
| - powershell: | | ||
| Import-Module $env:BUILD_SOURCESDIRECTORY\build.psm1 | ||
| Import-Module $env:BUILD_SOURCESDIRECTORY\tools\packaging | ||
| New-UnifiedNugetPackage -PackagePath "$(PackagePath)" -PackageVersion "$(Version)" -winx86BinPath "$(winX86Path)" -winx64BinPath "$(winX64Path)" -winArm32BinPath "$(winArm32Path)" -winArm64BinPath "$(winArm64Path)" -linuxArm32BinPath "$(linuxArm32Path)" -linuxBinPath "$(linuxX64Path)" -osxBinPath "$(macOSPath)" -GenAPIToolPath "$(GenAPIToolPath)" | ||
| displayName: 'Create Nuget Package Folders' | ||
|
|
||
| - powershell: | | ||
| Get-ChildItem "$(PackagePath)" -Recurse | ||
| displayName: Capture generated packages | ||
|
|
||
| - powershell: | | ||
| $packages = Get-ChildItem "$(PackagePath)\*.nupkg" | Select-Object -ExpandProperty FullName | ||
|
|
||
| if($packages.Count -lt 1) | ||
| { | ||
| throw "No packages created" | ||
| } | ||
|
|
||
| $(Build.SourcesDirectory)\tools\releaseBuild\generatePackgeSigning.ps1 -Path $(PackagePath)\NugetSigning.xml -NuPkgFiles $packages | ||
| displayName: Create signing file | ||
|
|
||
| - task: PkgESCodeSign@10 | ||
| displayName: 'CodeSign Nuget Packages' | ||
| inputs: | ||
| signConfigXml: '$(PackagePath)\NugetSigning.xml' | ||
| inPathRoot: '$(PackagePath)' | ||
| outPathRoot: '$(System.ArtifactsDirectory)\signed' | ||
|
|
||
| - powershell: | | ||
| Import-Module $(Build.SourcesDirectory)\build.psm1 -Force | ||
| Get-ChildItem -Recurse "$(System.ArtifactsDirectory)\signed\*.nupkg" -Verbose | ForEach-Object { Start-NativeExecution -sb { nuget.exe verify -All $_.FullName } } | ||
| displayName: Verify all packages are signed | ||
|
|
||
| - task: securedevelopmentteam.vss-secure-development-tools.build-task-antimalware.AntiMalware@3 | ||
| displayName: 'Run MpCmdRun.exe' | ||
| inputs: | ||
| FileDirPath: '$(PackagePath)' | ||
| TreatStaleSignatureAs: Warning | ||
|
|
||
| - task: securedevelopmentteam.vss-secure-development-tools.build-task-publishsecurityanalysislogs.PublishSecurityAnalysisLogs@2 | ||
| displayName: 'Publish Security Analysis Logs' | ||
|
|
||
| - template: upload-final-results.yml | ||
| parameters: | ||
| artifactPath: '$(System.ArtifactsDirectory)\signed' | ||
|
|
||
| - task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0 | ||
| displayName: 'Component Detection' | ||
| inputs: | ||
| sourceScanPath: '$(PackagePath)' | ||
49 changes: 0 additions & 49 deletions
49
tools/releaseBuild/azureDevOps/templates/updateBuildTable.yml
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.