Skip to content

Commit 6964d14

Browse files
committed
- Fixed incorrect reference type in CI-SqlClient pipeline.
- Reduced Debug test job timeout from 180 to 110 minutes.
1 parent 0c4c989 commit 6964d14

File tree

4 files changed

+21
-13
lines changed

4 files changed

+21
-13
lines changed

eng/pipelines/dotnet-sqlclient-ci-package-reference-pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ extends:
165165
# specified. We choose different values depending on the build
166166
# configuration.
167167
${{ if eq(parameters.testJobTimeout, 'Default') }}:
168-
# If the build configuration is Debug, double the test job timeout value.
169-
# Some of our tests currently take much longer to run in Debug mode.
168+
# If the build configuration is Debug, we allow a bit of extra time since
169+
# some tests run more slowly, and some tests are Debug only.
170170
${{ if eq(parameters.buildConfiguration, 'Debug') }}:
171-
testJobTimeout: 180
171+
testJobTimeout: 110
172172
${{ else }}:
173173
testJobTimeout: 90
174174
${{ else }}:

eng/pipelines/dotnet-sqlclient-ci-project-reference-pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ extends:
154154
parameters:
155155
buildConfiguration: ${{ parameters.buildConfiguration }}
156156
buildPlatforms: ${{ parameters.buildPlatforms }}
157-
buildType: Package
157+
buildType: Project
158158
codeCovTargetFrameworks: ${{ parameters.codeCovTargetFrameworks }}
159159
debug: ${{ parameters.debug }}
160160
enableStressTests: ${{ parameters.enableStressTests }}
@@ -165,10 +165,10 @@ extends:
165165
# specified. We choose different values depending on the build
166166
# configuration.
167167
${{ if eq(parameters.testJobTimeout, 'Default') }}:
168-
# If the build configuration is Debug, double the test job timeout value.
169-
# Some of our tests currently take much longer to run in Debug mode.
168+
# If the build configuration is Debug, we allow a bit of extra time since
169+
# some tests run more slowly, and some tests are Debug only.
170170
${{ if eq(parameters.buildConfiguration, 'Debug') }}:
171-
testJobTimeout: 180
171+
testJobTimeout: 110
172172
${{ else }}:
173173
testJobTimeout: 90
174174
${{ else }}:

eng/pipelines/sqlclient-pr-package-ref-pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@ extends:
122122
# specified. We choose different values depending on the build
123123
# configuration.
124124
${{ if eq(parameters.testJobTimeout, 'Default') }}:
125-
# If the build configuration is Debug, double the test job timeout value.
126-
# Some of our tests currently take much longer to run in Debug mode.
125+
# If the build configuration is Debug, we allow a bit of extra time since
126+
# some tests run more slowly, and some tests are Debug only.
127127
${{ if eq(parameters.buildConfiguration, 'Debug') }}:
128-
testJobTimeout: 180
128+
testJobTimeout: 110
129129
${{ else }}:
130130
testJobTimeout: 90
131131
${{ else }}:

eng/pipelines/sqlclient-pr-project-ref-pipeline.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ pr:
4545
- azurepipelines-coverage.yml
4646
- build.proj
4747
- NuGet.config
48+
- .azuredevops
49+
- .config
50+
- src
51+
- eng
52+
- tools
53+
- azurepipelines-coverage.yml
54+
- build.proj
55+
- NuGet.config
4856

4957
# Pipeline parameters, visible in the Azure DevOps UI.
5058
parameters:
@@ -122,10 +130,10 @@ extends:
122130
# specified. We choose different values depending on the build
123131
# configuration.
124132
${{ if eq(parameters.testJobTimeout, 'Default') }}:
125-
# If the build configuration is Debug, double the test job timeout value.
126-
# Some of our tests currently take much longer to run in Debug mode.
133+
# If the build configuration is Debug, we allow a bit of extra time since
134+
# some tests run more slowly, and some tests are Debug only.
127135
${{ if eq(parameters.buildConfiguration, 'Debug') }}:
128-
testJobTimeout: 180
136+
testJobTimeout: 110
129137
${{ else }}:
130138
testJobTimeout: 90
131139
${{ else }}:

0 commit comments

Comments
 (0)