Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(e2e-tests): update SAM build image to dotnet10
- Update SAM build container image from dotnet8 to dotnet10 in AOT packaging command
- Align e2e test infrastructure with .NET 10.0 runtime support
- Ensures AOT builds use the latest supported .NET version
  • Loading branch information
hjgraca committed Dec 19, 2025
commit 6b9a9abd078a031e65c4a02f77f2ee740581b1fc
2 changes: 1 addition & 1 deletion libraries/tests/e2e/InfraShared/FunctionConstruct.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public FunctionConstruct(Construct scope, string id, FunctionConstructProps prop
var framework = "net8.0";
var distPath = $"{props.DistPath}/deploy_{props.Architecture.Name}_{props.Runtime.Name}.zip";
var command = props.IsAot
? $"dotnet-lambda package -pl {props.SourcePath} -cmd ../../../ -o {distPath} -farch {props.Architecture.Name} -cifb public.ecr.aws/sam/build-dotnet8"
? $"dotnet-lambda package -pl {props.SourcePath} -cmd ../../../ -o {distPath} -farch {props.Architecture.Name} -cifb public.ecr.aws/sam/build-dotnet10"
: $"dotnet-lambda package -pl {props.SourcePath} -o {distPath} -f {framework} -farch {props.Architecture.Name}";

Console.WriteLine(command);
Expand Down
Loading