Skip to content

Commit 52b0459

Browse files
committed
Merge branch 'main' into dev/russellben/cleanup/testsets-categories
2 parents 33f0298 + f880e40 commit 52b0459

45 files changed

Lines changed: 1349 additions & 97 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
File renamed without changes.

eng/pipelines/steps/install-dotnet.yml renamed to eng/pipelines/common/steps/install-dotnet.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ steps:
6969
env:
7070
PROCESSOR_ARCHITECTURE: x86
7171

72+
7273
# Install the desired Runtimes, if any.
7374
- ${{ each version in parameters.runtimes }}:
7475
- task: UseDotNet@2
@@ -96,7 +97,7 @@ steps:
9697
inputs:
9798
targetType: filePath
9899
pwsh: true
99-
filePath: $(Build.SourcesDirectory)/eng/pipelines/steps/install-dotnet-arm64.ps1
100+
filePath: $(Build.SourcesDirectory)/eng/pipelines/common/steps/install-dotnet-arm64.ps1
100101
# Arguments:
101102
#
102103
# -Debug:
File renamed without changes.

eng/pipelines/common/templates/jobs/ci-build-nugets-job.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ jobs:
132132
targetPath: $(localFeedPath)
133133

134134
# Install the .NET SDK.
135-
- template: /eng/pipelines/steps/install-dotnet.yml@self
135+
- template: /eng/pipelines/common/steps/install-dotnet.yml@self
136136

137137
# Restore dotnet CLI tools (e.g. pwsh, apicompat) before building.
138-
- template: /eng/pipelines/steps/restore-dotnet-tools.yml@self
138+
- template: /eng/pipelines/common/steps/restore-dotnet-tools.yml@self
139139

140140
# When we're performing a Debug build, we still want to try _compiling_ the
141141
# code in Release mode to ensure downstream pipelines don't encounter

eng/pipelines/common/templates/jobs/ci-code-coverage-job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
displayName: '[Debug] List Environment Variables'
4545

4646
# Install the .NET SDK.
47-
- template: /eng/pipelines/steps/install-dotnet.yml@self
47+
- template: /eng/pipelines/common/steps/install-dotnet.yml@self
4848
parameters:
4949
debug: ${{ parameters.debug }}
5050

eng/pipelines/common/templates/jobs/ci-run-tests-job.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@ parameters:
3030
# template expansion.
3131
#
3232
# EnclaveEnabled
33-
# IsAzureSynapse
3433
# IsDNSCachingSupportedCR
3534
# IsDNSCachingSupportedTR
3635
# ManagedIdentitySupported
37-
# SupportsFileStream
3836
# SupportsIntegratedSecurity
3937
# TracingEnabled
4038
#
@@ -211,7 +209,7 @@ jobs:
211209
targetPath: $(Build.SourcesDirectory)/packages
212210

213211
# Install the .NET SDK and Runtimes.
214-
- template: /eng/pipelines/steps/install-dotnet.yml@self
212+
- template: /eng/pipelines/common/steps/install-dotnet.yml@self
215213
parameters:
216214
debug: ${{ parameters.debug }}
217215
${{ if parameters.isArm64 }}:
@@ -223,7 +221,7 @@ jobs:
223221
runtimes: [8.x, 9.x]
224222

225223
# Restore dotnet CLI tools (e.g. pwsh, apicompat) before building.
226-
- template: /eng/pipelines/steps/restore-dotnet-tools.yml@self
224+
- template: /eng/pipelines/common/steps/restore-dotnet-tools.yml@self
227225

228226
- ${{ if ne(parameters.prebuildSteps, '') }}:
229227
- ${{ parameters.prebuildSteps }} # extra steps to run before the build like downloading sni and the required configuration
@@ -279,8 +277,6 @@ jobs:
279277
AliasName: ${{ parameters.configProperties.AliasName }}
280278
${{ if parameters.configProperties.SupportsIntegratedSecurity }}:
281279
SupportsIntegratedSecurity: ${{ eq(parameters.configProperties.SupportsIntegratedSecurity, 'true') }}
282-
${{ if parameters.configProperties.SupportsFileStream }}:
283-
SupportsFileStream: ${{ eq(parameters.configProperties.SupportsFileStream, 'true') }}
284280
${{ if parameters.configProperties.DNSCachingConnString }}:
285281
DNSCachingConnString: ${{ parameters.configProperties.DNSCachingConnString }}
286282
${{ if parameters.configProperties.DNSCachingServerCR }}:
@@ -293,8 +289,6 @@ jobs:
293289
IsDNSCachingSupportedCR: ${{ eq(parameters.configProperties.IsDNSCachingSupportedCR, 'true') }}
294290
${{ if parameters.configProperties.IsDNSCachingSupportedTR }}:
295291
IsDNSCachingSupportedTR: ${{ eq(parameters.configProperties.IsDNSCachingSupportedTR, 'true') }}
296-
${{ if parameters.configProperties.IsAzureSynapse }}:
297-
IsAzureSynapse: ${{ eq(parameters.configProperties.IsAzureSynapse, 'true') }}
298292
${{ if parameters.configProperties.ManagedIdentitySupported }}:
299293
ManagedIdentitySupported: ${{ eq(parameters.configProperties.ManagedIdentitySupported, 'true') }}
300294

