Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Nov 5, 2022
1 parent d901b42 commit d555318
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TestConstants {
if (LocalDocker.isNativeWindows()) {
versionDetails = [
ApiVersion : { it == "1.41" },
Arch : { it == "amd64" },
Arch : { it in ["amd64", "arm64"] },
BuildTime : { it =~ "2022-\\d{2}-\\d{2}T\\w+" },
GitCommit : { it =~ "\\w{6,}" },
GoVersion : { it == "go1.18.7" },
Expand All @@ -32,7 +32,7 @@ class TestConstants {
else {
versionDetails = [
ApiVersion : { it == "1.41" },
Arch : { it == "amd64" },
Arch : { it in ["amd64", "arm64"] },
BuildTime : { it =~ "2022-\\d{2}-\\d{2}T\\w+" },
GitCommit : { it =~ "\\w{6,}" },
GoVersion : { it == "go1.18.7" },
Expand All @@ -45,7 +45,7 @@ class TestConstants {
else if (LocalDocker.isNativeWindows()) {
versionDetails = [
ApiVersion : { it == "1.41" },
Arch : { it == "amd64" },
Arch : { it in ["amd64", "arm64"] },
BuildTime : { it =~ "2022-06-06T\\w+" },
GitCommit : { it == "a89b842" },
GoVersion : { it == "go1.17.11" },
Expand All @@ -57,7 +57,7 @@ class TestConstants {
else {
versionDetails = [
ApiVersion : { it == "1.41" },
Arch : { it == "amd64" },
Arch : { it in ["amd64", "arm64"] },
BuildTime : { it =~ "2022-10-18T\\w+" },
GitCommit : { it == "03df974" },
GoVersion : { it == "go1.18.7" },
Expand Down

0 comments on commit d555318

Please sign in to comment.