Skip to content

Commit

Permalink
add kafka lowest supported version test
Browse files Browse the repository at this point in the history
  • Loading branch information
RassK committed Mar 1, 2024
1 parent 5b6763b commit b6ad7c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/LibraryVersions.g.cs
Expand Up @@ -162,6 +162,7 @@ public static class LibraryVersion
"TestApplication.Kafka",
new List<PackageBuildInfo>
{
new("1.6.2"),
new("2.3.0"),
}
},
Expand Down
1 change: 1 addition & 0 deletions test/IntegrationTests/LibraryVersions.g.cs
Expand Up @@ -182,6 +182,7 @@ public static class LibraryVersion
#if DEFAULT_TEST_PACKAGE_VERSIONS
new object[] { string.Empty }
#else
new object[] { "1.6.2" },
new object[] { "2.3.0" },
#endif
};
Expand Down
3 changes: 2 additions & 1 deletion tools/LibraryVersionsGenerator/PackageVersionDefinitions.cs
Expand Up @@ -216,8 +216,9 @@ internal static class PackageVersionDefinitions
TestApplicationName = "TestApplication.Kafka",
Versions = new List<PackageVersion>
{
// TODO: Temporarily disable version 1.4.0, Doesn't support ARM64
// TODO: Temporarily disable version 1.4.0, Doesn't support ARM64.
// new("1.4.0"),
new("1.6.2"), // Lowest version supported by ARM64.
new("*")
}
}
Expand Down

0 comments on commit b6ad7c5

Please sign in to comment.