Skip to content

Commit d688c3c

Browse files
2 parents 357698f + 2c367a0 commit d688c3c

File tree

3,448 files changed

+273159
-83762
lines changed

Some content is hidden

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

3,448 files changed

+273159
-83762
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## DO NOT MODIFY THIS FILE MANUALLY. This is part of auto-baselining from 1ES Pipeline Templates. Go to [https://aka.ms/1espt-autobaselining] for more details.
2+
3+
pipelines:
4+
'*':
5+
mainPipelineId: 983
6+
retail:
7+
source:
8+
credscan:
9+
lastModifiedDate: 2024-09-13
10+
psscriptanalyzer:
11+
lastModifiedDate: 2024-09-13
12+
armory:
13+
lastModifiedDate: 2024-09-13

.github/CODEOWNERS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,10 @@
329329
# PRLabel: %OpenAI
330330
/sdk/openai/ @kristapratico @glecaros
331331

332+
# ServiceLabel: %Operator Nexus - Network Cloud
333+
# PRLabel: %Operator Nexus - Network Cloud
334+
/sdk/networkcloud/ @Azure/azure-sdk-write-networkcloud
335+
332336
# ServiceLabel: %Purview
333337
# PRLabel: %Purview
334338
/sdk/purview/ @yifan-zhou922
@@ -841,6 +845,8 @@
841845
/eng/common/ @Azure/azure-sdk-eng
842846
/.github/workflows/ @Azure/azure-sdk-eng
843847

848+
/.config/1espt/ @benbp @weshaggard
849+
844850
/tools/ @scbedd @mccoyp
845851

846852
# Add owners for notifications for specific pipelines

.github/workflows/event-processor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: >
5959
dotnet tool install
6060
Azure.Sdk.Tools.GitHubEventProcessor
61-
--version 1.0.0-dev.20240708.1
61+
--version 1.0.0-dev.20240917.2
6262
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
6363
--global
6464
shell: bash
@@ -114,7 +114,7 @@ jobs:
114114
run: >
115115
dotnet tool install
116116
Azure.Sdk.Tools.GitHubEventProcessor
117-
--version 1.0.0-dev.20240708.1
117+
--version 1.0.0-dev.20240917.2
118118
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
119119
--global
120120
shell: bash

.github/workflows/scheduled-event-processor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: >
4040
dotnet tool install
4141
Azure.Sdk.Tools.GitHubEventProcessor
42-
--version 1.0.0-dev.20240708.1
42+
--version 1.0.0-dev.20240917.2
4343
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
4444
--global
4545
shell: bash

