Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ parameters:
# True to upload code coverage results to CodeCov.
- name: upload
type: boolean
default: true

jobs:
- job: CodeCoverage
Expand Down
8 changes: 8 additions & 0 deletions eng/pipelines/dotnet-sqlclient-ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ stages:
image: ADO-MMS22-CodeCov
pool: ${{ parameters.defaultPoolName }}
targetFrameworks: ${{ parameters.codeCovTargetFrameworks }}
# This is a Pipeline Variable defined in the Azure DevOps UI. It
# must be defined with a true/false value for all pipelines that
# specify a build type of 'Project'.
#
# You can find Pipeline Variables by visiting the main page of the
# pipeline and choosing Edit -> Variables.
#
upload: $( eq(variables.ci_var_uploadTestResult, 'true') )

# test stages configurations
# self hosted SQL Server on Windows
Expand Down
Loading