From 3b1dc1fa366548e7f870ca61a7825245f710bac6 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 6 Mar 2021 12:20:02 -0500 Subject: [PATCH] Moved Analysis to Backend Build Linux --- azure-pipelines.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 563c81c6a..9925d088d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -59,18 +59,21 @@ stages: Linux: osName: 'Linux' imageName: 'ubuntu-18.04' + enableAnalysis: 'true' Mac: osName: 'Mac' imageName: 'macos-10.14' + enableAnalysis: 'false' Windows: osName: 'Windows' imageName: 'windows-2019' + enableAnalysis: 'false' pool: vmImage: $(imageName) variables: # Disable stylecop here - linting errors get caught by the analyze task - EnableAnalyzers: 'false' + EnableAnalyzers: $(enableAnalysis) steps: - checkout: self submodules: true @@ -709,6 +712,7 @@ stages: variables: disable.coverage.autogenerate: 'true' + EnableAnalyzers: 'false' pool: vmImage: windows-2019