-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Linker into runtime diff2 #78049
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
tlakollo
merged 6 commits into
dotnet:LinkerIntoRuntime2
from
tlakollo:LinkerIntoRuntimeDiff2
Nov 9, 2022
Merged
Linker into runtime diff2 #78049
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| # The purpose of this pipeline is to run the trimming tests. These tests ensure trimming is | ||
| # done correctly and also that our APIs are trimming safe. | ||
|
|
||
| trigger: | ||
| batch: true | ||
| branches: | ||
| include: | ||
| - release/*.* | ||
| paths: | ||
| include: | ||
| - '*' | ||
| exclude: | ||
| - '**.md' | ||
| - eng/Version.Details.xml | ||
| - .devcontainer/* | ||
| - .github/* | ||
| - docs/* | ||
| - LICENSE.TXT | ||
| - PATENTS.TXT | ||
| - THIRD-PARTY-NOTICES.TXT | ||
|
|
||
| schedules: | ||
| - cron: "0 7,19 * * *" # run at 7:00 and 19:00 (UTC) which is 23:00 and 11:00 (PST). | ||
| displayName: Runtime-tools-tests default schedule | ||
| branches: | ||
| include: | ||
| - main | ||
| always: false # run only if there were changes since the last successful scheduled run. | ||
|
|
||
| pr: | ||
| branches: | ||
| include: | ||
| - main | ||
| - release/*.* | ||
| paths: | ||
| include: | ||
| - '*' | ||
| exclude: | ||
| - '**.md' | ||
| - eng/Version.Details.xml | ||
| - .devcontainer/* | ||
| - .github/* | ||
| - docs/* | ||
| - LICENSE.TXT | ||
| - PATENTS.TXT | ||
| - THIRD-PARTY-NOTICES.TXT | ||
|
|
||
| variables: | ||
| - template: /eng/pipelines/common/variables.yml | ||
|
|
||
| extends: | ||
| template: /eng/pipelines/common/templates/single-stage-pipeline-with-resources.yml | ||
| parameters: | ||
| jobs: | ||
|
|
||
| # | ||
| # Evaluate paths | ||
| # | ||
| - ${{ if eq(variables.dependOnEvaluatePaths, true) }}: | ||
| - template: /eng/pipelines/common/evaluate-default-paths.yml | ||
|
|
||
| # | ||
| # Build Release config vertical for Windows, Linux and OSX | ||
| # | ||
| - template: /eng/pipelines/common/platform-matrix.yml | ||
| parameters: | ||
| jobTemplate: /eng/pipelines/common/global-build-job.yml | ||
| buildConfig: release | ||
| platforms: | ||
| - windows_x64 | ||
| - OSX_x64 | ||
| - Linux_x64 | ||
| jobParameters: | ||
| testGroup: innerloop | ||
| timeoutInMinutes: 120 | ||
| nameSuffix: Runtime_Release | ||
| condition: | ||
| or( | ||
| eq(dependencies.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange.containsChange'], true), | ||
| eq(variables['isRollingBuild'], true)) | ||
| buildArgs: -s tools.illinktests -c $(_BuildConfig) |
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 |
|---|---|---|
| @@ -1,6 +1,3 @@ | ||
| # top-most EditorConfig file | ||
| root = true | ||
|
|
||
| [*.cs] | ||
| indent_style = tab | ||
| indent_size = 4 | ||
|
|
||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to consolidate the code styling in src/tools/illink with the rest of the repo? If yes, can you please open a tracking issue to remove this .editorconfig later?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once the linker repo is archived and no cherry picking is being made the editorconfig will be customized to only contain a small subset of overrides from runtime global config #78050