-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Fix SuperPMI collections #107588
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
Fix SuperPMI collections #107588
Changes from all commits
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 |
|---|---|---|
|
|
@@ -3,7 +3,9 @@ parameters: | |
| archType: '' | ||
| osGroup: '' | ||
| osSubgroup: '' | ||
| container: '' | ||
| liveLibrariesBuildConfig: '' | ||
| crossBuild: '' | ||
| variables: {} | ||
| pool: '' | ||
| runJobTemplate: '/eng/pipelines/coreclr/templates/run-superpmi-collect-job.yml' | ||
|
|
@@ -24,6 +26,8 @@ jobs: | |
| archType: ${{ parameters.archType }} | ||
| osGroup: ${{ parameters.osGroup }} | ||
| osSubgroup: ${{ parameters.osSubgroup }} | ||
| container: ${{ parameters.container }} | ||
| crossBuild: ${{ parameters.crossBuild }} | ||
| liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }} | ||
| collectionType: ${{ parameters.collectionType }} | ||
| collectionName: ${{ parameters.collectionName }} | ||
|
|
@@ -33,7 +37,16 @@ jobs: | |
| - ${{ if eq(parameters.collectionName, 'coreclr_tests') }}: | ||
| - 'coreclr_common_test_build_p1_AnyOS_AnyCPU_${{parameters.buildConfig }}' | ||
|
|
||
| variables: ${{ parameters.variables }} | ||
| variables: | ||
|
|
||
| - name: crossArg | ||
| value: '' | ||
| - ${{ if eq(parameters.crossBuild, true) }}: | ||
kunalspathak marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - name: crossArg | ||
| value: '-cross' | ||
kunalspathak marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| - ${{ each variable in parameters.variables }}: | ||
|
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. Is this needed so it can get the 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. Basically, we need to inherit all the passed in variables as well as set |
||
| - ${{insert}}: ${{ variable }} | ||
|
|
||
| steps: | ||
| # Extra steps that will be passed to the superpmi template and run before sending the job to helix (all of which is done in the template) | ||
|
|
@@ -72,6 +85,6 @@ jobs: | |
| displayName: 'generic managed test artifacts' | ||
|
|
||
| # Create Core_Root | ||
| - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) $(buildConfig) $(archType) generatelayoutonly $(librariesOverrideArg) /p:UsePublishedCrossgen2=false | ||
| - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) $(buildConfig) $(archType) $(crossArg) generatelayoutonly $(librariesOverrideArg) /p:UsePublishedCrossgen2=false | ||
| displayName: Create Core_Root | ||
| condition: succeeded() | ||
Uh oh!
There was an error while loading. Please reload this page.