From c0a31a7a40fb26ba1303ee5eb5ca05055e8bd7ab Mon Sep 17 00:00:00 2001 From: Aurelien Lun-Sin Date: Tue, 14 Dec 2021 14:57:26 +0100 Subject: [PATCH] Add ppc64 support for test images Signed-off-by: Aurelien Lun-Sin --- integration/images/volume-copy-up/Makefile | 3 ++- integration/images/volume-ownership/Makefile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/integration/images/volume-copy-up/Makefile b/integration/images/volume-copy-up/Makefile index f302a0720..cba817488 100644 --- a/integration/images/volume-copy-up/Makefile +++ b/integration/images/volume-copy-up/Makefile @@ -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}} diff --git a/integration/images/volume-ownership/Makefile b/integration/images/volume-ownership/Makefile index 189194ebc..175e11cf6 100644 --- a/integration/images/volume-ownership/Makefile +++ b/integration/images/volume-ownership/Makefile @@ -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}}