Added s390x support for docker image (#1539)

Signed-off-by: Vitthal Bagal <vitthalb@us.ibm.com>
This commit is contained in:
vitt-bagal 2020-01-27 15:25:35 +05:30 committed by Ben Kochie
parent e7a27366a0
commit 04ad4b3510
3 changed files with 3 additions and 2 deletions

View file

@ -40,7 +40,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: docker run --privileged linuxkit/binfmt:v0.6 - run: docker run --privileged linuxkit/binfmt:v0.7
- run: make promu - run: make promu
- run: promu crossbuild - run: promu crossbuild
- run: promu --config .promu-cgo.yml crossbuild - run: promu --config .promu-cgo.yml crossbuild

View file

@ -5,3 +5,4 @@
!.build/linux-armv7 !.build/linux-armv7
!.build/linux-arm64 !.build/linux-arm64
!.build/linux-ppc64le !.build/linux-ppc64le
!.build/linux-s390x

View file

@ -15,7 +15,7 @@
all:: all::
# Needs to be defined before including Makefile.common to auto-generate targets # Needs to be defined before including Makefile.common to auto-generate targets
DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x
include Makefile.common include Makefile.common