Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Uh oh!
There was an error while loading. Please reload this page.
Linker into runtime diff2 #78049
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| 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) |
| 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.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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