Skip to content

Commit

Permalink
remove s390x support
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavardhana committed Oct 13, 2024
1 parent 5bbeb87 commit c9088d3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,11 @@ type downloadsJSON struct {
var rpmArchMap = map[string]string{
"amd64": "x86_64",
"ppc64le": "ppc64le",
"s390x": "s390x",
"arm64": "aarch64",
}

var debArchMap = map[string]string{
"amd64": "amd64",
"s390x": "s390x",
"arm64": "arm64",
"ppc64le": "ppc64el",
}
Expand Down Expand Up @@ -267,7 +265,6 @@ func generateDownloadsJSON(semVerTag string, appName string) downloadsJSON {
for _, linuxArch := range []string{
"amd64",
"arm64",
"s390x",
"ppc64le",
} {
if appName == "minio" {
Expand Down Expand Up @@ -472,7 +469,6 @@ func doPackage(appName, release, packager string) error {
for _, arch := range []string{
"amd64",
"arm64",
"s390x",
"ppc64le",
} {
if appName == "minio-enterprise" && arch != "amd64" && arch != "arm64" {
Expand Down

0 comments on commit c9088d3

Please sign in to comment.