-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add a -sign switch and enable signing for some legs #44207
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
Changes from all commits
341ccb0
8f76599
9a20601
0e70c65
5b79927
b66dd16
3ce4aad
aefff0e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -370,6 +370,7 @@ stages: | |
| targetArchitecture: x64 | ||
| useDevVersions: true # Use dev versions for CI validation of the experience. If we decide to ship assets from this leg, then we should remove this option. | ||
| runTests: false # Temporarily do not run tests. The nuget comparison fails for some non-obvious reason and needs further investigation. Mostly, I'm not sure why it ever passed. https://github.com/dotnet/sdk/issues/42920 | ||
| sign: true | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's the long-term strategy for this switch? I assume we won't control this per job in the future but per whole build?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It will probably still be per job but default to true. We dont' need to sign everything, like PGO. |
||
|
|
||
| - template: ../jobs/vmr-build.yml | ||
| parameters: | ||
|
|
@@ -381,6 +382,7 @@ stages: | |
| container: ${{ variables.ubuntuContainer }} | ||
| targetOS: linux | ||
| targetArchitecture: x64 | ||
| sign: true | ||
|
|
||
| - template: ../jobs/vmr-build.yml | ||
| parameters: | ||
|
|
@@ -391,6 +393,7 @@ stages: | |
| pool: ${{ parameters.pool_Windows }} | ||
| targetOS: windows | ||
| targetArchitecture: x64 | ||
| sign: true | ||
|
|
||
| - template: ../jobs/vmr-build.yml | ||
| parameters: | ||
|
|
@@ -403,6 +406,7 @@ stages: | |
| targetOS: android | ||
| targetArchitecture: arm64 | ||
| runTests: false | ||
| sign: true | ||
|
|
||
| - template: ../jobs/vmr-build.yml | ||
| parameters: | ||
|
|
@@ -416,6 +420,7 @@ stages: | |
| targetOS: browser | ||
| targetArchitecture: wasm | ||
| runTests: false | ||
| sign: true | ||
|
|
||
| - template: ../jobs/vmr-build.yml | ||
| parameters: | ||
|
|
@@ -427,6 +432,7 @@ stages: | |
| targetOS: iossimulator | ||
| targetArchitecture: arm64 | ||
| runTests: false | ||
| sign: true | ||
|
|
||
| ### Additional jobs for full build ### | ||
| - ${{ if in(parameters.scope, 'full') }}: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.