Skip to content

Commit 769acab

Browse files
authored
Updating package zipping (#4212)
1 parent 94b3f08 commit 769acab

File tree

15 files changed

+463
-69
lines changed

15 files changed

+463
-69
lines changed

Azure.Functions.Cli.sln

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.29519.87
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.12.35506.116 d17.12
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{5F51C958-39C0-4E0C-9165-71D0BCE647BC}"
77
EndProject
@@ -11,6 +11,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Functions.Cli", "src\
1111
EndProject
1212
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Functions.Cli.Tests", "test\Azure.Functions.Cli.Tests\Azure.Functions.Cli.Tests.csproj", "{EAEA6EDB-A301-4A50-86D8-91859DABE30E}"
1313
EndProject
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZippedExe", "test\ZippedExe\ZippedExe.csproj", "{2CD45039-0ABD-4082-87D0-52BB5D467B50}"
15+
EndProject
1416
Global
1517
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1618
Debug|Any CPU = Debug|Any CPU
@@ -25,13 +27,18 @@ Global
2527
{EAEA6EDB-A301-4A50-86D8-91859DABE30E}.Debug|Any CPU.Build.0 = Debug|Any CPU
2628
{EAEA6EDB-A301-4A50-86D8-91859DABE30E}.Release|Any CPU.ActiveCfg = Release|Any CPU
2729
{EAEA6EDB-A301-4A50-86D8-91859DABE30E}.Release|Any CPU.Build.0 = Release|Any CPU
30+
{2CD45039-0ABD-4082-87D0-52BB5D467B50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31+
{2CD45039-0ABD-4082-87D0-52BB5D467B50}.Debug|Any CPU.Build.0 = Debug|Any CPU
32+
{2CD45039-0ABD-4082-87D0-52BB5D467B50}.Release|Any CPU.ActiveCfg = Release|Any CPU
33+
{2CD45039-0ABD-4082-87D0-52BB5D467B50}.Release|Any CPU.Build.0 = Release|Any CPU
2834
EndGlobalSection
2935
GlobalSection(SolutionProperties) = preSolution
3036
HideSolutionNode = FALSE
3137
EndGlobalSection
3238
GlobalSection(NestedProjects) = preSolution
3339
{6608738C-3BDB-47F5-BC62-66A8BDF9D884} = {5F51C958-39C0-4E0C-9165-71D0BCE647BC}
3440
{EAEA6EDB-A301-4A50-86D8-91859DABE30E} = {6EE1D011-2334-44F2-9D41-608B969DAE6D}
41+
{2CD45039-0ABD-4082-87D0-52BB5D467B50} = {6EE1D011-2334-44F2-9D41-608B969DAE6D}
3542
EndGlobalSection
3643
GlobalSection(ExtensibilityGlobals) = postSolution
3744
SolutionGuid = {FA1E01D6-A57B-4061-A333-EDC511D283C0}

build/Program.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.IO;
2-
using System.Linq;
1+
using System.Linq;
32
using System.Net;
43
using static Build.BuildSteps;
54

eng/ci/templates/public/jobs/build-test-public.yml

+28-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,31 @@ jobs:
5656
testResultsFormat: 'VSTest'
5757
testResultsFiles: '**/*.trx'
5858
failTaskOnFailedTests: true
59-
condition: succeededOrFailed()
59+
condition: succeededOrFailed()
60+
templateContext:
61+
outputs:
62+
- output: pipelineArtifact
63+
path: 'test/Azure.Functions.Cli.Tests/bin/Debug/net8.0/ZippedOnWindows.zip'
64+
artifact: ZippedOnWindows
65+
66+
- job: Test_Linux
67+
timeoutInMinutes: "180"
68+
pool:
69+
name: 1es-pool-azfunc-public
70+
image: '1es-ubuntu-22.04'
71+
os: 'linux'
72+
steps:
73+
- download: current
74+
displayName: 'Download test zip'
75+
artifact: ZippedOnWindows
76+
- script: |
77+
sudo apt-get update
78+
sudo apt-get -y install fuse-zip
79+
displayName: 'Install fuse-zip'
80+
- task: DotNetCoreCLI@2
81+
inputs:
82+
command: 'test'
83+
projects: '**/Azure.Functions.Cli.Tests.csproj'
84+
arguments: '--filter CreateZip_Succeeds'
85+
displayName: 'Run zip test'
86+
dependsOn: Default

skipPackagesCve.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
22
"packages": [
3-
"DotNetZip"
43
]
54
}

src/Azure.Functions.Cli/Actions/AzureActions/PublishFunctionAppAction.cs

+10-7
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public override async Task RunAsync()
169169
var targetFramework = await DotnetHelpers.DetermineTargetFramework(Path.GetDirectoryName(projectFilePath));
170170

171171
var majorDotnetVersion = StacksApiHelper.GetMajorDotnetVersionFromDotnetVersionInProject(targetFramework);
172-
172+
173173
if (majorDotnetVersion != null)
174174
{
175175
// Get Stacks
@@ -179,8 +179,8 @@ public override async Task RunAsync()
179179
ShowEolMessage(stacks, runtimeSettings, majorDotnetVersion.Value);
180180

181181
// This is for future proofing with stacks API for future dotnet versions.
182-
if (runtimeSettings != null &&
183-
(runtimeSettings.IsDeprecated == null || runtimeSettings.IsDeprecated == false) &&
182+
if (runtimeSettings != null &&
183+
(runtimeSettings.IsDeprecated == null || runtimeSettings.IsDeprecated == false) &&
184184
(runtimeSettings.IsDeprecatedForRuntime == null || runtimeSettings.IsDeprecatedForRuntime == false))
185185
{
186186
_requiredNetFrameworkVersion = $"{majorDotnetVersion}.0";
@@ -275,12 +275,12 @@ private async Task<IDictionary<string, string>> ValidateFunctionAppPublish(Site
275275
workerRuntimeStr = functionApp.FunctionAppConfig.runtime.name;
276276
}
277277

278-
if (workerRuntime == WorkerRuntime.None)
279-
{
278+
if (workerRuntime == WorkerRuntime.None)
279+
{
280280
throw new CliException($"Worker runtime is not set. Please set a valid runtime using {Constants.FunctionsWorkerRuntime}");
281281
}
282282

283-
if ((functionApp.IsFlex && !string.IsNullOrEmpty(workerRuntimeStr) ||
283+
if ((functionApp.IsFlex && !string.IsNullOrEmpty(workerRuntimeStr) ||
284284
(!functionApp.IsFlex && functionApp.AzureAppSettings.TryGetValue(Constants.FunctionsWorkerRuntime, out workerRuntimeStr))))
285285
{
286286
var resolution = $"You can pass --force to update your Azure app with '{workerRuntime}' as a '{Constants.FunctionsWorkerRuntime}'";
@@ -350,7 +350,7 @@ private async Task<IDictionary<string, string>> ValidateFunctionAppPublish(Site
350350
(functionApp.IsFlex && !PythonHelpers.IsFlexPythonRuntimeVersionMatched(functionApp.FunctionAppConfig?.runtime?.name, functionApp.FunctionAppConfig?.runtime?.version, localVersion.Major, localVersion.Minor)))
351351
{
352352
ColoredConsole.WriteLine(WarningColor($"Local python version '{localVersion.Version}' is different from the version expected for your deployed Function App." +
353-
$" This may result in 'ModuleNotFound' errors in Azure Functions. Please create a Python Function App for version {localVersion.Major}.{localVersion.Minor} or change the virtual environment on your local machine to match '{(functionApp.IsFlex? functionApp.FunctionAppConfig.runtime.version: functionApp.LinuxFxVersion)}'."));
353+
$" This may result in 'ModuleNotFound' errors in Azure Functions. Please create a Python Function App for version {localVersion.Major}.{localVersion.Minor} or change the virtual environment on your local machine to match '{(functionApp.IsFlex ? functionApp.FunctionAppConfig.runtime.version : functionApp.LinuxFxVersion)}'."));
354354
}
355355
}
356356

@@ -559,6 +559,9 @@ private async Task PublishFunctionApp(Site functionApp, GitIgnoreParser ignorePa
559559
ColoredConsole.WriteLine(WarningColor("Recommend using '--build remote' to resolve project dependencies remotely on Azure"));
560560
}
561561

562+
bool useGoZip = EnvironmentHelper.GetEnvironmentVariableAsBool(Constants.UseGoZip);
563+
TelemetryHelpers.AddCommandEventToDictionary(TelemetryCommandEvents, "UseGoZip", useGoZip.ToString());
564+
562565
ColoredConsole.WriteLine(GetLogMessage("Starting the function app deployment..."));
563566
Func<Task<Stream>> zipStreamFactory = () => ZipHelper.GetAppZipFile(functionAppRoot, BuildNativeDeps, PublishBuildOption,
564567
NoBuild, ignoreParser, AdditionalPackages, ignoreDotNetCheck: true);

src/Azure.Functions.Cli/Actions/LocalActions/PackAction.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.IO;
43
using System.Linq;
54
using System.Threading.Tasks;
@@ -9,7 +8,6 @@
98
using Colors.Net;
109
using Fclp;
1110
using Microsoft.Azure.WebJobs.Script;
12-
using static Colors.Net.StringStaticMethods;
1311
using static Azure.Functions.Cli.Common.OutputTheme;
1412

1513
namespace Azure.Functions.Cli.Actions.LocalActions
@@ -104,6 +102,10 @@ public override async Task RunAsync()
104102
// Restore all valid extensions
105103
var installExtensionAction = new InstallExtensionAction(_secretsManager, false);
106104
await installExtensionAction.RunAsync();
105+
106+
bool useGoZip = EnvironmentHelper.GetEnvironmentVariableAsBool(Constants.UseGoZip);
107+
TelemetryHelpers.AddCommandEventToDictionary(TelemetryCommandEvents, "UseGoZip", useGoZip.ToString());
108+
107109
var stream = await ZipHelper.GetAppZipFile(functionAppRoot, BuildNativeDeps, noBuild: false, buildOption: BuildOption.Default, additionalPackages: AdditionalPackages);
108110

109111
if (Squashfs)

src/Azure.Functions.Cli/Azure.Functions.Cli.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@
275275
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.7.0" />
276276
<PackageReference Include="Colors.Net" Version="1.1.0" />
277277
<PackageReference Include="AccentedCommandLineParser" Version="2.0.0" />
278-
<PackageReference Include="DotNetZip" Version="1.16.0" />
279278
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.22.0" />
280279
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="2.2.0" />
281280
<PackageReference Include="Microsoft.Azure.DurableTask.AzureStorage.Internal" Version="1.4.0" />
@@ -284,8 +283,7 @@
284283
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
285284
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
286285
<PackageReference Include="NuGet.Packaging" Version="5.11.6" />
287-
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
288-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
286+
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
289287
<PackageReference Include="WindowsAzure.Storage" Version="9.3.1" />
290288
<PackageReference Include="YamlDotNet" Version="6.0.0" />
291289
<!-- Transitive dependency -->

src/Azure.Functions.Cli/Common/Constants.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using Azure.Functions.Cli.Helpers;
21
using System.Collections.Generic;
32
using System.Collections.ObjectModel;
43
using System.Reflection;
4+
using Azure.Functions.Cli.Helpers;
55

66
namespace Azure.Functions.Cli.Common
77
{
@@ -63,6 +63,7 @@ internal static class Constants
6363
public const string UserSecretsIdElementName = "UserSecretsId";
6464
public const string TargetFrameworkElementName = "TargetFramework";
6565
public const string DisplayLogo = "FUNCTIONS_CORE_TOOLS_DISPLAY_LOGO";
66+
public const string UseGoZip = "FUNCTIONS_CORE_TOOLS_USE_GOZIP";
6667
public const string AspNetCoreSupressStatusMessages = "ASPNETCORE_SUPPRESSSTATUSMESSAGES";
6768
public const string SequentialJobHostRestart = "AzureFunctionsJobHost__SequentialRestart";
6869
public const long DefaultMaxRequestBodySize = 104857600;

0 commit comments

Comments
 (0)