From 07ffb4a9ed0d036dd05207816e3cc58d22bc79b0 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 6 Mar 2021 11:52:34 -0500 Subject: [PATCH] Run Analysis on Linux main build --- azure-pipelines.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3e534aa55..607e33073 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 @@ -802,6 +805,8 @@ stages: variables: disable.coverage.autogenerate: 'true' + EnableAnalyzers: 'false' + pool: vmImage: windows-2019