Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DO-NOT-MERGE] Yophilav/upgrade sdk test main #6600

Draft
wants to merge 15 commits into
base: main
Choose a base branch
from
Draft
2 changes: 2 additions & 0 deletions builds/e2e/templates/e2e-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ steps:
$filter += '&Category!=NestedEdgeOnly'
}

$filter += '&FullyQualifiedName~ValidateMetrics'

#Dotnet SDK 3.1.415 package on Centos doesn't allow dotnet to be accessed via sudo command due to Path issues. Use the below workaround for centos only.
if ('$(artifactName)'.Contains('centos'))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public struct AgentEventIds
public const int ModuleLifecycleCommandFactory = EventIdStart + 1000;
public const int EdgeAgentConnection = EventIdStart + 1100;
public const int ModuleClient = EventIdStart + 1200;
public const int RetryingServiceClient = EventIdStart + 1300;
public const int OrderedRetryPlanRunner = EventIdStart + 1400;
public const int ModuleManagementHttpClient = EventIdStart + 1500;
public const int ModuleIdentityLifecycleManager = EventIdStart + 1600;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.36.6" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.41.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Linq.Async" Version="4.1.1" />
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices" Version="1.31.3" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.36.6" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.41.2" />
</ItemGroup>

<ItemGroup>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices" Version="1.38.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
<PackageReference Include="Moq" Version="4.10.1" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand Down
Loading