| trigger: none |
|
|
| parameters: |
| - name: 'debug' |
| displayName: 'Enable debug output' |
| type: boolean |
| default: false |
| - name: InternalSDKBlobURL |
| displayName: URL to the blob having internal .NET SDK |
| type: string |
| default: ' ' |
| - name: ReleaseTagVar |
| displayName: Release Tag |
| type: string |
| default: 'fromBranch' |
| - name: SKIP_SIGNING |
| displayName: Skip Signing |
| type: string |
| default: 'NO' |
| - name: SkipPublish |
| displayName: Skip Publishing to Nuget |
| type: boolean |
| default: false |
| - name: SkipPSInfraInstallers |
| displayName: Skip Copying Archives and Installers to PSInfrastructure Public Location |
| type: boolean |
| default: false |
| - name: skipMSIXPublish |
| displayName: Skip MSIX Publish |
| type: boolean |
| default: false |
|
|
| name: release-$(BUILD.SOURCEBRANCHNAME)-prod-$(Build.BuildId) |
|
|
| variables: |
| - template: templates/variables/PowerShell-Release-Variables.yml |
| parameters: |
| debug: ${{ parameters.debug }} |
| ReleaseTagVar: ${{ parameters.ReleaseTagVar }} |
|
|
| resources: |
| repositories: |
| - repository: onebranchTemplates |
| type: git |
| name: OneBranch.Pipelines/GovernedTemplates |
| ref: refs/heads/main |
| - repository: PSInternalTools |
| type: git |
| name: PowerShellCore/Internal-PowerShellTeam-Tools |
| ref: refs/heads/master |
|
|
| pipelines: |
| - pipeline: CoOrdinatedBuildPipeline |
| source: 'PowerShell-Coordinated Binaries-Official' |
|
|
| - pipeline: PSPackagesOfficial |
| source: 'PowerShell-Packages-Official' |
| trigger: |
| branches: |
| include: |
| - master |
| - releases/* |
|
|
| extends: |
| template: v2/OneBranch.Official.CrossPlat.yml@onebranchTemplates |
| parameters: |
| release: |
| category: NonAzure |
| featureFlags: |
| WindowsHostVersion: |
| Version: 2022 |
| Network: KS3 |
| incrementalSDLBinaryAnalysis: true |
| cloudvault: |
| enabled: false |
| globalSdl: |
| disableLegacyManifest: true |
| |
| armory: |
| enabled: false |
| tsa: |
| enabled: true |
| credscan: |
| enabled: true |
| scanFolder: $(Build.SourcesDirectory) |
| suppressionsFile: $(Build.SourcesDirectory)\.config\suppress.json |
| binskim: |
| break: false |
| exactToolVersion: 4.4.2 |
| policheck: |
| break: true |
| |
| |
| tsaOptionsFile: .config\tsaoptions.json |
|
|
| stages: |
| - template: templates/stages/PowerShell-Release-Stages.yml |
| parameters: |
| releaseEnvironment: Production |
| SkipPublish: ${{ parameters.SkipPublish }} |
| SkipPSInfraInstallers: ${{ parameters.SkipPSInfraInstallers }} |
| skipMSIXPublish: ${{ parameters.skipMSIXPublish }} |
|
|