Skip to content

Commit 7df999b

Browse files
authored
Skipping CG except where explicitly called out. (#5752)
* Skipping CG except where explicitly called out.
1 parent 6795925 commit 7df999b

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

.azure-pipelines/client.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ variables:
1010
PythonVersion: '3.6'
1111
ReleaseTag: 'RELEASE_CANDIDATE'
1212
TestMarkArgument: 'not cosmosEmulator'
13-
13+
skipComponentGovernanceDetection: true
14+
1415
jobs:
1516
- job: 'Build'
1617

.azure-pipelines/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ variables:
66

77
jobs:
88
- job: 'DocGen'
9+
variables:
10+
skipComponentGovernanceDetection: true
911
timeoutInMinutes: 120
1012
pool:
1113
vmImage: 'vs2017-win2016'

.azure-pipelines/tests-nightly-python.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ trigger:
44
jobs:
55

66
- job: Validate_Nightly_Python_Build
7+
variables:
8+
skipComponentGovernanceDetection: true
79

810
timeoutInMinutes: 90
911

.azure-pipelines/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44
jobs:
55
- job: 'Test'
6-
6+
variables:
7+
skipComponentGovernanceDetection: true
8+
79
timeoutInMinutes: 120
810
strategy:
911
matrix:

.azure-pipelines/update_pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
trigger:
77
- master
88

9+
variables:
10+
skipComponentGovernanceDetection: true
11+
912
pool:
1013
vmImage: 'ubuntu-latest'
1114

0 commit comments

Comments
 (0)