You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[main] Update dependencies from dotnet/arcade (dotnet#1448)
* Update dependencies from https://github.com/dotnet/arcade build 20210624.3
Microsoft.DotNet.Arcade.Sdk
From Version 6.0.0-beta.21319.2 -> To Version 6.0.0-beta.21324.3
* retain stable sdk
* Update dependencies from https://github.com/dotnet/arcade build 20210701.2
Microsoft.DotNet.Arcade.Sdk
From Version 6.0.0-beta.21319.2 -> To Version 6.0.0-beta.21351.2
* Update dependencies from https://github.com/dotnet/arcade build 20210707.3
Microsoft.DotNet.Arcade.Sdk
From Version 6.0.0-beta.21319.2 -> To Version 6.0.0-beta.21357.3
* Update dependencies from https://github.com/dotnet/arcade build 20210716.1
Microsoft.DotNet.Arcade.Sdk
From Version 6.0.0-beta.21319.2 -> To Version 6.0.0-beta.21366.1
* Update dependencies from https://github.com/dotnet/arcade build 20210723.11
Microsoft.DotNet.Arcade.Sdk
From Version 6.0.0-beta.21319.2 -> To Version 6.0.0-beta.21373.11
* retain stable sdk
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Brett V. Forsgren <[email protected]>
Copy file name to clipboardexpand all lines: eng/common/sdl/execute-all-sdl-tools.ps1
+59-12
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,17 @@ Param(
7
7
[string] $SourceDirectory=$env:BUILD_SOURCESDIRECTORY,# Required: the directory where source files are located
8
8
[string] $ArtifactsDirectory= (Join-Path$env:BUILD_ARTIFACTSTAGINGDIRECTORY ('artifacts')),# Required: the directory where build artifacts are located
9
9
[string] $AzureDevOpsAccessToken,# Required: access token for dnceng; should be provided via KeyVault
10
-
[string[]] $SourceToolsList,# Optional: list of SDL tools to run on source code
11
-
[string[]] $ArtifactToolsList,# Optional: list of SDL tools to run on built artifacts
10
+
11
+
# Optional: list of SDL tools to run on source code. See 'configure-sdl-tool.ps1' for tools list
12
+
# format.
13
+
[object[]] $SourceToolsList,
14
+
# Optional: list of SDL tools to run on built artifacts. See 'configure-sdl-tool.ps1' for tools
15
+
# list format.
16
+
[object[]] $ArtifactToolsList,
17
+
# Optional: list of SDL tools to run without automatically specifying a target directory. See
18
+
# 'configure-sdl-tool.ps1' for tools list format.
19
+
[object[]] $CustomToolsList,
20
+
12
21
[bool] $TsaPublish=$False,# Optional: true will publish results to TSA; only set to true after onboarding to TSA; TSA is the automated framework used to upload test results as bugs.
13
22
[string] $TsaBranchName=$env:BUILD_SOURCEBRANCH,# Optional: required for TSA publish; defaults to $(Build.SourceBranchName); TSA is the automated framework used to upload test results as bugs.
14
23
[string] $TsaRepositoryName=$env:BUILD_REPOSITORY_NAME,# Optional: TSA repository name; will be generated automatically if not submitted; TSA is the automated framework used to upload test results as bugs.
0 commit comments