-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Update the combined package build to release the daily builds #10449
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
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
948c264
Add support for releasing unsigned daily builds
TravisEz13 7bdb0c2
try smaller date format
TravisEz13 308a7c9
fix versioning of msix
TravisEz13 9eecb25
add variable to skip signing
TravisEz13 3835d7a
Revert "add variable to skip signing"
TravisEz13 640fc3d
add variable to skip signing
TravisEz13 9efe2c9
fix skip signing
TravisEz13 4a4004e
fix json filename
TravisEz13 d4e1be1
fix check to run if is daily build
TravisEz13 96e0e21
remove extra paren
TravisEz13 381ad6b
upload unsigned mac binaries for unsigned builds
TravisEz13 9536c9f
upload unsigned windows packages for windows unsigned builds
TravisEz13 8886bf4
fix macOS unsigned upload
TravisEz13 856f6d8
Update tools/releaseBuild/setReleaseTag.ps1
TravisEz13 e2a1b04
Update tools/packaging/packaging.psm1
TravisEz13 4018731
Update tools/releaseBuild/azureDevOps/templates/windows-package-signi…
TravisEz13 ef703c1
update install-powershell.ps1
TravisEz13 b5e5e47
Address PR comment
TravisEz13 4dba7c6
update tests
TravisEz13 4ff400b
fix windows issue
TravisEz13 e2b41e5
try to fix windows failure
TravisEz13 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
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
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
8 changes: 5 additions & 3 deletions
8
tools/releaseBuild/azureDevOps/templates/SetVersionVariables.yml
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,45 @@ | ||
| parameters: | ||
| parentJobs: [] | ||
|
|
||
| jobs: | ||
| - job: json | ||
| displayName: Create Json for Blob | ||
| dependsOn: | ||
| ${{ parameters.parentJobs }} | ||
| condition: succeeded() | ||
| pool: | ||
| vmImage: windows-latest | ||
|
|
||
| steps: | ||
| #- task: <task type name>@<version> | ||
| # inputs: | ||
| # <task specific inputs> | ||
| # displayName: '<display name of task>' | ||
| - template: SetVersionVariables.yml | ||
| parameters: | ||
| ReleaseTagVar: $(ReleaseTagVar) | ||
| CreateJson: yes | ||
|
|
||
| - task: AzureFileCopy@1 | ||
| displayName: 'upload signed msi to Azure - ${{ parameters.architecture }}' | ||
| inputs: | ||
| SourcePath: '$(BuildInfoPath)' | ||
| azureSubscription: '$(AzureFileCopySubscription)' | ||
| Destination: AzureBlob | ||
| storage: '$(StorageAccount)' | ||
| ContainerName: 'BuildInfo' | ||
| condition: and(succeeded(), eq(variables['IS_DAILY'], 'true')) | ||
|
|
||
| - task: AzureCLI@1 | ||
| displayName: 'Make blob public' | ||
| inputs: | ||
| azureSubscription: '$(AzureFileCopySubscription)' | ||
| scriptLocation: inlineScript | ||
| inlineScript: 'az storage container set-permission --account-name $(StorageAccount) --name $(azureVersion) --public-access blob' | ||
| condition: and(succeeded(), eq(variables['IS_DAILY'], 'true')) | ||
|
|
||
| - task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0 | ||
| displayName: 'Component Detection' | ||
| inputs: | ||
| sourceScanPath: '$(Build.SourcesDirectory)' | ||
| snapshotForceEnabled: true |
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
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.