Skip to content

Commit 7c2616a

Browse files
committed
Merge remote-tracking branch 'upstream/dev' into jviau/health-checks-2
2 parents 79ab30a + f8fcc65 commit 7c2616a

File tree

351 files changed

+2281
-1873
lines changed

Some content is hidden

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

351 files changed

+2281
-1873
lines changed

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
[*.cs]
1+
[*]
2+
indent_style = space
3+
charset = utf-8
24

5+
[*.cs]
36
# SA1008: Opening parenthesis should not be preceded by a space.
47
dotnet_diagnostic.SA1008.severity = silent

.gitattributes

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,8 @@
4848
*.vbproj text=auto
4949
*.fsproj text=auto
5050
*.dbproj text=auto
51-
*.sln text=auto eol=crlf
51+
*.sln text=auto eol=crlf
52+
53+
# Use union on release notes to keep both local and remote changes
54+
# and avoid merge conflicts.
55+
release_notes.md merge=union

NuGet.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
<add key="AzureFunctionsRelease" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsRelease/nuget/v3/index.json" />
99
<add key="AzureFunctionsPreRelease" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsPreRelease/nuget/v3/index.json" />
1010
<add key="AzureFunctionsTempStaging" value="https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/AzureFunctionsTempStaging/nuget/v3/index.json" />
11+
<add key="AzureFunctionsInfra" value="https://pkgs.dev.azure.com/azfunc/public/_packaging/infra/nuget/v3/index.json" />
1112
</packageSources>
1213
</configuration>

README.md

Lines changed: 1 addition & 1 deletion

WebJobs.Script.sln

Lines changed: 75 additions & 65 deletions
Large diffs are not rendered by default.

eng/build/Workers.Node.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<ItemGroup>
4-
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="3.10.1" />
4+
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="3.11.0" />
55
</ItemGroup>
66

77
</Project>

eng/ci/templates/official/jobs/process-coldstart.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
artifact: $(artifactName)
3838

3939
steps:
40-
- checkout: none
4140
- pwsh: |
4241
$sampleSize = $env:SAMPLE_SIZE
4342
$values = @()
@@ -98,15 +97,8 @@ jobs:
9897
scriptType: 'pscore'
9998
scriptLocation: 'inlineScript'
10099
inlineScript: |
101-
$json = Get-Content -Path $(resultsJsonPath) -Raw
102-
$dateTimeUtc = [datetimeoffset]::UtcNow
103-
104-
$query = @"
105-
INSERT INTO ColdStart (DateTimeUtc, OS, Description, Document)
106-
VALUES ('$dateTimeUtc', '${{ parameters.os }}', '${{ parameters.description }}', '$json')
107-
"@
108-
109-
Invoke-Sqlcmd -ConnectionString "$(ColdStartResultsSqlConnectionString)" -Query $query
110-
100+
$env:PATH = [System.IO.Path]::Combine($env:USERPROFILE, ".dotnet", "tools") + ";$env:PATH"
101+
dotnet tool install -g Microsoft.Azure.Functions.ColdStartDataWriter --prerelease
102+
func-cold-start-data-writer --os '${{ parameters.os }}' --description '${{ parameters.description }}' --sql-connection '$(ColdStartResultsSqlConnectionString)' --document-file-path '$(resultsJsonPath)'
111103
displayName: Persist results
112104
condition: eq(variables['Build.Reason'], 'Schedule')

eng/ci/templates/official/jobs/run-coldstart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
- task: CopyFiles@2
118118
displayName: Copy node js app content to script root dir
119119
inputs:
120-
SourceFolder: '$(Build.SourcesDirectory)/test/Performance/Apps/HelloHttpNode'
120+
SourceFolder: '$(Build.SourcesDirectory)/perf/Apps/HelloHttpNode'
121121
Contents: '**/*'
122122
TargetFolder: '$(functionAppOutputPath)'
123123
CleanTargetFolder: true
@@ -135,7 +135,7 @@ jobs:
135135
- task: CopyFiles@2
136136
displayName: Copy benchmark apps to temp location
137137
inputs:
138-
SourceFolder: '$(Build.SourcesDirectory)/test/Performance/Apps'
138+
SourceFolder: '$(Build.SourcesDirectory)/perf/Apps'
139139
Contents: '**/*'
140140
TargetFolder: '$(Build.ArtifactStagingDirectory)/PerformanceTestApps'
141141
CleanTargetFolder: true

eng/ci/templates/official/jobs/run-metrics-monitor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- task: CopyFiles@2
4747
displayName: Copy benchmark apps to temp location
4848
inputs:
49-
SourceFolder: '$(Build.SourcesDirectory)/test/Performance/Apps'
49+
SourceFolder: '$(Build.SourcesDirectory)/perf/Apps'
5050
Contents: '**/*'
5151
TargetFolder: '$(Build.ArtifactStagingDirectory)/PerformanceTestApps'
5252
CleanTargetFolder: true

eng/ci/templates/official/jobs/setup-benchmark-agents.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- task: CopyFiles@2
4949
displayName: Copy benchmark apps to temp location
5050
inputs:
51-
SourceFolder: '$(Build.SourcesDirectory)/test/Performance/Apps'
51+
SourceFolder: '$(Build.SourcesDirectory)/perf/Apps'
5252
Contents: '**/*'
5353
TargetFolder: '$(Build.ArtifactStagingDirectory)/PerformanceTestApps'
5454
CleanTargetFolder: true

0 commit comments

Comments
 (0)