8000 Improve the Windows release build scripts by zooba · Pull Request #30771 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Improve the Windows release build scripts #30771

8000
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 7 commits into from
Jan 22, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Improve defaults
  • Loading branch information
zooba committed Jan 21, 2022
commit 5d627bd26fd49aad50c23ebce30e12bd4c2e33e2
13 changes: 9 additions & 4 deletions .azure-pipelines/windows-release.yml
8000
Original file line number Diff line numberDiff line change
Expand Up @@ -5,10 +5,14 @@ parameters:
displayName: "Git remote"
type: string
default: python
values:
- python
- ambv
- pablogsal
- name: SourceTag
displayName: "Git tag"
type: string
default: ''
default: main
- name: DoPublish
displayName: "Publish release"
type: boolean
Expand Down Expand Up @@ -47,8 +51,8 @@ parameters:
default: true
- name: BuildToPublish
displayName: "Build number to publish"
type: string
default: ''
type: number
default: '0'

variables:
__RealSigningCertificate: 'Python Software Foundation'
Expand All @@ -63,7 +67,8 @@ variables:
DoEmbed: ${{ parameters.DoEmbed }}
DoMSI: ${{ parameters.DoMSI }}
DoPublish: ${{ parameters.DoPublish }}
BuildToPublish: ${{ parameters.BuildToPublish }}
${{ if ne(parameters.BuildToPublish, '0') }}:
BuildToPublish: ${{ parameters.BuildToPublish }}
# QUEUE TIME VARIABLES
# PyDotOrgUsername: ''
# PyDotOrgServer: ''
Expand Down
0