-
Notifications
You must be signed in to change notification settings - Fork 8.3k
[release/v7.6.1] Correct Variable Template Reference in NonOfficial Pipeline Templates #27317
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
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 |
|---|---|---|
|
|
@@ -45,7 +45,7 @@ resources: | |
| ref: refs/heads/main | ||
|
|
||
| variables: | ||
| - template: ./pipelines/templates/variables/PowerShell-Coordinated_Packages-Variables.yml@self | ||
| - template: /.pipelines/templates/variables/PowerShell-Coordinated_Packages-Variables.yml@self | ||
| parameters: | ||
| InternalSDKBlobURL: ${{ parameters.InternalSDKBlobURL }} | ||
| ReleaseTagVar: ${{ parameters.ReleaseTagVar }} | ||
|
|
@@ -61,6 +61,7 @@ extends: | |
| LinuxHostVersion: | ||
| Network: KS3 | ||
| WindowsHostVersion: | ||
| Version: 2022 | ||
| Network: KS3 | ||
|
Comment on lines
63
to
65
|
||
| incrementalSDLBinaryAnalysis: true | ||
| globalSdl: | ||
|
|
@@ -90,7 +91,7 @@ extends: | |
| tsaOptionsFile: .config\tsaoptions.json | ||
|
|
||
| stages: | ||
| - template: ./pipelines/templates/stages/PowerShell-Coordinated_Packages-Stages.yml@self | ||
| - template: /.pipelines/templates/stages/PowerShell-Coordinated_Packages-Stages.yml@self | ||
| parameters: | ||
| RUN_WINDOWS: ${{ parameters.RUN_WINDOWS }} | ||
| RUN_TEST_AND_RELEASE: ${{ parameters.RUN_TEST_AND_RELEASE }} | ||
|
|
||
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.
The new guidance says all in-repo
- template:references must use the absolute/.pipelines/...@selfform and that relative/bare filenames are not acceptable. This isn’t currently true in this repo (e.g.,.pipelines/templates/linux-package-build.ymland.pipelines/templates/mac-package-build.ymluse- template: SetVersionVariables.yml@selfand other relative includes). Please either (a) narrow the guidance to entrypoint pipeline YAMLs and templates expected to be referenced from multiple directories, or (b) update the existing templates to match the stated convention so the doc doesn’t mislead future changes.