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
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd))
export

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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