From 18adc6f2a470eb048412a8d28dc4a7d4cb3ef3f4 Mon Sep 17 00:00:00 2001 From: prateekpandey14 Date: Wed, 11 Nov 2020 13:22:27 +0530 Subject: [PATCH] refact(builds): enable amd64 and arm64 multi arch builds Signed-off-by: prateekpandey14 --- .travis.yml | 4 ---- Makefile.buildx.mk | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0164b38c..42dd2b42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,10 +31,6 @@ jobs: - RUN_FEATURE_TESTS=0 - RUN_RESILIENCY_TESTS=0 - RUN_E2E_AND_FUNCTIONAL_TESTS=1 - - os: linux - arch: arm64 - - os: linux - arch: ppc64le addons: apt: diff --git a/Makefile.buildx.mk b/Makefile.buildx.mk index 96605292..94f4234a 100644 --- a/Makefile.buildx.mk +++ b/Makefile.buildx.mk @@ -40,7 +40,7 @@ DBUILD_ARGS=--build-arg DBUILD_DATE=${DBUILD_DATE} --build-arg DBUILD_REPO_URL=$ # default list of platforms for which multiarch image is built ifeq (${PLATFORMS}, ) - export PLATFORMS="linux/amd64,linux/arm64,linux/arm/v7,linux/ppc64le" + export PLATFORMS="linux/amd64,linux/arm64" endif # if IMG_RESULT is unspecified, by default the image will be pushed to registry