File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,8 @@ spec:
112112 - default :
113113 - linux/x86_64
114114 - linux/arm64
115+ - linux/ppc64le
116+ - linux/s390x
115117 description : List of platforms to build the container images on
116118 name : build-platforms
117119 type : array
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ MAKEFLAGS+=-j --no-print-directory
22VERSION_FILE =./VERSION
33VERSION: =$$(hack/derive-version.sh )
44# a list of "dist/ec_{platform}_{arch}" that we support
5- ALL_SUPPORTED_OS_ARCH: =$(shell go tool dist list -json|jq -r '.[] | select((.FirstClass == true or .GOARCH == "ppc64le") and .GOARCH != "386") | "dist/ec_\(.GOOS)_\(.GOARCH)"')
5+ ALL_SUPPORTED_OS_ARCH: =$(shell go tool dist list -json|jq -r '.[] | select((.FirstClass == true or .GOARCH == "ppc64le" or .GOARCH == "s390x" ) and .GOARCH != "386") | "dist/ec_\(.GOOS)_\(.GOARCH)"')
66# a list of image_* targets that we do not support
77UNSUPPORTED_OS_ARCH_IMG: =image_windows_amd64 image_darwin_amd64 image_darwin_arm64 image_linux_arm
88# a list of image_* targets that we do support generated from
@@ -252,6 +252,7 @@ $(ALL_SUPPORTED_IMG_OS_ARCH):
252252# image_linux_amd64
253253# image_linux_arm64
254254# image_linux_ppc64le
255+ # image_linux_s390x
255256show-supported-builds :
256257 @for b in $(ALL_SUPPORTED_IMG_OS_ARCH ) ; do echo $$ b; done
257258
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ arches:
2424 - x86_64
2525 - aarch64
2626 - ppc64le
27+ - s390x
2728contentOrigin :
2829 # ubi.repo is extracted from the base image by the hack/update-rpm-lock.sh
2930 repofiles :
You can’t perform that action at this time.
0 commit comments