mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
Added s390x support for docker image (#1539)
Signed-off-by: Vitthal Bagal <vitthalb@us.ibm.com>
This commit is contained in:
parent
e7a27366a0
commit
04ad4b3510
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue