diff --git a/.azure-pipelines/client.yml b/.azure-pipelines/client.yml index 672651818c34..83b5b0969196 100644 --- a/.azure-pipelines/client.yml +++ b/.azure-pipelines/client.yml @@ -10,7 +10,8 @@ variables: PythonVersion: '3.6' ReleaseTag: 'RELEASE_CANDIDATE' TestMarkArgument: 'not cosmosEmulator' - + skipComponentGovernanceDetection: true + jobs: - job: 'Build' diff --git a/.azure-pipelines/docs.yml b/.azure-pipelines/docs.yml index 8609bfa6ba6f..33aa4790b7b2 100644 --- a/.azure-pipelines/docs.yml +++ b/.azure-pipelines/docs.yml @@ -6,6 +6,8 @@ variables: jobs: - job: 'DocGen' + variables: + skipComponentGovernanceDetection: true timeoutInMinutes: 120 pool: vmImage: 'vs2017-win2016' diff --git a/.azure-pipelines/tests-nightly-python.yml b/.azure-pipelines/tests-nightly-python.yml index 7b5fba1f00e4..89bfcd97f63d 100644 --- a/.azure-pipelines/tests-nightly-python.yml +++ b/.azure-pipelines/tests-nightly-python.yml @@ -4,6 +4,8 @@ trigger: jobs: - job: Validate_Nightly_Python_Build + variables: + skipComponentGovernanceDetection: true timeoutInMinutes: 90 diff --git a/.azure-pipelines/tests.yml b/.azure-pipelines/tests.yml index 632a16dd5b2c..db217c6cd6f8 100644 --- a/.azure-pipelines/tests.yml +++ b/.azure-pipelines/tests.yml @@ -3,7 +3,9 @@ jobs: - job: 'Test' - + variables: + skipComponentGovernanceDetection: true + timeoutInMinutes: 120 strategy: matrix: diff --git a/.azure-pipelines/update_pr.yml b/.azure-pipelines/update_pr.yml index 726664ed6176..35a112df0e2d 100644 --- a/.azure-pipelines/update_pr.yml +++ b/.azure-pipelines/update_pr.yml @@ -6,6 +6,9 @@ trigger: - master +variables: + skipComponentGovernanceDetection: true + pool: vmImage: 'ubuntu-latest'