Skip to content
Merged
Changes from all commits
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
7 changes: 5 additions & 2 deletions platform.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ var (
"mips64le",
"ppc64",
"ppc64le",
"s390x",
}

Platforms_1_0 = []Platform{
Expand Down Expand Up @@ -122,8 +123,10 @@ var (
{OS: "linux", Arch: "ppc64le", Default: false},
}...)

// Nothing changed from 1.5 to 1.6
Platforms_1_6 = Platforms_1_5
// Support for s390x https://en.wikipedia.org/wiki/IBM_System_z9
Platforms_1_6 = append(Platforms_1_5, []Platform{
{OS: "linux", Arch: "s390x", Default: true},
}...)
)

// SupportedPlatforms returns the full list of supported platforms for
Expand Down