Skip to content

Commit c9088d3

Browse files
remove s390x support
1 parent 5bbeb87 commit c9088d3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

main.go

-4
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,11 @@ type downloadsJSON struct {
117117
var rpmArchMap = map[string]string{
118118
"amd64": "x86_64",
119119
"ppc64le": "ppc64le",
120-
"s390x": "s390x",
121120
"arm64": "aarch64",
122121
}
123122

124123
var debArchMap = map[string]string{
125124
"amd64": "amd64",
126-
"s390x": "s390x",
127125
"arm64": "arm64",
128126
"ppc64le": "ppc64el",
129127
}
@@ -267,7 +265,6 @@ func generateDownloadsJSON(semVerTag string, appName string) downloadsJSON {
267265
for _, linuxArch := range []string{
268266
"amd64",
269267
"arm64",
270-
"s390x",
271268
"ppc64le",
272269
} {
273270
if appName == "minio" {
@@ -472,7 +469,6 @@ func doPackage(appName, release, packager string) error {
472469
for _, arch := range []string{
473470
"amd64",
474471
"arm64",
475-
"s390x",
476472
"ppc64le",
477473
} {
478474
if appName == "minio-enterprise" && arch != "amd64" && arch != "arm64" {

0 commit comments

Comments
 (0)