Browse Source

Added support for s390x image (#6486)

Signed-off-by: Vitthal Bagal <vitthalb@us.ibm.com>
pull/6617/head
vitt-bagal 5 years ago committed by Simon Pasquier
parent
commit
e3239c1093
  1. 2
      .circleci/config.yml
  2. 1
      .dockerignore
  3. 2
      Makefile

2
.circleci/config.yml

@ -2,7 +2,7 @@
version: 2.1 version: 2.1
orbs: orbs:
prometheus: prometheus/prometheus@0.3.0 prometheus: prometheus/prometheus@0.4.0
go: circleci/go@0.2.0 go: circleci/go@0.2.0
win: circleci/windows@2.3.0 win: circleci/windows@2.3.0

1
.dockerignore

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

2
Makefile

@ -12,7 +12,7 @@
# limitations under the License. # limitations under the License.
# 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 DOCKER_ARCHS ?= amd64 armv7 arm64 s390x
REACT_APP_PATH = web/ui/react-app REACT_APP_PATH = web/ui/react-app
REACT_APP_SOURCE_FILES = $(wildcard $(REACT_APP_PATH)/public/* $(REACT_APP_PATH)/src/* $(REACT_APP_PATH)/tsconfig.json) REACT_APP_SOURCE_FILES = $(wildcard $(REACT_APP_PATH)/public/* $(REACT_APP_PATH)/src/* $(REACT_APP_PATH)/tsconfig.json)

Loading…
Cancel
Save