Merge pull request #6435 from alunsin/dev/build-image-for-ppc64le

Add ppc64 support for test images
This commit is contained in:
Phil Estes 2022-01-12 14:44:49 -05:00 committed by GitHub
commit c3177caf0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -41,7 +41,7 @@ OSVERSION ?= 1809
OUTPUT_TYPE ?= docker
ALL_OS = linux
ALL_ARCH.linux = amd64 arm64
ALL_ARCH.linux = amd64 arm64 ppc64le
ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
ifneq ($(REMOTE_DOCKER_URL),)
@ -53,6 +53,7 @@ endif
BASE.linux.amd64 := busybox
BASE.linux.arm64 := arm64v8/busybox
BASE.linux.ppc64le := busybox
BASE.linux := ${BASE.linux.${ARCH}}
BASE := ${BASE.${OS}}

View File

@ -41,7 +41,7 @@ OSVERSION ?= 1809
OUTPUT_TYPE ?= docker
ALL_OS = linux
ALL_ARCH.linux = amd64 arm64
ALL_ARCH.linux = amd64 arm64 ppc64le
ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
ifneq ($(REMOTE_DOCKER_URL),)
@ -53,6 +53,7 @@ endif
BASE.linux.amd64 := busybox
BASE.linux.arm64 := arm64v8/busybox
BASE.linux.ppc64le := busybox
BASE.linux := ${BASE.linux.${ARCH}}
BASE := ${BASE.${OS}}