@@ -352,7 +346,7 @@ jobs:
352346
- ${{ if and(eq(parameters.enableX86Test, true), eq(parameters.operatingSystem, 'Windows')) }}:
353347
- ${{ if ne(variables['dotnetx86RootPath'], '') }}:
354348
# Install the .NET SDK and Runtimes for x86.
355-
- template: /eng/pipelines/steps/install-dotnet.yml@self
349+
- template: /eng/pipelines/common/steps/install-dotnet.yml@self
356350
parameters:
357351
architecture: x86
358352
debug: ${{ parameters.debug }}

eng/pipelines/common/templates/steps/pre-build-step.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#################################################################################
66
steps:
77
# Install the .NET SDK and Runtimes.
8-
- template: /eng/pipelines/steps/install-dotnet.yml@self
8+
- template: /eng/pipelines/common/steps/install-dotnet.yml@self
99
parameters:
1010
runtimes: [8.x, 9.x]
1111

eng/pipelines/common/templates/steps/update-config-file-step.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@ parameters:
9393
type: boolean
9494
default: false
9595

96-
- name: SupportsFileStream
97-
type: boolean
98-
default: false
99-
10096
- name: DNSCachingConnString
10197
type: string
10298
default: ''
@@ -121,10 +117,6 @@ parameters:
121117
type: boolean
122118
default: false
123119

124-
- name: IsAzureSynapse
125-
type: boolean
126-
default: false
127-
128120
- name: ManagedIdentitySupported
129121
type: boolean
130122
default: true
@@ -188,8 +180,6 @@ steps:
188180
189181
$p.DNSCachingConnString="${{parameters.DNSCachingConnString }}"
190182
191-
$p.SupportsFileStream="${{parameters.SupportsFileStream }}"
192-
193183
$p.LocalDbAppName="${{parameters.LocalDbAppName }}"
194184
195185
$p.TCPConnectionStringAASSGX="${{parameters.TCPConnectionStringAASSGX }}"
@@ -201,7 +191,6 @@ steps:
201191
$p.UseManagedSNIOnWindows=[System.Convert]::ToBoolean("${{parameters.UseManagedSNIOnWindows }}")
202192
$p.SupportsIntegratedSecurity=[System.Convert]::ToBoolean("${{parameters.SupportsIntegratedSecurity }}")
203193
$p.ManagedIdentitySupported=[System.Convert]::ToBoolean("${{parameters.ManagedIdentitySupported }}")
204-
$p.IsAzureSynapse=[System.Convert]::ToBoolean("${{parameters.IsAzureSynapse }}")
205194
$p.IsDNSCachingSupportedTR=[System.Convert]::ToBoolean("${{parameters.IsDNSCachingSupportedTR }}")
206195
$p.IsDNSCachingSupportedCR=[System.Convert]::ToBoolean("${{parameters.IsDNSCachingSupportedCR }}")
207196
$p.TracingEnabled=[System.Convert]::ToBoolean("${{parameters.TracingEnabled }}")

eng/pipelines/common/templates/steps/verify-nuget-package-step.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ parameters:
3434

3535
steps:
3636
# Install the .NET SDK, required by the PowerShell script.
37-
- template: /eng/pipelines/steps/install-dotnet.yml@self
37+
- template: /eng/pipelines/common/steps/install-dotnet.yml@self
3838

3939
# Invoke the script with the path to the packages to verify.
4040
- task: PowerShell@2

eng/pipelines/onebranch/variables/common-variables.yml renamed to eng/pipelines/common/variables/common-variables.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
# See the LICENSE file in the project root for more information. #
55
#################################################################################
66

7-
# Common variables shared across all OneBranch Official pipelines.
7+
# Common variables shared across all pipelines.
88

99
variables:
10-
- name: CommitHead
11-
value: '' # the value will be extracted from the repo's head
1210

1311
##########################################################################
1412
# "Well-Known" Variables that are ok to use directly, anywhere in the pipeline.
@@ -21,15 +19,3 @@ variables:
2119
# <ArtifactsPath>).
2220
- name: BUILD_OUTPUT
2321
value: $(REPO_ROOT)/artifacts
24-
25-
# Directory where downloaded pipeline artifacts (NuGet packages from earlier
26-
# stages) are placed. Build jobs use this as a local NuGet package source so
27-
# that downstream packages can resolve dependencies on packages built by
28-
# upstream stages.
29-
- name: JOB_INPUT
30-
value: $(REPO_ROOT)/packages
31-
32-
# Root directory for all job output artifacts (NuGet packages, symbols, etc.). OneBranch auto
33-
# publishes everything under this directory as the artifact for the job.
34-
- name: JOB_OUTPUT
35-
value: $(REPO_ROOT)/output

0 commit comments

Comments
 (0)