Skip to content
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
6 changes: 6 additions & 0 deletions windows-release/merge-and-upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,12 @@ def install_sortkey(install):


def find_missing_from_index(url, installs):
if not UPLOAD_HOST:
print("Skipping check for upload race because UPLOAD_HOST is missing")
return []
if NO_UPLOAD:
print("Skipping check for upload race because NO_UPLOAD is set")
return []
with urlopen(url) as r:
x = {install_sortkey(i) for i in json.load(r)["versions"]}
y = {install_sortkey(i) for i in installs} - x
Expand Down
6 changes: 2 additions & 4 deletions windows-release/msi-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,8 @@ steps:
Include: ''
ExportCommand: SignCommand
SigningCertificate: ${{ parameters.SigningCertificate }}
# WiX is struggling with WIF authentication and sign.exe right now,
# so we still rely on the client secret for legacy builds.
# We disable the service connection here to skip the login steps.
AzureServiceConnectionName: ''
# WiX never moved on from signtool.exe, so we'll use that here
InstallLegacyTool: true

- powershell: |
$cmd = $env:SignCommand -replace '"', '\"'
Expand Down
Loading