images: Adds GOARM to images' Makefiles

In order to build the image binaries, the GOARM variable is required,
but not all Makefiles have it defined, causing the make to fail on
those images.

This adds the require GOARM variable to the Makefiles in question.
This commit is contained in:
Claudiu Belu 2019-04-16 14:28:19 -07:00
parent fa6b8e8cac
commit 31ea600b28
9 changed files with 9 additions and 0 deletions

View File

@ -15,6 +15,7 @@
SRCS=agnhost SRCS=agnhost
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd)) SRC_DIR = $(notdir $(shell pwd))
export export

View File

@ -15,6 +15,7 @@
SRCS=loader SRCS=loader
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd)) SRC_DIR = $(notdir $(shell pwd))
export export

View File

@ -15,6 +15,7 @@
SRCS=check_metadata_concealment SRCS=check_metadata_concealment
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd)) SRC_DIR = $(notdir $(shell pwd))
export export

View File

@ -15,6 +15,7 @@
SRCS = nnp SRCS = nnp
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd)) SRC_DIR = $(notdir $(shell pwd))
export export

View File

@ -15,6 +15,7 @@
SRCS = peer-finder SRCS = peer-finder
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = pets/peer-finder SRC_DIR = pets/peer-finder
export export

View File

@ -15,6 +15,7 @@
SRCS = peer-finder SRCS = peer-finder
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = pets/peer-finder SRC_DIR = pets/peer-finder
export export

View File

@ -15,6 +15,7 @@
SRCS = peer-finder SRCS = peer-finder
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = pets/peer-finder SRC_DIR = pets/peer-finder
export export

View File

@ -15,6 +15,7 @@
SRCS = consumer consume-cpu/consume-cpu SRCS = consumer consume-cpu/consume-cpu
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd)) SRC_DIR = $(notdir $(shell pwd))
export export

View File

@ -15,6 +15,7 @@
SRCS=sampledeviceplugin SRCS=sampledeviceplugin
ARCH ?= amd64 ARCH ?= amd64
TARGET ?= $(CURDIR) TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd)) SRC_DIR = $(notdir $(shell pwd))
export export