Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Comment thread
apoorvdeshmukh marked this conversation as resolved.
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 @@ -152,6 +152,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.
#
Comment thread
apoorvdeshmukh marked this conversation as resolved.
upload: ${{ eq(variables.ci_var_uploadTestResult, 'true') }}
Comment thread
apoorvdeshmukh marked this conversation as resolved.

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