File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ parameters:
3333 # True to upload code coverage results to CodeCov.
3434 - name : upload
3535 type : boolean
36- default : true
3736
3837jobs :
3938 - job : CodeCoverage
Original file line number Diff line number Diff line change @@ -99,6 +99,14 @@ stages:
9999 image : ADO-MMS22-CodeCov
100100 pool : ${{ parameters.defaultPoolName }}
101101 targetFrameworks : ${{ parameters.codeCovTargetFrameworks }}
102+ # This is a Pipeline Variable defined in the Azure DevOps UI. It
103+ # must be defined with a true/false value for all pipelines that
104+ # specify a build type of 'Project'.
105+ #
106+ # You can find Pipeline Variables by visiting the main page of the
107+ # pipeline and choosing Edit -> Variables.
108+ #
109+ upload : ${{ eq(variables.ci_var_uploadTestResult, 'true') }}
102110
103111# test stages configurations
104112 # self hosted SQL Server on Windows
You can’t perform that action at this time.
0 commit comments