Skip to content

Commit 57965f2

Browse files
authored
Disable release security analysis for SSH CI (PowerShell#17303)
1 parent 2fe5f00 commit 57965f2

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.vsts-ci/sshremoting-tests.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,21 @@ pr:
2323
- '/test/SSHRemoting/*'
2424

2525
variables:
26-
DOTNET_CLI_TELEMETRY_OPTOUT: 1
27-
POWERSHELL_TELEMETRY_OPTOUT: 1
26+
- name: DOTNET_CLI_TELEMETRY_OPTOUT
27+
value: 1
28+
- name: POWERSHELL_TELEMETRY_OPTOUT
29+
value: 1
2830
# Avoid expensive initialization of dotnet cli, see: https://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds
29-
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
30-
__SuppressAnsiEscapeSequences: 1
31+
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
32+
value: 1
33+
- name: __SuppressAnsiEscapeSequences
34+
value: 1
35+
- name: NugetSecurityAnalysisWarningLevel
36+
value: none
37+
# Prevents auto-injection of nuget-security-analysis@0
38+
- name: skipNugetSecurityAnalysis
39+
value: true
40+
3141

3242
resources:
3343
- repo: self

0 commit comments

Comments
 (0)