-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies from https://github.com/dotnet/arcade build 20220…
…106.6 (#27154) [main] Update dependencies from dotnet/arcade
- Loading branch information
1 parent
a1afdb9
commit bbf76fd
Showing
9 changed files
with
80 additions
and
152 deletions.
There are no files selected for viewing
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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 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 was deleted.
Oops, something went wrong.
This file contains 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,31 @@ | ||
parameters: | ||
# See schema documentation in /Documentation/AzureDevOps/TemplateSchema.md | ||
continueOnError: false | ||
# Required: A collection of jobs to run - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#job | ||
jobs: [] | ||
# Optional: if specified, restore and use this version of Guardian instead of the default. | ||
overrideGuardianVersion: '' | ||
|
||
jobs: | ||
- template: /eng/common/templates/jobs/jobs.yml | ||
parameters: | ||
enableMicrobuild: false | ||
enablePublishBuildArtifacts: false | ||
enablePublishTestResults: false | ||
enablePublishBuildAssets: false | ||
enablePublishUsingPipelines: false | ||
enableTelemetry: true | ||
|
||
variables: | ||
- group: Publish-Build-Assets | ||
# The Guardian version specified in 'eng/common/sdl/packages.config'. This value must be kept in | ||
# sync with the packages.config file. | ||
- name: DefaultGuardianVersion | ||
value: 0.109.0 | ||
- name: GuardianPackagesConfigFile | ||
value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config | ||
- name: GuardianVersion | ||
value: ${{ coalesce(parameters.overrideGuardianVersion, '$(DefaultGuardianVersion)') }} | ||
|
||
jobs: ${{ parameters.jobs }} | ||
|
This file contains 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 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,32 @@ | ||
parameters: | ||
# Language that should be analyzed. Defaults to csharp | ||
language: csharp | ||
# Build Commands | ||
buildCommands: '' | ||
overrideParameters: '' # Optional: to override values for parameters. | ||
additionalParameters: '' # Optional: parameters that need user specific values eg: '-SourceToolsList @("abc","def") -ArtifactToolsList @("ghi","jkl")' | ||
# Optional: if specified, restore and use this version of Guardian instead of the default. | ||
overrideGuardianVersion: '' | ||
# Optional: if true, publish the '.gdn' folder as a pipeline artifact. This can help with in-depth | ||
# diagnosis of problems with specific tool configurations. | ||
publishGuardianDirectoryToPipeline: false | ||
# The script to run to execute all SDL tools. Use this if you want to use a script to define SDL | ||
# parameters rather than relying on YAML. It may be better to use a local script, because you can | ||
# reproduce results locally without piecing together a command based on the YAML. | ||
executeAllSdlToolsScript: 'eng/common/sdl/execute-all-sdl-tools.ps1' | ||
# There is some sort of bug (has been reported) in Azure DevOps where if this parameter is named | ||
# 'continueOnError', the parameter value is not correctly picked up. | ||
# This can also be remedied by the caller (post-build.yml) if it does not use a nested parameter | ||
# optional: determines whether to continue the build if the step errors; | ||
sdlContinueOnError: false | ||
|
||
steps: | ||
- template: /eng/common/templates/steps/execute-sdl.yml | ||
parameters: | ||
overrideGuardianVersion: ${{ parameters.overrideGuardianVersion }} | ||
executeAllSdlToolsScript: ${{ parameters.executeAllSdlToolsScript }} | ||
overrideParameters: ${{ parameters.overrideParameters }} | ||
additionalParameters: '${{ parameters.additionalParameters }} | ||
-CodeQLAdditionalRunConfigParams @("BuildCommands < ${{ parameters.buildCommands }}", "Language < ${{ parameters.language }}")' | ||
publishGuardianDirectoryToPipeline: ${{ parameters.publishGuardianDirectoryToPipeline }} | ||
sdlContinueOnError: ${{ parameters.sdlContinueOnError }} |
This file contains 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