.vscode/cspell.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,12 @@
13261326
"tparam",
13271327
"tqdm",
13281328
"ncols",
1329-
"datas"
1329+
"datas",
1330+
"punkt",
1331+
"gleu",
1332+
"fmeasure",
1333+
"upia",
1334+
"xpia",
13301335
]
13311336
},
13321337
{

doc/deprecation_process.md

Lines changed: 202 additions & 37 deletions
Large diffs are not rendered by default.

eng/.docsettings.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ known_content_issues:
119119
- ['sdk/core/azure-common/README.rst', 'common']
120120
- ['sdk/core/azure-core/README.md', 'common']
121121
- ['sdk/core/azure-core/samples/README.md', 'common']
122+
- ['sdk/core/azure-core-tracing-opentelemetry/README.md', 'common']
122123
- ['sdk/core/corehttp/README.md', 'common']
123124
- ['sdk/core/corehttp/samples/README.md', 'common']
124125
- ['sdk/search/azure-search-documents/README.md', 'common']

eng/common/TestResources/SubConfig-Helpers.ps1

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,17 +196,26 @@ function UpdateSubscriptionConfigurationWithFiles([object]$baseSubConfig, [strin
196196
# Helper function for processing stringified json sub configs from pipeline parameter data
197197
function BuildAndSetSubscriptionConfig([string]$baseSubConfigJson, [string]$additionalSubConfigsJson, [string]$subConfigFilesJson) {
198198
$finalConfig = @{}
199-
if ($baseSubConfigJson) {
199+
200+
if ($baseSubConfigJson -and $baseSubConfigJson -ne '""') {
201+
# When variable groups are not added to the pipeline, secret references like
202+
# $(<my secret>) are passed as a string literal instead of being replaced by the keyvault secret value
203+
if ($baseSubConfigJson -notlike '{*') {
204+
throw "Expected a json dictionary object but found '$baseSubConfigJson'. This probably means a subscription config secret was not downloaded. The pipeline is likely missing a variable group."
205+
}
200206
$baseSubConfig = $baseSubConfigJson | ConvertFrom-Json -AsHashtable
201207

202208
Write-Host "Setting base sub config"
203209
$finalConfig = SetSubscriptionConfiguration $baseSubConfig
204210
}
205211

206-
if ($additionalSubConfigsJson) {
212+
if ($additionalSubConfigsJson -and $additionalSubConfigsJson -ne '""') {
207213
$subConfigs = $additionalSubConfigsJson | ConvertFrom-Json -AsHashtable
208214

209215
foreach ($subConfig in $subConfigs) {
216+
if ($subConfig -isnot [hashtable]) {
217+
throw "Expected a json dictionary object but found '$subConfig'. This probably means a subscription config secret was not downloaded. The pipeline is likely missing a variable group."
218+
}
210219
Write-Host "Merging sub config from list"
211220
$finalConfig = UpdateSubscriptionConfiguration $finalConfig $subConfig
212221
}

eng/common/TestResources/deploy-test-resources.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ steps:
4343

4444
- ${{ if eq('true', parameters.UseFederatedAuth) }}:
4545
- task: AzurePowerShell@5
46-
displayName: Deploy test resources
46+
displayName: 🚀 Deploy test resources
4747
env:
4848
TEMP: $(Agent.TempDirectory)
4949
PoolSubnet: $(PoolSubnet)
@@ -96,7 +96,7 @@ steps:
9696
-ServicePrincipalAuth `
9797
-Force `
9898
-Verbose | Out-Null
99-
displayName: Deploy test resources
99+
displayName: 🚀 Deploy test resources
100100
env:
101101
TEMP: $(Agent.TempDirectory)
102102
PoolSubnet: $(PoolSubnet)

eng/common/pipelines/codeowners-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ stages:
3131
vmImage: ubuntu-22.04
3232

3333
variables:
34-
CodeownersLinterVersion: '1.0.0-dev.20240614.4'
34+
CodeownersLinterVersion: '1.0.0-dev.20240917.2'
3535
DotNetDevOpsFeed: "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json"
3636
RepoLabelUri: "https://azuresdkartifacts.blob.core.windows.net/azure-sdk-write-teams/repository-labels-blob"
3737
TeamUserUri: "https://azuresdkartifacts.blob.core.windows.net/azure-sdk-write-teams/azure-sdk-write-teams-blob"

eng/common/pipelines/templates/jobs/perf.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ jobs:
120120
ServiceDirectory: ${{ parameters.ServiceDirectory }}
121121
Location: westus
122122
ResourceType: perf
123+
ServiceConnection: azure-sdk-tests
124+
SubscriptionConfigurationFilePaths:
125+
- eng/common/TestResources/sub-config/AzurePublicMsft.json
126+
UseFederatedAuth: true
123127

124128
- script: >-
125129
dotnet run -- run
@@ -179,3 +183,7 @@ jobs:
179183
parameters:
180184
ServiceDirectory: ${{ parameters.ServiceDirectory }}
181185
ResourceType: perf
186+
ServiceConnection: azure-sdk-tests
187+
SubscriptionConfigurationFilePaths:
188+
- eng/common/TestResources/sub-config/AzurePublicMsft.json
189+
UseFederatedAuth: true

0 commit comments

Comments
 (0)